码迷,mamicode.com
首页 > 其他好文 > 详细

Phoenix批量提交优化,官网的demo

时间:2019-07-27 13:02:58      阅读:440      评论:0      收藏:0      [点我收藏+]

标签:size   date()   upd   update   stat   ==   com   dem   state   

1 Phoenix的批量insert官网代码,最佳实践

try (Connection conn = DriverManager.getConnection(url)) {
  conn.setAutoCommit(false);
  int batchSize = 0;
  int commitSize = 1000; // number of rows you want to commit per batch.  
  try (Statement stmt = conn.prepareStatement(upsert)) {
    stmt.set ... while (there are records to upsert) {
      stmt.executeUpdate(); 
      batchSize++; 
      if (batchSize % commitSize == 0) { 
        conn.commit(); 
      } 
   } 
 conn.commit(); // commit the last batch of records 
 }

  

2 解读代码

  循环的过程中,每1000条数据批量提交一次,不足1000的在循环外围最后提交,所以保证了,所有数据最终都是会被提交.

Phoenix批量提交优化,官网的demo

标签:size   date()   upd   update   stat   ==   com   dem   state   

原文地址:https://www.cnblogs.com/QuestionsZhang/p/11254552.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!