HBASE-26168 Backport HBASE-25811 "The client integration test is failing after HBASE-22120 merged" into branch-2 (#3634)
move opentelemetry jars to client-facing-thirdparty
add opentelemetry jars when init map reduce job dependencies
original commit 8d2a0efb7a
Co-authored-by: Duo Zhang <zhangduo@apache.org>
Signed-off-by: Duo Zhang <zhangduo@apache.org>
Signed-off-by: Peter Somogyi <psomogyi@apache.org>
This commit is contained in:
parent
ab431fc8a9
commit
625093f907
|
@ -65,6 +65,7 @@
|
|||
<exclude>org.slf4j:jcl-over-slf4j</exclude>
|
||||
<exclude>org.slf4j:jul-to-slf4j</exclude>
|
||||
<exclude>org.slf4j:slf4j-log4j12</exclude>
|
||||
<exclude>io.opentelemetry.javaagent:*</exclude>
|
||||
</excludes>
|
||||
</dependencySet>
|
||||
</dependencySets>
|
||||
|
@ -153,6 +154,13 @@
|
|||
<include>org.slf4j:jcl-over-slf4j</include>
|
||||
<include>org.slf4j:jul-to-slf4j</include>
|
||||
<include>org.slf4j:slf4j-log4j12</include>
|
||||
<include>io.opentelemetry:*</include>
|
||||
</includes>
|
||||
</dependencySet>
|
||||
<dependencySet>
|
||||
<outputDirectory>lib/trace</outputDirectory>
|
||||
<includes>
|
||||
<include>io.opentelemetry.javaagent:*</include>
|
||||
</includes>
|
||||
</dependencySet>
|
||||
</dependencySets>
|
||||
|
|
|
@ -213,6 +213,7 @@
|
|||
<include>org.slf4j:jcl-over-slf4j</include>
|
||||
<include>org.slf4j:jul-to-slf4j</include>
|
||||
<include>org.slf4j:slf4j-log4j12</include>
|
||||
<include>io.opentelemetry:*</include>
|
||||
</includes>
|
||||
</dependencySet>
|
||||
<dependencySet>
|
||||
|
|
|
@ -832,7 +832,9 @@ public class TableMapReduceUtil {
|
|||
org.apache.zookeeper.ZooKeeper.class, // zookeeper
|
||||
com.google.protobuf.Message.class, // protobuf
|
||||
com.codahale.metrics.MetricRegistry.class, // metrics-core
|
||||
org.apache.commons.lang3.ArrayUtils.class); // commons-lang
|
||||
org.apache.commons.lang3.ArrayUtils.class, // commons-lang
|
||||
io.opentelemetry.api.trace.Span.class, // opentelemetry-api
|
||||
io.opentelemetry.semconv.trace.attributes.SemanticAttributes.class); // opentelemetry-semconv
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue