我做了一个小测试,比较凤凰批量插入与使用hbase的多次放置。菲尼克斯比直接投注慢得多(6.157秒对10,000记录的0.083秒)。
这是我的代码:
SingleConnectionDataSource dataSource = new SingleConnectionDataSource();
final JdbcTemplate template = new JdbcTemplate();
template.setDataSource(dataSource);
dataSource.setUrl(PhoenixZK);
dataSource.setDriverClassName("org.apache.phoenix.jdbc.PhoenixDriver");
final PlatformTransactionManager txnManager = new DataSourceTransactionManager(dataSource);
TransactionTemplate txnTemplate = new TransactionTemplate(txnManager);
txnTemplate.execute(new TransactionCallbackWithoutResult() {
@Override
public void doInTransactionWithoutResult(TransactionStatus status) {
template.execute("DROP TABLE IF EXISTS stats.prod_metrics");
template.execute("CREATE TABLE stats.prod_metrics ( host char(50) not null, created_date TIMESTAMP not null,\n" +
" txn_count bigint CONSTRAINT pk PRIMARY KEY (host, created_date) ) SALT_BUCKETS=36, COMPRESSION='SNAPPY', REPLICATION_SCOPE=1");
}
});
long startTime = System.currentTimeMillis();
final Random random = new Random();
txnTemplate.execute(new TransactionCallbackWithoutResult() {
@Override
protected void doInTransactionWithoutResult(TransactionStatus status) {
template.batchUpdate("UPSERT INTO stats.prod_metrics VALUES (?,?,?)", new BatchPreparedStatementSetter(){
@Override
public void setValues(PreparedStatement ps, int i) throws SQLException {
ps.setString(1, "localhost-" + random.nextInt());
ps.setTimestamp(2, new Timestamp(System.currentTimeMillis()));
ps.setInt(3, random.nextInt());
}
@Override
public int getBatchSize() {
return numRec;
}
});
}
});
System.out.println("elapse = " + (double)(System.currentTimeMillis() - startTime)/1000.0);
以下是来自pheonix的日志记录:
16:03:42.544 DEBUG MutationState Sending 10000 mutations for STATS.PROD_METRICS with 20000 key values of total size 1950000 bytes
16:03:47.784 DEBUG MutationState Total time for batch call of 10000 mutations into STATS.PROD_METRICS: 5235 ms
为什么凤凰花费的时间比直插?我做错了什么?
谢谢, 肖恩
答案 0 :(得分:0)
对于10,000条记录,0.083秒
你怎么得到这些数字?这是每秒100K。您只能在运行多个(多线程)客户端的10-20个节点的集群上获得此性能。
每秒2K插入(事务性?)看起来很正常。这只是一个客户端将数据发送到一个RS(区域服务器)。
答案 1 :(得分:0)
与纯HBase相比,任何事情都会变慢。 Phoenix是HBase顶级的一层“HBase高性能关系数据库层,适用于低延迟应用”。