• 【转载】Fast Inserts to PostgreSQL with JDBC and COPY FROM


    source: http://rostislav-matl.blogspot.com/2011/08/fast-inserts-to-postgresql-with-jdbc.html

    Thanks !

    Fast Inserts to PostgreSQL with JDBC and COPY FROM

    I was reading some materials on how to make database inserts as efficient as possible from Java. it was motivated by an already existing application for storing of some measurements into PosgtreSQL. So I decided to compare known approaches to see if there is some way how to improve the application already using batched inserts.

    For the purpose of  the test I created following table:

    CREATE TABLE measurement
    (
      measurement_id bigint NOT NULL,
      valid_ts timestamp with time zone NOT NULL,
      measurement_value numeric(19,4) NOT NULL,
      CONSTRAINT pk_mv_raw PRIMARY KEY (measurement_id, valid_ts)
    )
    WITH (OIDS=FALSE)
    

    I decided to test the insertion of 1000 records to the table. The data for the recors was generated before running of any of test methods. Four test methods were created to reflect ususal approaches:
    • VSI (Very Stupid Inserts) - executing queries made of concatenated Strings one by one
    • SPI  (Stupid Prepared Inserts) - similar to VSI but using prepared statements
    • BPI (Batched Prepared Inserts) - prepared inserts, executed in batches of various length
    • CPI (Copy Inserts) - inserts based on COPY FROM, executed in batches of various length
    Prior to each inserts the table is cleared, the same after all data are succesfully inserted. Commit is called only once in each test method, following all the insert calls.  The following code exerpts illustrate the above listed approaches:

    VSI

    for (int i=0; i<testSize; i++)
    {
      insertSQL = "insert into measurement values (" 
                + measurementIds[i] +",'"+ timestamps[i] +"',"+values[i]+")";
      insert.execute(insertSQL);
    }
    

    SPI
    PreparedStatement insert = conn.prepareStatement("insert into measurement values (?,?,?)");
    for (int i=0; i<testSize; i++)
    {
      insert.setLong(1,measurementIds[i]);
      insert.setTimestamp(2, timestamps[i]);
      insert.setBigDecimal(3, values[i]);
      insert.execute();
    }
    

    BPI

    PreparedStatement insert = conn.prepareStatement("insert into measurement values (?,?,?)");
    
    for (int i=0; i<testSize; i++)
    {
      insert.setLong(1,measurementIds[i]);
      insert.setTimestamp(2, timestamps[i]);
      insert.setBigDecimal(3, values[i]);
      insert.addBatch();
      if (i % batchSize == 0) { insert.executeBatch(); }
    }
    insert.executeBatch();
    

    CPI

    StringBuilder sb = new StringBuilder();
    CopyManager cpManager = ((PGConnection)conn).getCopyAPI();
    PushbackReader reader = new PushbackReader( new StringReader(""), 10000 );
    for (int i=0; i<testSize; i++)
    {
        sb.append(measurementIds[i]).append(",'")
          .append(timestamps[i]).append("',")
          .append(values[i]).append("
    ");
        if (i % batchSize == 0)
        {
          reader.unread( sb.toString().toCharArray() );
          cpManager.copyIn("COPY measurement FROM STDIN WITH CSV", reader );
          sb.delete(0,sb.length());
        }
    }
    reader.unread( sb.toString().toCharArray() );
    cpManager.copyIn("COPY measurement FROM STDIN WITH CSV", reader );
    

    I hoped to get some improvements for using COPY FROM instead of batched inserts but not expected no big gain. But the results were a pleasant surprise. For a batch of size 50 (as defined in the original aplication I wanted to improve) the COPY FROM gave 40% improvement.  I expect some improvements when data come from a stream and skip the StringBuffer-with-PushbackReader exercise.

    See the graphs yourself - the number following the method abbreviation is the size of the batch.

    Average time in milliseconds
    All the 200 runs individually
  • 相关阅读:
    都为你整理好了,5种Java 随机方式对比!你都知道吗?
    你不知道的,Java代码性能优化的 40+ 细节,赶快收藏!
    大厂技术总监,送给刚毕业和快要毕业的程序员——7点建议
    .NET Core 微服务学习与实践系列文章目录索引(2019版)
    ManagementEventWatcher throws ManagementException with call to Stop()
    postman工具的使用
    java实体类读取属性文件,并赋值
    使用idea创建springboot的maven项目
    手写Promise实现过程
    用Javascript制作随机星星效果图
  • 原文地址:https://www.cnblogs.com/liuyuanyuanGOGO/p/3314832.html
Copyright © 2020-2023  润新知