HBASE-20086 PE randomSeekScan fails with ClassNotFoundException

This commit is contained in:
tedyu 2018-02-26 18:30:09 -08:00
parent 44544c7db0
commit b3ae580216
1 changed files with 3 additions and 1 deletions

View File

@ -527,7 +527,9 @@ public class PerformanceEvaluation extends Configured implements Tool {
TableMapReduceUtil.addDependencyJars(job);
TableMapReduceUtil.addDependencyJarsForClasses(job.getConfiguration(),
Histogram.class, // yammer metrics
ObjectMapper.class); // jackson-mapper-asl
ObjectMapper.class, // jackson-mapper-asl
FilterAllFilter.class // hbase-server tests jar
);
TableMapReduceUtil.initCredentials(job);