HBASE-16360 TableMapReduceUtil addHBaseDependencyJars has the wrong class name for PrefixTreeCodec (Jing Pu Chen)
This commit is contained in:
parent
897631f8d1
commit
cb507b8cff
|
@ -780,7 +780,7 @@ public class TableMapReduceUtil {
|
||||||
Class prefixTreeCodecClass = null;
|
Class prefixTreeCodecClass = null;
|
||||||
try {
|
try {
|
||||||
prefixTreeCodecClass =
|
prefixTreeCodecClass =
|
||||||
Class.forName("org.apache.hadoop.hbase.code.prefixtree.PrefixTreeCodec");
|
Class.forName("org.apache.hadoop.hbase.codec.prefixtree.PrefixTreeCodec");
|
||||||
} catch (ClassNotFoundException e) {
|
} catch (ClassNotFoundException e) {
|
||||||
// this will show up in unit tests but should not show in real deployments
|
// this will show up in unit tests but should not show in real deployments
|
||||||
LOG.warn("The hbase-prefix-tree module jar containing PrefixTreeCodec is not present." +
|
LOG.warn("The hbase-prefix-tree module jar containing PrefixTreeCodec is not present." +
|
||||||
|
|
Loading…
Reference in New Issue