HBASE-20890 PE filterScan seems to be stuck forever

This commit is contained in:
Vikas Vishwakarma 2018-08-27 13:05:29 +05:30
parent 8e1002913d
commit dd9880e0de
1 changed files with 4 additions and 0 deletions

View File

@ -2212,6 +2212,10 @@ public class PerformanceEvaluation extends Configured implements Tool {
FilteredScanTest(Connection con, TestOptions options, Status status) {
super(con, options, status);
if (opts.perClientRunRows == DEFAULT_ROWS_PER_GB) {
LOG.warn("Option \"rows\" unspecified. Using default value " + DEFAULT_ROWS_PER_GB +
". This could take a very long time.");
}
}
@Override