HBASE-9716. LoadTestTool should provide default min and max settings to the data generator
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1534352 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0e64f91e37
commit
670bc625b2
|
@ -62,6 +62,9 @@ public class LoadTestTool extends AbstractHBaseTool {
|
|||
/** Column families used by the test */
|
||||
protected static final byte[][] COLUMN_FAMILIES = { COLUMN_FAMILY };
|
||||
|
||||
/** The default data size if not specified */
|
||||
protected static final int DEFAULT_DATA_SIZE = 64;
|
||||
|
||||
/** The number of reader/writer threads if not specified */
|
||||
protected static final int DEFAULT_NUM_THREADS = 20;
|
||||
|
||||
|
@ -150,7 +153,7 @@ public class LoadTestTool extends AbstractHBaseTool {
|
|||
// Writer options
|
||||
protected int numWriterThreads = DEFAULT_NUM_THREADS;
|
||||
protected int minColsPerKey, maxColsPerKey;
|
||||
protected int minColDataSize, maxColDataSize;
|
||||
protected int minColDataSize = DEFAULT_DATA_SIZE, maxColDataSize = DEFAULT_DATA_SIZE;
|
||||
protected boolean isMultiPut;
|
||||
|
||||
// Updater options
|
||||
|
|
Loading…
Reference in New Issue