HBASE-22773 when set blockSize option in Performance Evaluation tool, error occurs:ERROR: Unrecognized option/command: --blockSize=131072
Signed-off-by: huzheng <openinx@gmail.com>
This commit is contained in:
parent
d094b70163
commit
90f27fe241
|
@ -2712,6 +2712,7 @@ public class PerformanceEvaluation extends Configured implements Tool {
|
|||
final String blockSize = "--blockSize=";
|
||||
if(cmd.startsWith(blockSize) ) {
|
||||
opts.blockSize = Integer.parseInt(cmd.substring(blockSize.length()));
|
||||
continue;
|
||||
}
|
||||
|
||||
final String valueSize = "--valueSize=";
|
||||
|
|
Loading…
Reference in New Issue