Skip to content

Commit

Permalink
HBASE-22773 when set blockSize option in Performance Evaluation tool,…
Browse files Browse the repository at this point in the history
… error occurs:ERROR: Unrecognized option/command: --blockSize=131072

Signed-off-by: huzheng <[email protected]>
  • Loading branch information
dingwei-2017 authored and openinx committed Aug 5, 2019
1 parent d0e5ea1 commit ff96485
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2715,6 +2715,7 @@ static TestOptions parseOpts(Queue<String> args) {
final String blockSize = "--blockSize=";
if(cmd.startsWith(blockSize) ) {
opts.blockSize = Integer.parseInt(cmd.substring(blockSize.length()));
continue;
}

final String valueSize = "--valueSize=";
Expand Down

0 comments on commit ff96485

Please sign in to comment.