为了获得最大吞吐量,我使用批量 put 和 increments 将数据放入 hbase,代码示例:
Configuration configuration = HBaseConfiguration.create();
configuration.set("hbase.zookeeper.quorum", "10.2.1.12:2181");
configuration.set("hbase.zookeeper.znode.parent", "/hbase");
Connection connection = ConnectionFactory.createConnection(configuration);
Table table = null;
try {
table = connection.getTable(TableName.valueOf("test"));
Object[] results = new Object[incrementList.size()];
table.batch(incrementList, results);
for (Object result : results) {
if (null == result) {
failed++;
} else {
//System.out.println("Batch operation result: " + result);
}
}
System.out.println("Batch operation failed: " + failed);
} catch (Exception ex) {
throw new RPCCallException("Hbase put error: " + ex.getMessage(), ex);
} finally {
table.close();
}
connection.close();
hbase 客户端版本:
<dependency>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-client</artifactId>
<version>1.3.0</version>
</dependency>