Skip to content

Commit

Permalink
HBASE-24057 Add modules to mapreduce job classpaths (#1359)
Browse files Browse the repository at this point in the history
Signed-off-by: Viraj Jasani <vjasani@apache.org>
Signed-off-by: Jan Hentschel <jan.hentschel@ultratendency.com>
  • Loading branch information
petersomogyi authored Mar 27, 2020
1 parent eb1fec1 commit 3f24894
Showing 1 changed file with 13 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -811,20 +811,22 @@ public static void addHBaseDependencyJars(Configuration conf) throws IOException
org.apache.hadoop.hbase.ipc.RpcServer.class, // hbase-server
org.apache.hadoop.hbase.CompatibilityFactory.class, // hbase-hadoop-compat
org.apache.hadoop.hbase.mapreduce.JobUtil.class, // hbase-hadoop2-compat
org.apache.hadoop.hbase.mapreduce.TableMapper.class, // hbase-server
org.apache.hadoop.hbase.mapreduce.TableMapper.class, // hbase-mapreduce
org.apache.hadoop.hbase.metrics.impl.FastLongHistogram.class, // hbase-metrics
org.apache.hadoop.hbase.metrics.Snapshot.class, // hbase-metrics-api
org.apache.hadoop.hbase.replication.ReplicationUtils.class, // hbase-replication
org.apache.hadoop.hbase.http.HttpServer.class, // hbase-http
org.apache.hadoop.hbase.procedure2.Procedure.class, // hbase-procedure
org.apache.hadoop.hbase.zookeeper.ZKWatcher.class, // hbase-zookeeper
org.apache.hbase.thirdparty.com.google.common.collect.Lists.class, // hb-shaded-miscellaneous
org.apache.hbase.thirdparty.com.google.gson.GsonBuilder.class, // hbase-shaded-gson
org.apache.zookeeper.ZooKeeper.class,
org.apache.hbase.thirdparty.io.netty.channel.Channel.class,
com.google.protobuf.Message.class,
org.apache.hbase.thirdparty.com.google.protobuf.UnsafeByteOperations.class,
org.apache.hbase.thirdparty.com.google.common.collect.Lists.class,
org.apache.htrace.core.Tracer.class,
com.codahale.metrics.MetricRegistry.class,
org.apache.commons.lang3.ArrayUtils.class,
org.apache.hbase.thirdparty.com.google.gson.Gson.class,
org.apache.hadoop.hbase.zookeeper.ZKWatcher.class);
org.apache.hbase.thirdparty.com.google.protobuf.UnsafeByteOperations.class, // hb-sh-protobuf
org.apache.hbase.thirdparty.io.netty.channel.Channel.class, // hbase-shaded-netty
org.apache.zookeeper.ZooKeeper.class, // zookeeper
com.google.protobuf.Message.class, // protobuf
org.apache.htrace.core.Tracer.class, // htrace
com.codahale.metrics.MetricRegistry.class, // metrics-core
org.apache.commons.lang3.ArrayUtils.class); // commons-lang
}

/**
Expand Down

0 comments on commit 3f24894

Please sign in to comment.