Search in sources :

Example 1 with LoadTestKVGenerator

use of org.apache.hadoop.hbase.util.test.LoadTestKVGenerator in project hbase by apache.

the class TestEncodedSeekers method doPuts.

private void doPuts(Region region) throws IOException {
    LoadTestKVGenerator dataGenerator = new LoadTestKVGenerator(MIN_VALUE_SIZE, MAX_VALUE_SIZE);
    for (int i = 0; i < NUM_ROWS; ++i) {
        byte[] key = LoadTestKVGenerator.md5PrefixedKey(i).getBytes();
        for (int j = 0; j < NUM_COLS_PER_ROW; ++j) {
            Put put = new Put(key);
            put.setDurability(Durability.ASYNC_WAL);
            byte[] col = Bytes.toBytes(String.valueOf(j));
            byte[] value = dataGenerator.generateRandomSizeValue(key, col);
            if (includeTags) {
                Tag[] tag = new Tag[1];
                tag[0] = new ArrayBackedTag((byte) 1, "Visibility");
                KeyValue kv = new KeyValue(key, CF_BYTES, col, HConstants.LATEST_TIMESTAMP, value, tag);
                put.add(kv);
            } else {
                put.addColumn(CF_BYTES, col, value);
            }
            if (VERBOSE) {
                KeyValue kvPut = new KeyValue(key, CF_BYTES, col, value);
                System.err.println(Strings.padFront(i + "", ' ', 4) + " " + kvPut);
            }
            region.put(put);
        }
        if (i % NUM_ROWS_PER_FLUSH == 0) {
            region.flush(true);
        }
    }
}
Also used : LoadTestKVGenerator(org.apache.hadoop.hbase.util.test.LoadTestKVGenerator) KeyValue(org.apache.hadoop.hbase.KeyValue) ArrayBackedTag(org.apache.hadoop.hbase.ArrayBackedTag) Tag(org.apache.hadoop.hbase.Tag) ArrayBackedTag(org.apache.hadoop.hbase.ArrayBackedTag) Put(org.apache.hadoop.hbase.client.Put)

Example 2 with LoadTestKVGenerator

use of org.apache.hadoop.hbase.util.test.LoadTestKVGenerator in project hbase by apache.

the class LoadTestDataGeneratorWithMOB method configureMob.

private void configureMob(byte[] mobColumnFamily, int minMobDataSize, int maxMobDataSize) {
    this.mobColumnFamily = mobColumnFamily;
    mobKvGenerator = new LoadTestKVGenerator(minMobDataSize, maxMobDataSize);
}
Also used : LoadTestKVGenerator(org.apache.hadoop.hbase.util.test.LoadTestKVGenerator)

Example 3 with LoadTestKVGenerator

use of org.apache.hadoop.hbase.util.test.LoadTestKVGenerator in project hbase by apache.

the class TestSimpleRegionNormalizerOnCluster method generateTestData.

private void generateTestData(Region region, int numRows) throws IOException {
    // generating 1Mb values
    LoadTestKVGenerator dataGenerator = new LoadTestKVGenerator(1024 * 1024, 1024 * 1024);
    for (int i = 0; i < numRows; ++i) {
        byte[] key = Bytes.add(region.getRegionInfo().getStartKey(), Bytes.toBytes(i));
        for (int j = 0; j < 1; ++j) {
            Put put = new Put(key);
            byte[] col = Bytes.toBytes(String.valueOf(j));
            byte[] value = dataGenerator.generateRandomSizeValue(key, col);
            put.addColumn(FAMILYNAME, col, value);
            region.put(put);
        }
    }
}
Also used : LoadTestKVGenerator(org.apache.hadoop.hbase.util.test.LoadTestKVGenerator) Put(org.apache.hadoop.hbase.client.Put)

Aggregations

LoadTestKVGenerator (org.apache.hadoop.hbase.util.test.LoadTestKVGenerator)3 Put (org.apache.hadoop.hbase.client.Put)2 ArrayBackedTag (org.apache.hadoop.hbase.ArrayBackedTag)1 KeyValue (org.apache.hadoop.hbase.KeyValue)1 Tag (org.apache.hadoop.hbase.Tag)1