HBASE-27353 - opentelemetry-context jar missing at runtime causes MR jobs to fail (#4759)

Signed-off-by: Andrew Purtell <apurtell@apache.org>
Signed-off-by: Viraj Jasani <vjasani@apache.org>
This commit is contained in:
Ujjawal 2022-09-07 23:19:53 +05:30 committed by GitHub
parent d2cc840edf
commit fa3bd7feb9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -735,7 +735,8 @@ public class TableMapReduceUtil {
com.codahale.metrics.MetricRegistry.class, // metrics-core
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
io.opentelemetry.semconv.trace.attributes.SemanticAttributes.class, // opentelemetry-semconv
io.opentelemetry.context.Context.class); // opentelemetry-context
}
/**