HBASE-21452 Illegal character in hbase counters group name

This commit is contained in:
Michael Stack 2018-11-07 21:05:54 -08:00 committed by stack
parent 00acda3c58
commit d486bba630
2 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@ public class TableRecordReaderImpl {
// HBASE_COUNTER_GROUP_NAME is the name of mapreduce counter group for HBase
@VisibleForTesting
static final String HBASE_COUNTER_GROUP_NAME = "HBase Counters";
static final String HBASE_COUNTER_GROUP_NAME = "HBaseCounters";
private ResultScanner scanner = null;
private Scan scan = null;
private Scan currentScan = null;

View File

@ -56,7 +56,7 @@ import org.apache.hbase.thirdparty.org.apache.commons.cli.CommandLine;
@InterfaceAudience.LimitedPrivate(HBaseInterfaceAudience.TOOLS)
public class ScanPerformanceEvaluation extends AbstractHBaseTool {
private static final String HBASE_COUNTER_GROUP_NAME = "HBase Counters";
private static final String HBASE_COUNTER_GROUP_NAME = "HBaseCounters";
private String type;
private String file;