HBASE-20086 PE randomSeekScan fails with ClassNotFoundException

This commit is contained in:
tedyu 2018-02-26 18:29:35 -08:00
parent b11e506664
commit d3aefe7834
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);