これは、なにをしたくて書いたもの?
TiDBのUUIDに関するベストプラクティスを見ていて、プライマリーキーにUUIDを使う場合でuuid_to_bin関数を使うのならswap_flagを
ONにしない方がいいという記述を見つけたので、自分でも試してみようかなということで。
UUID Best Practices | TiDB Docs
試している順番が逆(MySQLを自分で試したことがない)な気がしますが…。
MySQLとUUID
MySQLではランダムなUUID(たとえばバージョン4)をプライマリーキーに使ってデータを登録していくと、徐々に性能劣化していくことが
知られています。これはInnoDBがクラスタインデックス構造をしていて、ランダムなリーフページを読み込むことを要求されることが
原因のようです。
MySQLでプライマリキーをUUIDにする前に知っておいて欲しいこと | Raccoon Tech Blog [株式会社ラクーンホールディングス 技術戦略部ブログ]
Postgres と MySQL における id, created_at, updated_at に関するベストプラクティス
MySQLとPostgreSQLと主キー - Speaker Deck
MySQLのプライマリーキーにはシーケンシャルな値を使用した方がよく、MySQLのuuid_to_bin関数やbin_to_uuid関数を使ってUUIDを
扱う場合はswap_flagを1にすることでUUIDのブロックの最初と3番目の値が入れ替えられシーケンシャルなキーとして利用できるように
なります。
この関数はTiDBにも実装されています。
- Miscellaneous Functions / Supported functions / UUID_TO_BIN
- Miscellaneous Functions / Supported functions / BIN_TO_UUID
ちなみにUUIDそのものはuuid関数で生成していて、UUIDとしてのバージョンは1です。
TiDBとUUID
TiDBのUUIDに関するベストプラクティスが書かれたページはこちら。
UUID Best Practices | TiDB Docs
こちらでは、以下の2つをポイントとして挙げています。
- バイナリ型として保存すること
uuid_to_bin関数およびbin_to_uuid関数を使用する時に、swap_flagを使わないこと
今回のテーマでのポイントは後者ですね。
どうしてswap_flagを使わないかというと、ホットスポットを回避するためです。
Highly Concurrent Write Best Practices | TiDB Docs
ホットスポットとは、本来TiDBが備えているコンピューティング、ストレージに対する負荷分散がうまく機能できず、単一の高負荷な
ポイントが形成されてしまうことを言います。
As a distributed database, TiDB has a load balancing mechanism to distribute the application loads as evenly as possible to different computing or storage nodes, to make better use of server resources. However, in certain scenarios, some application loads cannot be well distributed, which can affect the performance and form a single point of high load, also known as a hotspot.
Troubleshoot Hotspot Issues | TiDB Docs
こちらを読むと、単純増加するIDを使って集中的に書き込みを行うと単一のリージョンに書き込みが集中し、ホットスポットに
なってしまうようです。
- Highly Concurrent Write Best Practices / Hotspot case
- Highly Concurrent Write Best Practices / Hotspot causes
- Highly Concurrent Write Best Practices / Hotspot solution
この様子はKey Visualizerで確認できるようなので、こちらで見ていくことにします。
Key Visualizer Page | TiDB Docs
環境
今回の環境はこちら。
$ tiup --version 1.16.1 v1.16.1-nightly-11 Go Version: go1.21.13 Git Ref: master GitHash: abc1b45ae2b7baefb737e5b7ddab32e43aa555bd $ mysqlsh --version mysqlsh Ver 8.0.40 for Linux on x86_64 - for MySQL 8.0.40 (MySQL Community Server (GPL))
TiDBのバージョン。
MySQL localhost:4000 ssl practice SQL > select version(); +--------------------+ | version() | +--------------------+ | 8.0.11-TiDB-v8.5.0 | +--------------------+ 1 row in set (0.0017 sec)
TiDBは以下のコマンドで起動していて、172.17.0.2でアクセスできるものとします。
$ tiup playground v8.5.0 --host 0.0.0.0
確認はプログラムを実行して行いますが、これはJavaで書くことにします。
$ java --version openjdk 21.0.5 2024-10-15 OpenJDK Runtime Environment (build 21.0.5+11-Ubuntu-1ubuntu124.04) OpenJDK 64-Bit Server VM (build 21.0.5+11-Ubuntu-1ubuntu124.04, mixed mode, sharing) $ mvn --version Apache Maven 3.9.9 (8e8579a9e76f7d015ee5ec7bfcdc97d260186937) Maven home: $HOME/.sdkman/candidates/maven/current Java version: 21.0.5, vendor: Ubuntu, runtime: /usr/lib/jvm/java-21-openjdk-amd64 Default locale: ja_JP, platform encoding: UTF-8 OS name: "linux", version: "6.8.0-51-generic", arch: "amd64", family: "unix"
お題
以下の4テーブルに対して、500万レコードずつ書き込んでKey Visualizerでどのような結果になるか確認してみます。
create table uuid_func_test1 ( id varbinary(16), c1 int not null, c2 int not null, c3 varchar(36) not null, c4 varchar(36) not null, c5 varchar(36) not null, c6 varchar(36) not null, primary key(id) clustered ); create table uuid_func_test2 ( id varbinary(16), c1 int not null, c2 int not null, c3 varchar(36) not null, c4 varchar(36) not null, c5 varchar(36) not null, c6 varchar(36) not null, primary key(id) clustered ); create table uuid_varchar_test1 ( id varchar(36), c1 int not null, c2 int not null, c3 varchar(36) not null, c4 varchar(36) not null, c5 varchar(36) not null, c6 varchar(36) not null, primary key(id) clustered ); create table uuid_varchar_test2 ( id varchar(36), c1 int not null, c2 int not null, c3 varchar(36) not null, c4 varchar(36) not null, c5 varchar(36) not null, c6 varchar(36) not null, primary key(id) clustered );
データ量を持たせるために適当にカラムの数を増やしています。ここには連番だったりUUID バージョン4を入れたりします。
それぞれ、以下の確認パターンで使います。
uuid関数+uuid_to_bin関数(swap_flagのOFF/ON)でUUIDを生成して確認- TiDBの外でUUIDを生成(UUID バージョン4/バージョン7)して確認
- カラムのデータ型はvarchar
TiDBのドキュメントに書かれているのは最初の使い方ですが、アプリケーション側でIDを生成するなら2つ目のような感じになることが多いのかなと
思いまして。
準備
データ登録用のプログラムを作成します。およその雛形までここで作成します。
Maven依存関係など。
<properties> <maven.compiler.release>21</maven.compiler.release> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <dependencies> <dependency> <groupId>com.fasterxml.uuid</groupId> <artifactId>java-uuid-generator</artifactId> <version>5.1.0</version> </dependency> <dependency> <groupId>com.mysql</groupId> <artifactId>mysql-connector-j</artifactId> <version>9.1.0</version> </dependency> </dependencies>
データ登録全体をコントロールする処理。このインターフェースを実装して、差分をサブクラスで実装します。
src/main/java/org/littlewings/tidb/Runner.java
package org.littlewings.tidb; import java.sql.Connection; import java.sql.PreparedStatement; import java.util.ArrayList; import java.util.List; import java.util.concurrent.ExecutionException; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.Future; import com.mysql.cj.jdbc.AbandonedConnectionCleanupThread; public interface Runner { Worker.SFunction<Connection, PreparedStatement> createStatementFactory(); Worker.SBiConsumer<PreparedStatement, Integer> createParameterBinder(); default void run() { int threadCount = 10; int end = 5000000; Worker.SFunction<Connection, PreparedStatement> statementFactory = createStatementFactory(); Worker.SBiConsumer<PreparedStatement, Integer> parameterBinder = createParameterBinder(); try (ExecutorService es = Executors.newFixedThreadPool(threadCount)) { long startTime = System.currentTimeMillis(); List<Future<?>> futures = new ArrayList<>(); for (int i = 0; i < threadCount; i++) { Worker worker = new Worker( statementFactory, parameterBinder, 0, (end / threadCount) ); futures.add(es.submit(worker)); } for (Future<?> future : futures) { future.get(); } long elapsedTime = System.currentTimeMillis() - startTime; Logging.log( "%s: %d records inserted, total elapsed time = %.03f", getClass().getSimpleName(), end, ((double) elapsedTime) / 1000 ); } catch (ExecutionException e) { throw new RuntimeException(e); } catch (InterruptedException e) { Thread.currentThread().interrupt(); } AbandonedConnectionCleanupThread.checkedShutdown(); } }
サブクラスで実装するのは、insert文を表すPreparedStatementの作成とPreparedStatementへのパラメーターのバインドです。
データは全部で500万レコード登録しますが、実際のデータ登録処理は10スレッドで分割して行います。TiDBのドキュメントでは
100万レコードでホットスポットを発生されていたようですが、今回は結果がわかりにくかったので大きくとってみました。
こちらがスレッド内で実行する処理。
src/main/java/org/littlewings/tidb/Worker.java
package org.littlewings.tidb; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.SQLException; public class Worker implements Runnable { private SFunction<Connection, PreparedStatement> statementFactory; private SBiConsumer<PreparedStatement, Integer> parameterBinder; private int start; private int end; public Worker(SFunction<Connection, PreparedStatement> statementFactory, SBiConsumer<PreparedStatement, Integer> parameterBinder, int start, int end) { this.statementFactory = statementFactory; this.parameterBinder = parameterBinder; this.start = start; this.end = end; } @Override public void run() { try (Connection connection = DriverManager.getConnection( "jdbc:mysql://172.17.0.2:4000/practice?characterEncoding=utf-8&connectionCollation=utf8mb4_0900_bin&useServerPrepStmts=true&rewriteBatchedStatements=true", "kazuhira", "password" ); PreparedStatement ps = statementFactory.apply(connection) ) { connection.setAutoCommit(false); int commitInterval = 5000; int batchSize = 50; long startTime = System.currentTimeMillis(); for (int i = start; i < end; i++) { parameterBinder.accept(ps, i + 1); ps.addBatch(); if (i % batchSize == 0) { ps.executeBatch(); } // ps.executeUpdate(); if (i > 0 && i % commitInterval == 0) { connection.commit(); long currentElapsedTime = System.currentTimeMillis() - startTime; Logging.log("%d records committed, current elapsed time = %.03f", i, ((double) currentElapsedTime) / 1000); } } ps.executeBatch(); connection.commit(); long currentElapsedTime = System.currentTimeMillis() - startTime; Logging.log("%d records committed, current elapsed time = %.03f", end, ((double) currentElapsedTime) / 1000); } catch (SQLException e) { throw new RuntimeException(e); } } @FunctionalInterface public interface SFunction<T, R> { R apply(T t) throws SQLException; } @FunctionalInterface public interface SBiConsumer<T, U> { void accept(T t, U u) throws SQLException; } }
各スレッドごとにデータベースへ接続して、50件ごとにバッチ更新します。rewriteBatchedStatementsをtrueにしているので、
バルクinsertになりますね。
※バルクinsertをやめると、ものすごく遅くなります…
簡単なログ出力用クラス。
src/main/java/org/littlewings/tidb/Logging.java
package org.littlewings.tidb; import java.time.LocalDateTime; import java.time.format.DateTimeFormatter; public class Logging { private static DateTimeFormatter FORMATTER = DateTimeFormatter.ofPattern("uuuu-MM-dd HH:mm:ss"); public static void log(String message, Object... params) { System.out.printf( "[%s] %s - %s%n", LocalDateTime.now().format(FORMATTER), Thread.currentThread().getName(), String.format(message, params) ); } }
ここまでで準備は完了です。
それでは、これらのコードを元にデータ登録を行っていきましょう。
TiDBにUUIDでデータ登録を行ってみる
ここからは、パターンごとにデータを登録していってみます。
データは、各パターンごとに独立して登録します。1度あるパターンを実行したら、1度TiDBのクラスターのデータをすべて削除して
行っています。
uuid関数でUUIDを生成してuuid_to_bin関数でバイナリー変換後にデータを登録する(swap_flagなし)
最初はuuid関数でUUIDを生成、uuid_to_bin関数でバイナリー変換後にデータを登録するパターンです。uuid_to_bin関数の第2引数を
省略すると、swap_flagに0を指定したことになります。明示的に0を指定しても構いません。
src/main/java/org/littlewings/tidb/UuidBinRunner.java
package org.littlewings.tidb; import java.sql.Connection; import java.sql.PreparedStatement; import java.util.UUID; public class UuidBinRunner implements Runner { public static void main(String... args) { UuidBinRunner runner = new UuidBinRunner(); runner.run(); } @Override public Worker.SFunction<Connection, PreparedStatement> createStatementFactory() { return connection -> connection.prepareStatement("insert into uuid_func_test1(id, c1, c2, c3, c4, c5, c6) values(uuid_to_bin(uuid()), ?, ?, ?, ?, ?, ?)"); } @Override public Worker.SBiConsumer<PreparedStatement, Integer> createParameterBinder() { return (ps, i) -> { ps.setInt(1, i); ps.setInt(2, i); ps.setString(3, UUID.randomUUID().toString()); ps.setString(4, UUID.randomUUID().toString()); ps.setString(5, UUID.randomUUID().toString()); ps.setString(6, UUID.randomUUID().toString()); }; } }
実行。
$ mvn compile exec:java -Dexec.mainClass=org.littlewings.tidb.UuidBinRunner
手元の環境では15分程度かかりました。
[2024-12-29 15:42:54] org.littlewings.tidb.UuidBinRunner.main() - UuidBinRunner: 5000000 records inserted, total elapsed time = 912.700
完了時のKey Visualizerの様子。どうやら5つリージョンができたみたいです。

結果を見ると最初から3つのリージョンがあったように見えますが、最初はひとつのリージョンで徐々に増えていっています。最初から
分かれて新しいリージョンができたようで、最初のリージョンに対する処理は3つのリージョンに跨っているように見えています。
ちなみに、色が明るい場所ほど書き込みが集中していることを表しています。
実際のリージョン。
MySQL localhost:4000 ssl practice SQL > show table uuid_func_test1 regions\G *************************** 1. row *************************** REGION_ID: 2003 START_KEY: t_112_ END_KEY: t_112_r_013126926fc5ae11efff93d50242ac110002ff0000000000000000f7 LEADER_ID: 2004 LEADER_STORE_ID: 1 PEERS: 2004 SCATTERING: 0 WRITTEN_BYTES: 127332652 READ_BYTES: 0 APPROXIMATE_SIZE(MB): 329 APPROXIMATE_KEYS: 1344517 SCHEDULING_CONSTRAINTS: SCHEDULING_STATE: *************************** 2. row *************************** REGION_ID: 149 START_KEY: t_112_r_013126926fc5ae11efff93d50242ac110002ff0000000000000000f7 END_KEY: t_112_r_01560ea983c5ae11efff93e40242ac110002ff0000000000000000f7 LEADER_ID: 150 LEADER_STORE_ID: 1 PEERS: 150 SCATTERING: 0 WRITTEN_BYTES: 0 READ_BYTES: 0 APPROXIMATE_SIZE(MB): 137 APPROXIMATE_KEYS: 590564 SCHEDULING_CONSTRAINTS: SCHEDULING_STATE: *************************** 3. row *************************** REGION_ID: 4001 START_KEY: t_112_r_01560ea983c5ae11efff93e40242ac110002ff0000000000000000f7 END_KEY: t_112_r_0191c3ab50c5af11efff94590242ac110002ff0000000000000000f7 LEADER_ID: 4002 LEADER_STORE_ID: 1 PEERS: 4002 SCATTERING: 0 WRITTEN_BYTES: 39 READ_BYTES: 0 APPROXIMATE_SIZE(MB): 265 APPROXIMATE_KEYS: 1143613 SCHEDULING_CONSTRAINTS: SCHEDULING_STATE: *************************** 4. row *************************** REGION_ID: 2001 START_KEY: t_112_r_0191c3ab50c5af11efff94590242ac110002ff0000000000000000f7 END_KEY: t_112_r_01bf23e274c5ae11efff94150242ac110002ff0000000000000000f7 LEADER_ID: 2002 LEADER_STORE_ID: 1 PEERS: 2002 SCATTERING: 0 WRITTEN_BYTES: 19788520 READ_BYTES: 0 APPROXIMATE_SIZE(MB): 193 APPROXIMATE_KEYS: 821495 SCHEDULING_CONSTRAINTS: SCHEDULING_STATE: *************************** 5. row *************************** REGION_ID: 143 START_KEY: t_112_r_01bf23e274c5ae11efff94150242ac110002ff0000000000000000f7 END_KEY: t_114_ LEADER_ID: 144 LEADER_STORE_ID: 1 PEERS: 144 SCATTERING: 0 WRITTEN_BYTES: 182340 READ_BYTES: 0 APPROXIMATE_SIZE(MB): 294 APPROXIMATE_KEYS: 1198782 SCHEDULING_CONSTRAINTS: SCHEDULING_STATE: 5 rows in set (0.0567 sec)
uuid関数でUUIDを生成してuuid_to_bin関数でバイナリー変換後にデータを登録する(swap_flagあり)
次もuuid関数でUUIDを生成、uuid_to_bin関数で変換後にデータを登録するパターンです。uuid_to_bin関数の第2引数(swap_flag)に
1を指定し、時系列順に並ぶIDとします。
src/main/java/org/littlewings/tidb/UuidBinSwapRunner.java
package org.littlewings.tidb; import java.sql.Connection; import java.sql.PreparedStatement; import java.util.UUID; public class UuidBinSwapRunner implements Runner { public static void main(String... args) { UuidBinSwapRunner runner = new UuidBinSwapRunner(); runner.run(); } @Override public Worker.SFunction<Connection, PreparedStatement> createStatementFactory() { return connection -> connection.prepareStatement("insert into uuid_func_test2(id, c1, c2, c3, c4, c5, c6) values(uuid_to_bin(uuid(), 1), ?, ?, ?, ?, ?, ?)"); } @Override public Worker.SBiConsumer<PreparedStatement, Integer> createParameterBinder() { return (ps, i) -> { ps.setInt(1, i); ps.setInt(2, i); ps.setString(3, UUID.randomUUID().toString()); ps.setString(4, UUID.randomUUID().toString()); ps.setString(5, UUID.randomUUID().toString()); ps.setString(6, UUID.randomUUID().toString()); }; } }
実行。
$ mvn compile exec:java -Dexec.mainClass=org.littlewings.tidb.UuidBinSwapRunner
swap_flagがオフの時と比べて1分くらい遅くなりました。
[2024-12-29 16:03:42] org.littlewings.tidb.UuidBinSwapRunner.main() - UuidBinSwapRunner: 5000000 records inserted, total elapsed time = 1032.472
この差は微妙なところですが、Key Visualizerの方はもっとハッキリ差が見えます。

実際のリージョン。
MySQL localhost:4000 ssl practice SQL > show table uuid_func_test2 regions\G *************************** 1. row *************************** REGION_ID: 145 START_KEY: t_114_ END_KEY: t_114_r_0111efc5b0ea557cf6ffa8a90242ac110002ff0000000000000000f7 LEADER_ID: 146 LEADER_STORE_ID: 1 PEERS: 146 SCATTERING: 0 WRITTEN_BYTES: 0 READ_BYTES: 0 APPROXIMATE_SIZE(MB): 251 APPROXIMATE_KEYS: 1096971 SCHEDULING_CONSTRAINTS: SCHEDULING_STATE: *************************** 2. row *************************** REGION_ID: 2001 START_KEY: t_114_r_0111efc5b0ea557cf6ffa8a90242ac110002ff0000000000000000f7 END_KEY: t_114_r_0111efc5b1473f331dffa8e30242ac110002ff0000000000000000f7 LEADER_ID: 2002 LEADER_STORE_ID: 1 PEERS: 2002 SCATTERING: 0 WRITTEN_BYTES: 39 READ_BYTES: 0 APPROXIMATE_SIZE(MB): 255 APPROXIMATE_KEYS: 1107583 SCHEDULING_CONSTRAINTS: SCHEDULING_STATE: *************************** 3. row *************************** REGION_ID: 5001 START_KEY: t_114_r_0111efc5b1473f331dffa8e30242ac110002ff0000000000000000f7 END_KEY: t_114_r_0111efc5b1d09f8142ffa91a0242ac110002ff0000000000000000f7 LEADER_ID: 5002 LEADER_STORE_ID: 1 PEERS: 5002 SCATTERING: 0 WRITTEN_BYTES: 39 READ_BYTES: 0 APPROXIMATE_SIZE(MB): 253 APPROXIMATE_KEYS: 1096458 SCHEDULING_CONSTRAINTS: SCHEDULING_STATE: *************************** 4. row *************************** REGION_ID: 5003 START_KEY: t_114_r_0111efc5b1d09f8142ffa91a0242ac110002ff0000000000000000f7 END_KEY: t_114_r_0111efc5b2c3b2db58ffa9680242ac110002ff0000000000000000f7 LEADER_ID: 5004 LEADER_STORE_ID: 1 PEERS: 5004 SCATTERING: 0 WRITTEN_BYTES: 39 READ_BYTES: 0 APPROXIMATE_SIZE(MB): 255 APPROXIMATE_KEYS: 1107163 SCHEDULING_CONSTRAINTS: SCHEDULING_STATE: *************************** 5. row *************************** REGION_ID: 141 START_KEY: t_114_r_0111efc5b2c3b2db58ffa9680242ac110002ff0000000000000000f7 END_KEY: t_116_ LEADER_ID: 142 LEADER_STORE_ID: 1 PEERS: 142 SCATTERING: 0 WRITTEN_BYTES: 45 READ_BYTES: 0 APPROXIMATE_SIZE(MB): 145 APPROXIMATE_KEYS: 574103 SCHEDULING_CONSTRAINTS: SCHEDULING_STATE: 5 rows in set (0.0059 sec)
TiDBの外でUUIDを生成してデータを登録する(UUID バージョン4)
今度はTiDBの外でUUIDを生成してデータを登録するパターンです。まずはUUID バージョン4から。
UUID バージョン4の生成には、Javaの標準ライブラリーを使います。
src/main/java/org/littlewings/tidb/UuidV4StringRunner.java
package org.littlewings.tidb; import java.sql.Connection; import java.sql.PreparedStatement; import java.util.UUID; public class UuidV4StringRunner implements Runner { public static void main(String... args) { UuidV4StringRunner runner = new UuidV4StringRunner(); runner.run(); } @Override public Worker.SFunction<Connection, PreparedStatement> createStatementFactory() { return connection -> connection.prepareStatement("insert into uuid_varchar_test1(id, c1, c2, c3, c4, c5, c6) values(?, ?, ?, ?, ?, ?, ?)"); } @Override public Worker.SBiConsumer<PreparedStatement, Integer> createParameterBinder() { return (ps, i) -> { ps.setString(1, UUID.randomUUID().toString()); ps.setInt(2, i); ps.setInt(3, i); ps.setString(4, UUID.randomUUID().toString()); ps.setString(5, UUID.randomUUID().toString()); ps.setString(6, UUID.randomUUID().toString()); ps.setString(7, UUID.randomUUID().toString()); }; } }
実行。
$ mvn compile exec:java -Dexec.mainClass=org.littlewings.tidb.UuidV4StringRunner
結果。20分ほどかかりました。実はこの後のUUID バージョン7よりも遅い結果になっていて、ここがちょっと意外でした。
[2024-12-29 16:50:11] org.littlewings.tidb.UuidV4StringRunner.main() - UuidV4StringRunner: 5000000 records inserted, total elapsed time = 1287.717
リージョンは6つになったようです。swap_flagを有効にしていないuuid_to_bin関数で変換後に登録した時よりもリージョン数が
多いですね。

そして書き込みが分散しているのは予想通りなのですが、全体的に色が明るいです…。
実際のリージョン。
MySQL localhost:4000 ssl practice SQL > show table uuid_varchar_test1 regions\G *************************** 1. row *************************** REGION_ID: 6001 START_KEY: t_116_ END_KEY: t_116_r_013266626332383163ff2d333765652d3464ff62302d623736342dff3431643438393536ff6532373500000000fb LEADER_ID: 6002 LEADER_STORE_ID: 1 PEERS: 6002 SCATTERING: 0 WRITTEN_BYTES: 0 READ_BYTES: 0 APPROXIMATE_SIZE(MB): 370 APPROXIMATE_KEYS: 1167364 SCHEDULING_CONSTRAINTS: SCHEDULING_STATE: *************************** 2. row *************************** REGION_ID: 2001 START_KEY: t_116_r_013266626332383163ff2d333765652d3464ff62302d623736342dff3431643438393536ff6532373500000000fb END_KEY: t_116_r_013437663933326134ff2d316139622d3466ff31302d613465632dff3339303336363939ff3437376100000000fb LEADER_ID: 2002 LEADER_STORE_ID: 1 PEERS: 2002 SCATTERING: 0 WRITTEN_BYTES: 7356394 READ_BYTES: 0 APPROXIMATE_SIZE(MB): 157 APPROXIMATE_KEYS: 535998 SCHEDULING_CONSTRAINTS: SCHEDULING_STATE: *************************** 3. row *************************** REGION_ID: 143 START_KEY: t_116_r_013437663933326134ff2d316139622d3466ff31302d613465632dff3339303336363939ff3437376100000000fb END_KEY: t_116_r_013665346634656533ff2d623932612d3465ff37322d393061382dff3436376234636638ff3563303300000000fb LEADER_ID: 144 LEADER_STORE_ID: 1 PEERS: 144 SCATTERING: 0 WRITTEN_BYTES: 831204 READ_BYTES: 0 APPROXIMATE_SIZE(MB): 221 APPROXIMATE_KEYS: 744845 SCHEDULING_CONSTRAINTS: SCHEDULING_STATE: *************************** 4. row *************************** REGION_ID: 141 START_KEY: t_116_r_013665346634656533ff2d623932612d3465ff37322d393061382dff3436376234636638ff3563303300000000fb END_KEY: t_116_r_016135343635326665ff2d623831662d3433ff66382d616263352dff3434343130353337ff3132653400000000fb LEADER_ID: 142 LEADER_STORE_ID: 1 PEERS: 142 SCATTERING: 0 WRITTEN_BYTES: 22458983 READ_BYTES: 0 APPROXIMATE_SIZE(MB): 317 APPROXIMATE_KEYS: 1062979 SCHEDULING_CONSTRAINTS: SCHEDULING_STATE: *************************** 5. row *************************** REGION_ID: 3001 START_KEY: t_116_r_016135343635326665ff2d623831662d3433ff66382d616263352dff3434343130353337ff3132653400000000fb END_KEY: t_116_r_016530646265623965ff2d313433642d3438ff35322d623636322dff6234326266656235ff6665326100000000fb LEADER_ID: 3002 LEADER_STORE_ID: 1 PEERS: 3002 SCATTERING: 0 WRITTEN_BYTES: 13127325 READ_BYTES: 0 APPROXIMATE_SIZE(MB): 340 APPROXIMATE_KEYS: 1143062 SCHEDULING_CONSTRAINTS: SCHEDULING_STATE: *************************** 6. row *************************** REGION_ID: 139 START_KEY: t_116_r_016530646265623965ff2d313433642d3438ff35322d623636322dff6234326266656235ff6665326100000000fb END_KEY: t_118_ LEADER_ID: 140 LEADER_STORE_ID: 1 PEERS: 140 SCATTERING: 0 WRITTEN_BYTES: 0 READ_BYTES: 0 APPROXIMATE_SIZE(MB): 192 APPROXIMATE_KEYS: 630366 SCHEDULING_CONSTRAINTS: SCHEDULING_STATE: 6 rows in set (0.0778 sec)
TiDBの外でUUIDを生成してデータを登録する(UUID バージョン7)
最後はTiDBの外でUUIDを生成してデータを登録するパターンで、UUID バージョン7を使います。
UUID バージョン7の生成にはこちらを使っています。
src/main/java/org/littlewings/tidb/UuidV7StringRunner.java
package org.littlewings.tidb; import java.sql.Connection; import java.sql.PreparedStatement; import java.util.UUID; import com.fasterxml.uuid.Generators; import com.fasterxml.uuid.impl.TimeBasedEpochGenerator; public class UuidV7StringRunner implements Runner { private TimeBasedEpochGenerator generator = Generators.timeBasedEpochGenerator(); public static void main(String... args) { UuidV7StringRunner runner = new UuidV7StringRunner(); runner.run(); } @Override public Worker.SFunction<Connection, PreparedStatement> createStatementFactory() { return connection -> connection.prepareStatement("insert into uuid_varchar_test2(id, c1, c2, c3, c4, c5, c6) values(?, ?, ?, ?, ?, ?, ?)"); } @Override public Worker.SBiConsumer<PreparedStatement, Integer> createParameterBinder() { return (ps, i) -> { ps.setString(1, generator.generate().toString()); ps.setInt(2, i); ps.setInt(3, i); ps.setString(4, UUID.randomUUID().toString()); ps.setString(5, UUID.randomUUID().toString()); ps.setString(6, UUID.randomUUID().toString()); ps.setString(7, UUID.randomUUID().toString()); }; } }
実行。
$ mvn compile exec:java -Dexec.mainClass=org.littlewings.tidb.UuidV7StringRunner
結果。UUID バージョン4よりもだいぶ速かったんですよね、なぜか。
[2024-12-29 17:16:03] org.littlewings.tidb.UuidV7StringRunner.main() - UuidV7StringRunner: 5000000 records inserted, total elapsed time = 857.863
Key Visualizerで見ると、単一のリージョンに寄っていっているので書き込み傾向としては予想通りなんですけどね。リージョン数は6です。

実際のリージョン。
MySQL localhost:4000 ssl practice SQL > show table uuid_varchar_test2 regions\G *************************** 1. row *************************** REGION_ID: 143 START_KEY: t_118_ END_KEY: t_118_r_013031393431313731ff2d333536642d3739ff66642d626136352dff3362303739336537ff3362313500000000fb LEADER_ID: 144 LEADER_STORE_ID: 1 PEERS: 144 SCATTERING: 0 WRITTEN_BYTES: 39 READ_BYTES: 0 APPROXIMATE_SIZE(MB): 254 APPROXIMATE_KEYS: 872986 SCHEDULING_CONSTRAINTS: SCHEDULING_STATE: *************************** 2. row *************************** REGION_ID: 2001 START_KEY: t_118_r_013031393431313731ff2d333536642d3739ff66642d626136352dff3362303739336537ff3362313500000000fb END_KEY: t_118_r_013031393431313733ff2d323739322d3730ff33322d613666352dff6137316535373439ff3466656300000000fb LEADER_ID: 2002 LEADER_STORE_ID: 1 PEERS: 2002 SCATTERING: 0 WRITTEN_BYTES: 39 READ_BYTES: 0 APPROXIMATE_SIZE(MB): 253 APPROXIMATE_KEYS: 862356 SCHEDULING_CONSTRAINTS: SCHEDULING_STATE: *************************** 3. row *************************** REGION_ID: 2003 START_KEY: t_118_r_013031393431313733ff2d323739322d3730ff33322d613666352dff6137316535373439ff3466656300000000fb END_KEY: t_118_r_013031393431313735ff2d313863302d3736ff61642d393864332dff3261353333646534ff3864643300000000fb LEADER_ID: 2004 LEADER_STORE_ID: 1 PEERS: 2004 SCATTERING: 0 WRITTEN_BYTES: 39 READ_BYTES: 0 APPROXIMATE_SIZE(MB): 255 APPROXIMATE_KEYS: 869343 SCHEDULING_CONSTRAINTS: SCHEDULING_STATE: *************************** 4. row *************************** REGION_ID: 2005 START_KEY: t_118_r_013031393431313735ff2d313863302d3736ff61642d393864332dff3261353333646534ff3864643300000000fb END_KEY: t_118_r_013031393431313737ff2d663138662d3739ff61302d623865622dff3535663337393963ff3232313900000000fb LEADER_ID: 2006 LEADER_STORE_ID: 1 PEERS: 2006 SCATTERING: 0 WRITTEN_BYTES: 39 READ_BYTES: 0 APPROXIMATE_SIZE(MB): 251 APPROXIMATE_KEYS: 857001 SCHEDULING_CONSTRAINTS: SCHEDULING_STATE: *************************** 5. row *************************** REGION_ID: 3001 START_KEY: t_118_r_013031393431313737ff2d663138662d3739ff61302d623865622dff3535663337393963ff3232313900000000fb END_KEY: t_118_r_013031393431313761ff2d663135632d3766ff63372d623237342dff3962393433393939ff6633643900000000fb LEADER_ID: 3002 LEADER_STORE_ID: 1 PEERS: 3002 SCATTERING: 0 WRITTEN_BYTES: 39 READ_BYTES: 0 APPROXIMATE_SIZE(MB): 255 APPROXIMATE_KEYS: 870405 SCHEDULING_CONSTRAINTS: SCHEDULING_STATE: *************************** 6. row *************************** REGION_ID: 20 START_KEY: t_118_r_013031393431313761ff2d663135632d3766ff63372d623237342dff3962393433393939ff6633643900000000fb END_KEY: t_281474976710648_ LEADER_ID: 21 LEADER_STORE_ID: 1 PEERS: 21 SCATTERING: 0 WRITTEN_BYTES: 98691343 READ_BYTES: 0 APPROXIMATE_SIZE(MB): 209 APPROXIMATE_KEYS: 640737 SCHEDULING_CONSTRAINTS: SCHEDULING_STATE: 6 rows in set (0.0095 sec)
こんなところでしょうか。
おわりに
TiDBでUUIDを使う場合はシーケンシャルなIDにしない方が良さそうだという話で、UUIDのバージョン1(ビット入れ替えあり)、4、7で
試してみました。
UUIDをTiDBの外で生成した場合のバージョン7の結果がちょっと微妙な感じがするのですが、手元の環境だとこれ以上のものを
動かせないので今回はここまでかなと。
このあたりをもうちょっとちゃんとしようと思うと、スペックのいい環境が必要ですね…。
とはいえ、分散データベースに関する知識としては良い勉強の機会になりました。
オマケ
最後に、各パターンを実行した時のログを載せておきます。
uuid関数でUUIDを生成してuuid_to_bin関数でバイナリー変換後にデータを登録した時の実行ログ(swap_flagなし)
[INFO] --- exec:3.5.0:java (default-cli) @ uuid-hotspot-test --- [2024-12-29 15:27:46] pool-1-thread-10 - 5000 records committed, current elapsed time = 3.033 [2024-12-29 15:27:46] pool-1-thread-2 - 5000 records committed, current elapsed time = 3.123 [2024-12-29 15:27:46] pool-1-thread-5 - 5000 records committed, current elapsed time = 3.148 [2024-12-29 15:27:46] pool-1-thread-1 - 5000 records committed, current elapsed time = 3.318 [2024-12-29 15:27:46] pool-1-thread-6 - 5000 records committed, current elapsed time = 3.395 [2024-12-29 15:27:46] pool-1-thread-3 - 5000 records committed, current elapsed time = 3.400 [2024-12-29 15:27:46] pool-1-thread-8 - 5000 records committed, current elapsed time = 3.406 [2024-12-29 15:27:46] pool-1-thread-9 - 5000 records committed, current elapsed time = 3.416 [2024-12-29 15:27:46] pool-1-thread-4 - 5000 records committed, current elapsed time = 3.434 [2024-12-29 15:27:46] pool-1-thread-7 - 5000 records committed, current elapsed time = 3.463 [2024-12-29 15:27:49] pool-1-thread-10 - 10000 records committed, current elapsed time = 6.312 [2024-12-29 15:27:49] pool-1-thread-5 - 10000 records committed, current elapsed time = 6.443 [2024-12-29 15:27:49] pool-1-thread-2 - 10000 records committed, current elapsed time = 6.459 [2024-12-29 15:27:49] pool-1-thread-7 - 10000 records committed, current elapsed time = 6.743 [2024-12-29 15:27:49] pool-1-thread-8 - 10000 records committed, current elapsed time = 6.830 [2024-12-29 15:27:49] pool-1-thread-1 - 10000 records committed, current elapsed time = 6.910 [2024-12-29 15:27:50] pool-1-thread-9 - 10000 records committed, current elapsed time = 7.062 [2024-12-29 15:27:50] pool-1-thread-4 - 10000 records committed, current elapsed time = 7.072 [2024-12-29 15:27:50] pool-1-thread-6 - 10000 records committed, current elapsed time = 7.091 [2024-12-29 15:27:50] pool-1-thread-3 - 10000 records committed, current elapsed time = 7.200 [2024-12-29 15:27:52] pool-1-thread-2 - 15000 records committed, current elapsed time = 9.584 [2024-12-29 15:27:52] pool-1-thread-10 - 15000 records committed, current elapsed time = 9.894 [2024-12-29 15:27:52] pool-1-thread-5 - 15000 records committed, current elapsed time = 9.914 [2024-12-29 15:27:53] pool-1-thread-7 - 15000 records committed, current elapsed time = 10.312 [2024-12-29 15:27:53] pool-1-thread-8 - 15000 records committed, current elapsed time = 10.414 [2024-12-29 15:27:53] pool-1-thread-4 - 15000 records committed, current elapsed time = 10.512 [2024-12-29 15:27:53] pool-1-thread-9 - 15000 records committed, current elapsed time = 10.706 [2024-12-29 15:27:53] pool-1-thread-1 - 15000 records committed, current elapsed time = 10.712 [2024-12-29 15:27:53] pool-1-thread-6 - 15000 records committed, current elapsed time = 10.816 [2024-12-29 15:27:53] pool-1-thread-3 - 15000 records committed, current elapsed time = 10.856 [2024-12-29 15:27:55] pool-1-thread-2 - 20000 records committed, current elapsed time = 12.899 [2024-12-29 15:27:56] pool-1-thread-5 - 20000 records committed, current elapsed time = 13.222 [2024-12-29 15:27:56] pool-1-thread-10 - 20000 records committed, current elapsed time = 13.342 [2024-12-29 15:27:56] pool-1-thread-7 - 20000 records committed, current elapsed time = 13.685 [2024-12-29 15:27:56] pool-1-thread-8 - 20000 records committed, current elapsed time = 13.782 [2024-12-29 15:27:56] pool-1-thread-4 - 20000 records committed, current elapsed time = 13.883 [2024-12-29 15:27:57] pool-1-thread-1 - 20000 records committed, current elapsed time = 14.137 [2024-12-29 15:27:57] pool-1-thread-3 - 20000 records committed, current elapsed time = 14.181 [2024-12-29 15:27:57] pool-1-thread-9 - 20000 records committed, current elapsed time = 14.676 [2024-12-29 15:27:57] pool-1-thread-6 - 20000 records committed, current elapsed time = 14.695 [2024-12-29 15:27:59] pool-1-thread-2 - 25000 records committed, current elapsed time = 16.427 [2024-12-29 15:27:59] pool-1-thread-5 - 25000 records committed, current elapsed time = 16.757 [2024-12-29 15:28:00] pool-1-thread-10 - 25000 records committed, current elapsed time = 17.325 [2024-12-29 15:28:00] pool-1-thread-4 - 25000 records committed, current elapsed time = 17.694 [2024-12-29 15:28:00] pool-1-thread-8 - 25000 records committed, current elapsed time = 17.702 [2024-12-29 15:28:00] pool-1-thread-7 - 25000 records committed, current elapsed time = 17.805 [2024-12-29 15:28:00] pool-1-thread-3 - 25000 records committed, current elapsed time = 17.893 [2024-12-29 15:28:01] pool-1-thread-1 - 25000 records committed, current elapsed time = 18.046 [2024-12-29 15:28:01] pool-1-thread-6 - 25000 records committed, current elapsed time = 18.255 [2024-12-29 15:28:01] pool-1-thread-9 - 25000 records committed, current elapsed time = 18.270 [2024-12-29 15:28:05] pool-1-thread-2 - 30000 records committed, current elapsed time = 22.582 [2024-12-29 15:28:07] pool-1-thread-5 - 30000 records committed, current elapsed time = 24.017 [2024-12-29 15:28:08] pool-1-thread-8 - 30000 records committed, current elapsed time = 24.990 [2024-12-29 15:28:08] pool-1-thread-10 - 30000 records committed, current elapsed time = 25.246 [2024-12-29 15:28:09] pool-1-thread-1 - 30000 records committed, current elapsed time = 26.136 [2024-12-29 15:28:09] pool-1-thread-7 - 30000 records committed, current elapsed time = 26.270 [2024-12-29 15:28:09] pool-1-thread-4 - 30000 records committed, current elapsed time = 26.351 [2024-12-29 15:28:09] pool-1-thread-3 - 30000 records committed, current elapsed time = 26.767 [2024-12-29 15:28:10] pool-1-thread-9 - 30000 records committed, current elapsed time = 27.177 [2024-12-29 15:28:10] pool-1-thread-6 - 30000 records committed, current elapsed time = 27.930 [2024-12-29 15:28:19] pool-1-thread-2 - 35000 records committed, current elapsed time = 36.650 [2024-12-29 15:28:20] pool-1-thread-5 - 35000 records committed, current elapsed time = 37.716 [2024-12-29 15:28:21] pool-1-thread-10 - 35000 records committed, current elapsed time = 38.338 [2024-12-29 15:28:21] pool-1-thread-8 - 35000 records committed, current elapsed time = 38.908 [2024-12-29 15:28:22] pool-1-thread-1 - 35000 records committed, current elapsed time = 39.144 [2024-12-29 15:28:22] pool-1-thread-3 - 35000 records committed, current elapsed time = 39.218 [2024-12-29 15:28:22] pool-1-thread-7 - 35000 records committed, current elapsed time = 39.484 [2024-12-29 15:28:22] pool-1-thread-4 - 35000 records committed, current elapsed time = 39.490 [2024-12-29 15:28:22] pool-1-thread-6 - 35000 records committed, current elapsed time = 39.811 [2024-12-29 15:28:23] pool-1-thread-9 - 35000 records committed, current elapsed time = 40.790 [2024-12-29 15:28:25] pool-1-thread-2 - 40000 records committed, current elapsed time = 42.330 [2024-12-29 15:28:25] pool-1-thread-5 - 40000 records committed, current elapsed time = 42.636 [2024-12-29 15:28:26] pool-1-thread-3 - 40000 records committed, current elapsed time = 43.758 [2024-12-29 15:28:26] pool-1-thread-10 - 40000 records committed, current elapsed time = 43.772 [2024-12-29 15:28:27] pool-1-thread-8 - 40000 records committed, current elapsed time = 44.173 [2024-12-29 15:28:27] pool-1-thread-6 - 40000 records committed, current elapsed time = 44.872 [2024-12-29 15:28:28] pool-1-thread-1 - 40000 records committed, current elapsed time = 45.029 [2024-12-29 15:28:28] pool-1-thread-7 - 40000 records committed, current elapsed time = 45.085 [2024-12-29 15:28:28] pool-1-thread-4 - 40000 records committed, current elapsed time = 45.111 [2024-12-29 15:28:28] pool-1-thread-9 - 40000 records committed, current elapsed time = 45.388 [2024-12-29 15:28:31] pool-1-thread-2 - 45000 records committed, current elapsed time = 48.720 [2024-12-29 15:28:32] pool-1-thread-5 - 45000 records committed, current elapsed time = 49.025 [2024-12-29 15:28:32] pool-1-thread-8 - 45000 records committed, current elapsed time = 49.660 [2024-12-29 15:28:32] pool-1-thread-10 - 45000 records committed, current elapsed time = 49.745 [2024-12-29 15:28:33] pool-1-thread-3 - 45000 records committed, current elapsed time = 50.165 [2024-12-29 15:28:33] pool-1-thread-6 - 45000 records committed, current elapsed time = 50.944 [2024-12-29 15:28:34] pool-1-thread-1 - 45000 records committed, current elapsed time = 51.385 [2024-12-29 15:28:34] pool-1-thread-7 - 45000 records committed, current elapsed time = 51.408 [2024-12-29 15:28:38] pool-1-thread-4 - 45000 records committed, current elapsed time = 55.201 [2024-12-29 15:28:38] pool-1-thread-9 - 45000 records committed, current elapsed time = 55.553 [2024-12-29 15:28:40] pool-1-thread-2 - 50000 records committed, current elapsed time = 57.164 [2024-12-29 15:28:40] pool-1-thread-5 - 50000 records committed, current elapsed time = 57.745 [2024-12-29 15:28:41] pool-1-thread-8 - 50000 records committed, current elapsed time = 58.395 [2024-12-29 15:28:41] pool-1-thread-10 - 50000 records committed, current elapsed time = 58.425 [2024-12-29 15:28:42] pool-1-thread-3 - 50000 records committed, current elapsed time = 59.708 [2024-12-29 15:28:42] pool-1-thread-1 - 50000 records committed, current elapsed time = 59.767 [2024-12-29 15:28:42] pool-1-thread-6 - 50000 records committed, current elapsed time = 59.904 [2024-12-29 15:28:43] pool-1-thread-7 - 50000 records committed, current elapsed time = 59.986 [2024-12-29 15:28:43] pool-1-thread-4 - 50000 records committed, current elapsed time = 60.425 [2024-12-29 15:28:43] pool-1-thread-9 - 50000 records committed, current elapsed time = 60.526 [2024-12-29 15:28:46] pool-1-thread-2 - 55000 records committed, current elapsed time = 63.126 [2024-12-29 15:28:46] pool-1-thread-5 - 55000 records committed, current elapsed time = 63.556 [2024-12-29 15:28:46] pool-1-thread-10 - 55000 records committed, current elapsed time = 63.750 [2024-12-29 15:28:47] pool-1-thread-6 - 55000 records committed, current elapsed time = 64.469 [2024-12-29 15:28:47] pool-1-thread-3 - 55000 records committed, current elapsed time = 64.618 [2024-12-29 15:28:48] pool-1-thread-8 - 55000 records committed, current elapsed time = 65.251 [2024-12-29 15:28:48] pool-1-thread-1 - 55000 records committed, current elapsed time = 65.722 [2024-12-29 15:28:49] pool-1-thread-4 - 55000 records committed, current elapsed time = 66.058 [2024-12-29 15:28:49] pool-1-thread-7 - 55000 records committed, current elapsed time = 66.556 [2024-12-29 15:28:49] pool-1-thread-9 - 55000 records committed, current elapsed time = 66.811 [2024-12-29 15:28:53] pool-1-thread-2 - 60000 records committed, current elapsed time = 70.297 [2024-12-29 15:28:53] pool-1-thread-10 - 60000 records committed, current elapsed time = 70.307 [2024-12-29 15:28:53] pool-1-thread-5 - 60000 records committed, current elapsed time = 70.376 [2024-12-29 15:28:53] pool-1-thread-6 - 60000 records committed, current elapsed time = 70.607 [2024-12-29 15:28:54] pool-1-thread-3 - 60000 records committed, current elapsed time = 71.121 [2024-12-29 15:28:54] pool-1-thread-8 - 60000 records committed, current elapsed time = 71.832 [2024-12-29 15:28:55] pool-1-thread-1 - 60000 records committed, current elapsed time = 72.380 [2024-12-29 15:28:55] pool-1-thread-7 - 60000 records committed, current elapsed time = 72.665 [2024-12-29 15:28:55] pool-1-thread-9 - 60000 records committed, current elapsed time = 72.954 [2024-12-29 15:28:55] pool-1-thread-4 - 60000 records committed, current elapsed time = 72.960 [2024-12-29 15:29:00] pool-1-thread-2 - 65000 records committed, current elapsed time = 77.499 [2024-12-29 15:29:01] pool-1-thread-10 - 65000 records committed, current elapsed time = 78.114 [2024-12-29 15:29:01] pool-1-thread-5 - 65000 records committed, current elapsed time = 78.908 [2024-12-29 15:29:02] pool-1-thread-6 - 65000 records committed, current elapsed time = 79.209 [2024-12-29 15:29:02] pool-1-thread-8 - 65000 records committed, current elapsed time = 79.490 [2024-12-29 15:29:02] pool-1-thread-3 - 65000 records committed, current elapsed time = 79.612 [2024-12-29 15:29:04] pool-1-thread-1 - 65000 records committed, current elapsed time = 81.040 [2024-12-29 15:29:04] pool-1-thread-4 - 65000 records committed, current elapsed time = 81.308 [2024-12-29 15:29:04] pool-1-thread-9 - 65000 records committed, current elapsed time = 81.754 [2024-12-29 15:29:05] pool-1-thread-7 - 65000 records committed, current elapsed time = 82.120 [2024-12-29 15:29:07] pool-1-thread-2 - 70000 records committed, current elapsed time = 84.376 [2024-12-29 15:29:07] pool-1-thread-10 - 70000 records committed, current elapsed time = 84.743 [2024-12-29 15:29:07] pool-1-thread-5 - 70000 records committed, current elapsed time = 84.869 [2024-12-29 15:29:08] pool-1-thread-3 - 70000 records committed, current elapsed time = 85.120 [2024-12-29 15:29:08] pool-1-thread-8 - 70000 records committed, current elapsed time = 85.173 [2024-12-29 15:29:08] pool-1-thread-6 - 70000 records committed, current elapsed time = 85.226 [2024-12-29 15:29:08] pool-1-thread-9 - 70000 records committed, current elapsed time = 85.441 [2024-12-29 15:29:09] pool-1-thread-1 - 70000 records committed, current elapsed time = 86.932 [2024-12-29 15:29:09] pool-1-thread-7 - 70000 records committed, current elapsed time = 86.937 [2024-12-29 15:29:10] pool-1-thread-4 - 70000 records committed, current elapsed time = 87.277 [2024-12-29 15:29:11] pool-1-thread-2 - 75000 records committed, current elapsed time = 88.490 [2024-12-29 15:29:12] pool-1-thread-10 - 75000 records committed, current elapsed time = 89.638 [2024-12-29 15:29:12] pool-1-thread-5 - 75000 records committed, current elapsed time = 89.748 [2024-12-29 15:29:13] pool-1-thread-8 - 75000 records committed, current elapsed time = 89.996 [2024-12-29 15:29:13] pool-1-thread-3 - 75000 records committed, current elapsed time = 90.077 [2024-12-29 15:29:13] pool-1-thread-6 - 75000 records committed, current elapsed time = 90.146 [2024-12-29 15:29:13] pool-1-thread-1 - 75000 records committed, current elapsed time = 90.386 [2024-12-29 15:29:14] pool-1-thread-9 - 75000 records committed, current elapsed time = 91.188 [2024-12-29 15:29:14] pool-1-thread-7 - 75000 records committed, current elapsed time = 91.358 [2024-12-29 15:29:14] pool-1-thread-4 - 75000 records committed, current elapsed time = 91.495 [2024-12-29 15:29:15] pool-1-thread-2 - 80000 records committed, current elapsed time = 92.822 [2024-12-29 15:29:16] pool-1-thread-10 - 80000 records committed, current elapsed time = 93.381 [2024-12-29 15:29:16] pool-1-thread-5 - 80000 records committed, current elapsed time = 93.504 [2024-12-29 15:29:16] pool-1-thread-8 - 80000 records committed, current elapsed time = 93.584 [2024-12-29 15:29:16] pool-1-thread-3 - 80000 records committed, current elapsed time = 93.743 [2024-12-29 15:29:16] pool-1-thread-6 - 80000 records committed, current elapsed time = 93.892 [2024-12-29 15:29:17] pool-1-thread-9 - 80000 records committed, current elapsed time = 94.023 [2024-12-29 15:29:17] pool-1-thread-1 - 80000 records committed, current elapsed time = 94.117 [2024-12-29 15:29:18] pool-1-thread-7 - 80000 records committed, current elapsed time = 95.810 [2024-12-29 15:29:19] pool-1-thread-4 - 80000 records committed, current elapsed time = 96.681 [2024-12-29 15:29:21] pool-1-thread-2 - 85000 records committed, current elapsed time = 98.626 [2024-12-29 15:29:22] pool-1-thread-10 - 85000 records committed, current elapsed time = 99.396 [2024-12-29 15:29:22] pool-1-thread-8 - 85000 records committed, current elapsed time = 99.457 [2024-12-29 15:29:22] pool-1-thread-5 - 85000 records committed, current elapsed time = 99.632 [2024-12-29 15:29:23] pool-1-thread-3 - 85000 records committed, current elapsed time = 100.265 [2024-12-29 15:29:23] pool-1-thread-1 - 85000 records committed, current elapsed time = 100.302 [2024-12-29 15:29:23] pool-1-thread-9 - 85000 records committed, current elapsed time = 100.534 [2024-12-29 15:29:24] pool-1-thread-6 - 85000 records committed, current elapsed time = 101.532 [2024-12-29 15:29:24] pool-1-thread-7 - 85000 records committed, current elapsed time = 101.573 [2024-12-29 15:29:25] pool-1-thread-4 - 85000 records committed, current elapsed time = 102.028 [2024-12-29 15:29:27] pool-1-thread-2 - 90000 records committed, current elapsed time = 104.011 [2024-12-29 15:29:27] pool-1-thread-10 - 90000 records committed, current elapsed time = 104.705 [2024-12-29 15:29:27] pool-1-thread-5 - 90000 records committed, current elapsed time = 104.918 [2024-12-29 15:29:28] pool-1-thread-8 - 90000 records committed, current elapsed time = 105.412 [2024-12-29 15:29:33] pool-1-thread-9 - 90000 records committed, current elapsed time = 110.020 [2024-12-29 15:29:33] pool-1-thread-1 - 90000 records committed, current elapsed time = 110.028 [2024-12-29 15:29:33] pool-1-thread-7 - 90000 records committed, current elapsed time = 110.327 [2024-12-29 15:29:33] pool-1-thread-6 - 90000 records committed, current elapsed time = 110.656 [2024-12-29 15:29:33] pool-1-thread-3 - 90000 records committed, current elapsed time = 110.695 [2024-12-29 15:29:33] pool-1-thread-4 - 90000 records committed, current elapsed time = 110.831 [2024-12-29 15:29:36] pool-1-thread-2 - 95000 records committed, current elapsed time = 113.322 [2024-12-29 15:29:37] pool-1-thread-10 - 95000 records committed, current elapsed time = 114.431 [2024-12-29 15:29:37] pool-1-thread-8 - 95000 records committed, current elapsed time = 114.578 [2024-12-29 15:29:37] pool-1-thread-5 - 95000 records committed, current elapsed time = 114.759 [2024-12-29 15:29:37] pool-1-thread-9 - 95000 records committed, current elapsed time = 114.871 [2024-12-29 15:29:37] pool-1-thread-1 - 95000 records committed, current elapsed time = 114.891 [2024-12-29 15:29:38] pool-1-thread-7 - 95000 records committed, current elapsed time = 115.187 [2024-12-29 15:29:38] pool-1-thread-6 - 95000 records committed, current elapsed time = 115.288 [2024-12-29 15:29:38] pool-1-thread-3 - 95000 records committed, current elapsed time = 115.299 [2024-12-29 15:29:38] pool-1-thread-4 - 95000 records committed, current elapsed time = 115.463 [2024-12-29 15:29:41] pool-1-thread-2 - 100000 records committed, current elapsed time = 118.277 [2024-12-29 15:29:43] pool-1-thread-10 - 100000 records committed, current elapsed time = 120.102 [2024-12-29 15:29:43] pool-1-thread-8 - 100000 records committed, current elapsed time = 120.533 [2024-12-29 15:29:43] pool-1-thread-5 - 100000 records committed, current elapsed time = 120.564 [2024-12-29 15:29:44] pool-1-thread-1 - 100000 records committed, current elapsed time = 120.997 [2024-12-29 15:29:44] pool-1-thread-9 - 100000 records committed, current elapsed time = 121.009 [2024-12-29 15:29:44] pool-1-thread-7 - 100000 records committed, current elapsed time = 121.312 [2024-12-29 15:29:45] pool-1-thread-3 - 100000 records committed, current elapsed time = 122.128 [2024-12-29 15:29:45] pool-1-thread-6 - 100000 records committed, current elapsed time = 122.228 [2024-12-29 15:29:45] pool-1-thread-4 - 100000 records committed, current elapsed time = 122.310 [2024-12-29 15:29:47] pool-1-thread-2 - 105000 records committed, current elapsed time = 124.057 [2024-12-29 15:29:48] pool-1-thread-10 - 105000 records committed, current elapsed time = 125.894 [2024-12-29 15:29:49] pool-1-thread-5 - 105000 records committed, current elapsed time = 126.929 [2024-12-29 15:29:50] pool-1-thread-8 - 105000 records committed, current elapsed time = 127.342 [2024-12-29 15:29:50] pool-1-thread-1 - 105000 records committed, current elapsed time = 127.367 [2024-12-29 15:29:53] pool-1-thread-7 - 105000 records committed, current elapsed time = 130.112 [2024-12-29 15:29:53] pool-1-thread-9 - 105000 records committed, current elapsed time = 130.137 [2024-12-29 15:29:53] pool-1-thread-6 - 105000 records committed, current elapsed time = 130.348 [2024-12-29 15:29:53] pool-1-thread-3 - 105000 records committed, current elapsed time = 130.451 [2024-12-29 15:29:53] pool-1-thread-4 - 105000 records committed, current elapsed time = 130.634 [2024-12-29 15:29:54] pool-1-thread-2 - 110000 records committed, current elapsed time = 131.446 [2024-12-29 15:29:57] pool-1-thread-10 - 110000 records committed, current elapsed time = 134.341 [2024-12-29 15:29:57] pool-1-thread-5 - 110000 records committed, current elapsed time = 134.461 [2024-12-29 15:29:59] pool-1-thread-8 - 110000 records committed, current elapsed time = 136.372 [2024-12-29 15:29:59] pool-1-thread-1 - 110000 records committed, current elapsed time = 136.379 [2024-12-29 15:29:59] pool-1-thread-6 - 110000 records committed, current elapsed time = 136.432 [2024-12-29 15:30:00] pool-1-thread-9 - 110000 records committed, current elapsed time = 137.461 [2024-12-29 15:30:01] pool-1-thread-7 - 110000 records committed, current elapsed time = 138.656 [2024-12-29 15:30:02] pool-1-thread-3 - 110000 records committed, current elapsed time = 139.556 [2024-12-29 15:30:02] pool-1-thread-4 - 110000 records committed, current elapsed time = 139.899 [2024-12-29 15:30:04] pool-1-thread-2 - 115000 records committed, current elapsed time = 141.523 [2024-12-29 15:30:06] pool-1-thread-10 - 115000 records committed, current elapsed time = 143.424 [2024-12-29 15:30:06] pool-1-thread-5 - 115000 records committed, current elapsed time = 143.684 [2024-12-29 15:30:07] pool-1-thread-1 - 115000 records committed, current elapsed time = 144.333 [2024-12-29 15:30:07] pool-1-thread-6 - 115000 records committed, current elapsed time = 144.554 [2024-12-29 15:30:07] pool-1-thread-8 - 115000 records committed, current elapsed time = 144.624 [2024-12-29 15:30:07] pool-1-thread-9 - 115000 records committed, current elapsed time = 144.905 [2024-12-29 15:30:07] pool-1-thread-7 - 115000 records committed, current elapsed time = 144.912 [2024-12-29 15:30:09] pool-1-thread-4 - 115000 records committed, current elapsed time = 146.550 [2024-12-29 15:30:09] pool-1-thread-3 - 115000 records committed, current elapsed time = 146.565 [2024-12-29 15:30:11] pool-1-thread-2 - 120000 records committed, current elapsed time = 148.671 [2024-12-29 15:30:13] pool-1-thread-5 - 120000 records committed, current elapsed time = 150.214 [2024-12-29 15:30:13] pool-1-thread-10 - 120000 records committed, current elapsed time = 150.964 [2024-12-29 15:30:14] pool-1-thread-6 - 120000 records committed, current elapsed time = 151.756 [2024-12-29 15:30:14] pool-1-thread-9 - 120000 records committed, current elapsed time = 151.978 [2024-12-29 15:30:15] pool-1-thread-1 - 120000 records committed, current elapsed time = 152.105 [2024-12-29 15:30:15] pool-1-thread-8 - 120000 records committed, current elapsed time = 152.331 [2024-12-29 15:30:15] pool-1-thread-7 - 120000 records committed, current elapsed time = 152.416 [2024-12-29 15:30:16] pool-1-thread-3 - 120000 records committed, current elapsed time = 153.527 [2024-12-29 15:30:16] pool-1-thread-4 - 120000 records committed, current elapsed time = 153.904 [2024-12-29 15:30:17] pool-1-thread-2 - 125000 records committed, current elapsed time = 154.625 [2024-12-29 15:30:19] pool-1-thread-5 - 125000 records committed, current elapsed time = 156.164 [2024-12-29 15:30:19] pool-1-thread-10 - 125000 records committed, current elapsed time = 156.643 [2024-12-29 15:30:20] pool-1-thread-8 - 125000 records committed, current elapsed time = 157.507 [2024-12-29 15:30:20] pool-1-thread-6 - 125000 records committed, current elapsed time = 157.904 [2024-12-29 15:30:21] pool-1-thread-9 - 125000 records committed, current elapsed time = 158.398 [2024-12-29 15:30:21] pool-1-thread-1 - 125000 records committed, current elapsed time = 158.428 [2024-12-29 15:30:21] pool-1-thread-7 - 125000 records committed, current elapsed time = 158.567 [2024-12-29 15:30:21] pool-1-thread-3 - 125000 records committed, current elapsed time = 158.935 [2024-12-29 15:30:22] pool-1-thread-4 - 125000 records committed, current elapsed time = 159.823 [2024-12-29 15:30:26] pool-1-thread-2 - 130000 records committed, current elapsed time = 163.471 [2024-12-29 15:30:27] pool-1-thread-10 - 130000 records committed, current elapsed time = 164.375 [2024-12-29 15:30:28] pool-1-thread-5 - 130000 records committed, current elapsed time = 165.083 [2024-12-29 15:30:28] pool-1-thread-6 - 130000 records committed, current elapsed time = 165.439 [2024-12-29 15:30:29] pool-1-thread-8 - 130000 records committed, current elapsed time = 166.356 [2024-12-29 15:30:29] pool-1-thread-1 - 130000 records committed, current elapsed time = 166.643 [2024-12-29 15:30:29] pool-1-thread-9 - 130000 records committed, current elapsed time = 166.663 [2024-12-29 15:30:30] pool-1-thread-7 - 130000 records committed, current elapsed time = 167.003 [2024-12-29 15:30:31] pool-1-thread-4 - 130000 records committed, current elapsed time = 168.849 [2024-12-29 15:30:32] pool-1-thread-3 - 130000 records committed, current elapsed time = 169.266 [2024-12-29 15:30:37] pool-1-thread-2 - 135000 records committed, current elapsed time = 174.369 [2024-12-29 15:30:38] pool-1-thread-5 - 135000 records committed, current elapsed time = 175.233 [2024-12-29 15:30:38] pool-1-thread-10 - 135000 records committed, current elapsed time = 175.245 [2024-12-29 15:30:40] pool-1-thread-8 - 135000 records committed, current elapsed time = 177.001 [2024-12-29 15:30:40] pool-1-thread-6 - 135000 records committed, current elapsed time = 177.050 [2024-12-29 15:30:41] pool-1-thread-1 - 135000 records committed, current elapsed time = 178.127 [2024-12-29 15:30:41] pool-1-thread-9 - 135000 records committed, current elapsed time = 178.452 [2024-12-29 15:30:42] pool-1-thread-7 - 135000 records committed, current elapsed time = 179.403 [2024-12-29 15:30:42] pool-1-thread-3 - 135000 records committed, current elapsed time = 179.720 [2024-12-29 15:30:42] pool-1-thread-4 - 135000 records committed, current elapsed time = 179.776 [2024-12-29 15:30:43] pool-1-thread-2 - 140000 records committed, current elapsed time = 180.364 [2024-12-29 15:30:45] pool-1-thread-5 - 140000 records committed, current elapsed time = 182.607 [2024-12-29 15:30:45] pool-1-thread-10 - 140000 records committed, current elapsed time = 182.651 [2024-12-29 15:30:45] pool-1-thread-6 - 140000 records committed, current elapsed time = 182.772 [2024-12-29 15:30:45] pool-1-thread-8 - 140000 records committed, current elapsed time = 182.894 [2024-12-29 15:30:47] pool-1-thread-1 - 140000 records committed, current elapsed time = 184.173 [2024-12-29 15:30:49] pool-1-thread-7 - 140000 records committed, current elapsed time = 186.566 [2024-12-29 15:30:49] pool-1-thread-9 - 140000 records committed, current elapsed time = 186.572 [2024-12-29 15:30:52] pool-1-thread-4 - 140000 records committed, current elapsed time = 189.622 [2024-12-29 15:30:53] pool-1-thread-3 - 140000 records committed, current elapsed time = 190.717 [2024-12-29 15:30:55] pool-1-thread-2 - 145000 records committed, current elapsed time = 192.454 [2024-12-29 15:30:56] pool-1-thread-6 - 145000 records committed, current elapsed time = 193.489 [2024-12-29 15:30:56] pool-1-thread-10 - 145000 records committed, current elapsed time = 193.667 [2024-12-29 15:30:57] pool-1-thread-5 - 145000 records committed, current elapsed time = 194.516 [2024-12-29 15:30:57] pool-1-thread-8 - 145000 records committed, current elapsed time = 194.977 [2024-12-29 15:30:58] pool-1-thread-1 - 145000 records committed, current elapsed time = 195.443 [2024-12-29 15:30:59] pool-1-thread-9 - 145000 records committed, current elapsed time = 196.555 [2024-12-29 15:30:59] pool-1-thread-7 - 145000 records committed, current elapsed time = 196.835 [2024-12-29 15:31:00] pool-1-thread-4 - 145000 records committed, current elapsed time = 197.314 [2024-12-29 15:31:01] pool-1-thread-3 - 145000 records committed, current elapsed time = 198.630 [2024-12-29 15:31:02] pool-1-thread-2 - 150000 records committed, current elapsed time = 199.055 [2024-12-29 15:31:05] pool-1-thread-6 - 150000 records committed, current elapsed time = 202.072 [2024-12-29 15:31:05] pool-1-thread-10 - 150000 records committed, current elapsed time = 202.175 [2024-12-29 15:31:05] pool-1-thread-5 - 150000 records committed, current elapsed time = 202.885 [2024-12-29 15:31:05] pool-1-thread-8 - 150000 records committed, current elapsed time = 202.975 [2024-12-29 15:31:06] pool-1-thread-1 - 150000 records committed, current elapsed time = 203.330 [2024-12-29 15:31:07] pool-1-thread-9 - 150000 records committed, current elapsed time = 204.179 [2024-12-29 15:31:08] pool-1-thread-7 - 150000 records committed, current elapsed time = 205.617 [2024-12-29 15:31:08] pool-1-thread-4 - 150000 records committed, current elapsed time = 205.931 [2024-12-29 15:31:09] pool-1-thread-3 - 150000 records committed, current elapsed time = 206.896 [2024-12-29 15:31:10] pool-1-thread-2 - 155000 records committed, current elapsed time = 207.162 [2024-12-29 15:31:12] pool-1-thread-6 - 155000 records committed, current elapsed time = 209.796 [2024-12-29 15:31:12] pool-1-thread-10 - 155000 records committed, current elapsed time = 209.890 [2024-12-29 15:31:13] pool-1-thread-5 - 155000 records committed, current elapsed time = 210.257 [2024-12-29 15:31:13] pool-1-thread-8 - 155000 records committed, current elapsed time = 210.331 [2024-12-29 15:31:13] pool-1-thread-1 - 155000 records committed, current elapsed time = 210.797 [2024-12-29 15:31:13] pool-1-thread-9 - 155000 records committed, current elapsed time = 210.807 [2024-12-29 15:31:15] pool-1-thread-7 - 155000 records committed, current elapsed time = 212.503 [2024-12-29 15:31:16] pool-1-thread-4 - 155000 records committed, current elapsed time = 213.246 [2024-12-29 15:31:16] pool-1-thread-3 - 155000 records committed, current elapsed time = 213.679 [2024-12-29 15:31:19] pool-1-thread-2 - 160000 records committed, current elapsed time = 216.481 [2024-12-29 15:31:23] pool-1-thread-10 - 160000 records committed, current elapsed time = 220.000 [2024-12-29 15:31:23] pool-1-thread-5 - 160000 records committed, current elapsed time = 220.400 [2024-12-29 15:31:23] pool-1-thread-8 - 160000 records committed, current elapsed time = 220.408 [2024-12-29 15:31:23] pool-1-thread-6 - 160000 records committed, current elapsed time = 220.464 [2024-12-29 15:31:23] pool-1-thread-1 - 160000 records committed, current elapsed time = 220.743 [2024-12-29 15:31:24] pool-1-thread-9 - 160000 records committed, current elapsed time = 221.845 [2024-12-29 15:31:25] pool-1-thread-7 - 160000 records committed, current elapsed time = 222.495 [2024-12-29 15:31:26] pool-1-thread-4 - 160000 records committed, current elapsed time = 223.367 [2024-12-29 15:31:26] pool-1-thread-3 - 160000 records committed, current elapsed time = 223.557 [2024-12-29 15:31:26] pool-1-thread-2 - 165000 records committed, current elapsed time = 223.740 [2024-12-29 15:31:28] pool-1-thread-10 - 165000 records committed, current elapsed time = 225.297 [2024-12-29 15:31:28] pool-1-thread-5 - 165000 records committed, current elapsed time = 225.628 [2024-12-29 15:31:28] pool-1-thread-6 - 165000 records committed, current elapsed time = 225.860 [2024-12-29 15:31:28] pool-1-thread-8 - 165000 records committed, current elapsed time = 225.944 [2024-12-29 15:31:29] pool-1-thread-1 - 165000 records committed, current elapsed time = 226.176 [2024-12-29 15:31:30] pool-1-thread-9 - 165000 records committed, current elapsed time = 227.325 [2024-12-29 15:31:30] pool-1-thread-7 - 165000 records committed, current elapsed time = 227.606 [2024-12-29 15:31:31] pool-1-thread-4 - 165000 records committed, current elapsed time = 228.484 [2024-12-29 15:31:31] pool-1-thread-3 - 165000 records committed, current elapsed time = 228.864 [2024-12-29 15:31:32] pool-1-thread-2 - 170000 records committed, current elapsed time = 229.675 [2024-12-29 15:31:33] pool-1-thread-10 - 170000 records committed, current elapsed time = 230.679 [2024-12-29 15:31:34] pool-1-thread-5 - 170000 records committed, current elapsed time = 230.986 [2024-12-29 15:31:35] pool-1-thread-6 - 170000 records committed, current elapsed time = 231.990 [2024-12-29 15:31:35] pool-1-thread-8 - 170000 records committed, current elapsed time = 232.057 [2024-12-29 15:31:35] pool-1-thread-1 - 170000 records committed, current elapsed time = 232.264 [2024-12-29 15:31:35] pool-1-thread-9 - 170000 records committed, current elapsed time = 232.582 [2024-12-29 15:31:36] pool-1-thread-7 - 170000 records committed, current elapsed time = 232.999 [2024-12-29 15:31:37] pool-1-thread-4 - 170000 records committed, current elapsed time = 234.404 [2024-12-29 15:31:37] pool-1-thread-3 - 170000 records committed, current elapsed time = 234.415 [2024-12-29 15:31:37] pool-1-thread-2 - 175000 records committed, current elapsed time = 234.973 [2024-12-29 15:31:39] pool-1-thread-10 - 175000 records committed, current elapsed time = 236.900 [2024-12-29 15:31:40] pool-1-thread-5 - 175000 records committed, current elapsed time = 237.308 [2024-12-29 15:31:40] pool-1-thread-8 - 175000 records committed, current elapsed time = 237.599 [2024-12-29 15:31:40] pool-1-thread-6 - 175000 records committed, current elapsed time = 237.626 [2024-12-29 15:31:45] pool-1-thread-1 - 175000 records committed, current elapsed time = 242.899 [2024-12-29 15:31:46] pool-1-thread-7 - 175000 records committed, current elapsed time = 243.288 [2024-12-29 15:31:46] pool-1-thread-9 - 175000 records committed, current elapsed time = 243.578 [2024-12-29 15:31:47] pool-1-thread-4 - 175000 records committed, current elapsed time = 244.233 [2024-12-29 15:31:49] pool-1-thread-2 - 180000 records committed, current elapsed time = 246.095 [2024-12-29 15:31:49] pool-1-thread-3 - 175000 records committed, current elapsed time = 246.141 [2024-12-29 15:31:50] pool-1-thread-10 - 180000 records committed, current elapsed time = 247.085 [2024-12-29 15:31:50] pool-1-thread-6 - 180000 records committed, current elapsed time = 247.297 [2024-12-29 15:31:50] pool-1-thread-5 - 180000 records committed, current elapsed time = 247.389 [2024-12-29 15:31:50] pool-1-thread-8 - 180000 records committed, current elapsed time = 247.566 [2024-12-29 15:31:51] pool-1-thread-1 - 180000 records committed, current elapsed time = 248.612 [2024-12-29 15:31:51] pool-1-thread-9 - 180000 records committed, current elapsed time = 248.691 [2024-12-29 15:31:52] pool-1-thread-7 - 180000 records committed, current elapsed time = 249.017 [2024-12-29 15:32:00] pool-1-thread-4 - 180000 records committed, current elapsed time = 257.695 [2024-12-29 15:32:02] pool-1-thread-2 - 185000 records committed, current elapsed time = 259.237 [2024-12-29 15:32:02] pool-1-thread-3 - 180000 records committed, current elapsed time = 259.642 [2024-12-29 15:32:04] pool-1-thread-10 - 185000 records committed, current elapsed time = 261.279 [2024-12-29 15:32:04] pool-1-thread-5 - 185000 records committed, current elapsed time = 261.581 [2024-12-29 15:32:04] pool-1-thread-8 - 185000 records committed, current elapsed time = 261.595 [2024-12-29 15:32:04] pool-1-thread-6 - 185000 records committed, current elapsed time = 261.809 [2024-12-29 15:32:05] pool-1-thread-1 - 185000 records committed, current elapsed time = 262.372 [2024-12-29 15:32:05] pool-1-thread-9 - 185000 records committed, current elapsed time = 262.412 [2024-12-29 15:32:08] pool-1-thread-7 - 185000 records committed, current elapsed time = 265.075 [2024-12-29 15:32:08] pool-1-thread-4 - 185000 records committed, current elapsed time = 265.586 [2024-12-29 15:32:08] pool-1-thread-2 - 190000 records committed, current elapsed time = 265.896 [2024-12-29 15:32:09] pool-1-thread-3 - 185000 records committed, current elapsed time = 266.062 [2024-12-29 15:32:11] pool-1-thread-10 - 190000 records committed, current elapsed time = 268.470 [2024-12-29 15:32:11] pool-1-thread-5 - 190000 records committed, current elapsed time = 268.569 [2024-12-29 15:32:12] pool-1-thread-8 - 190000 records committed, current elapsed time = 269.022 [2024-12-29 15:32:12] pool-1-thread-6 - 190000 records committed, current elapsed time = 269.068 [2024-12-29 15:32:13] pool-1-thread-9 - 190000 records committed, current elapsed time = 270.133 [2024-12-29 15:32:13] pool-1-thread-1 - 190000 records committed, current elapsed time = 270.209 [2024-12-29 15:32:13] pool-1-thread-7 - 190000 records committed, current elapsed time = 270.382 [2024-12-29 15:32:13] pool-1-thread-4 - 190000 records committed, current elapsed time = 270.948 [2024-12-29 15:32:14] pool-1-thread-2 - 195000 records committed, current elapsed time = 270.995 [2024-12-29 15:32:14] pool-1-thread-3 - 190000 records committed, current elapsed time = 271.327 [2024-12-29 15:32:16] pool-1-thread-10 - 195000 records committed, current elapsed time = 273.275 [2024-12-29 15:32:16] pool-1-thread-5 - 195000 records committed, current elapsed time = 273.676 [2024-12-29 15:32:17] pool-1-thread-8 - 195000 records committed, current elapsed time = 274.948 [2024-12-29 15:32:18] pool-1-thread-6 - 195000 records committed, current elapsed time = 275.062 [2024-12-29 15:32:18] pool-1-thread-1 - 195000 records committed, current elapsed time = 275.404 [2024-12-29 15:32:18] pool-1-thread-9 - 195000 records committed, current elapsed time = 275.762 [2024-12-29 15:32:18] pool-1-thread-7 - 195000 records committed, current elapsed time = 275.885 [2024-12-29 15:32:19] pool-1-thread-4 - 195000 records committed, current elapsed time = 276.412 [2024-12-29 15:32:19] pool-1-thread-2 - 200000 records committed, current elapsed time = 276.830 [2024-12-29 15:32:21] pool-1-thread-3 - 195000 records committed, current elapsed time = 278.237 [2024-12-29 15:32:22] pool-1-thread-10 - 200000 records committed, current elapsed time = 279.149 [2024-12-29 15:32:22] pool-1-thread-5 - 200000 records committed, current elapsed time = 279.740 [2024-12-29 15:32:23] pool-1-thread-8 - 200000 records committed, current elapsed time = 280.241 [2024-12-29 15:32:24] pool-1-thread-6 - 200000 records committed, current elapsed time = 281.056 [2024-12-29 15:32:24] pool-1-thread-9 - 200000 records committed, current elapsed time = 281.305 [2024-12-29 15:32:24] pool-1-thread-1 - 200000 records committed, current elapsed time = 281.309 [2024-12-29 15:32:24] pool-1-thread-7 - 200000 records committed, current elapsed time = 281.776 [2024-12-29 15:32:26] pool-1-thread-4 - 200000 records committed, current elapsed time = 283.118 [2024-12-29 15:32:26] pool-1-thread-2 - 205000 records committed, current elapsed time = 283.609 [2024-12-29 15:32:27] pool-1-thread-3 - 200000 records committed, current elapsed time = 284.045 [2024-12-29 15:32:28] pool-1-thread-10 - 205000 records committed, current elapsed time = 285.976 [2024-12-29 15:32:29] pool-1-thread-5 - 205000 records committed, current elapsed time = 286.636 [2024-12-29 15:32:30] pool-1-thread-8 - 205000 records committed, current elapsed time = 287.118 [2024-12-29 15:32:30] pool-1-thread-6 - 205000 records committed, current elapsed time = 287.971 [2024-12-29 15:32:31] pool-1-thread-9 - 205000 records committed, current elapsed time = 288.312 [2024-12-29 15:32:31] pool-1-thread-1 - 205000 records committed, current elapsed time = 288.516 [2024-12-29 15:32:31] pool-1-thread-7 - 205000 records committed, current elapsed time = 288.853 [2024-12-29 15:32:32] pool-1-thread-4 - 205000 records committed, current elapsed time = 289.466 [2024-12-29 15:32:32] pool-1-thread-2 - 210000 records committed, current elapsed time = 289.708 [2024-12-29 15:32:34] pool-1-thread-3 - 205000 records committed, current elapsed time = 291.936 [2024-12-29 15:32:38] pool-1-thread-10 - 210000 records committed, current elapsed time = 295.651 [2024-12-29 15:32:39] pool-1-thread-5 - 210000 records committed, current elapsed time = 296.730 [2024-12-29 15:32:40] pool-1-thread-8 - 210000 records committed, current elapsed time = 297.540 [2024-12-29 15:32:41] pool-1-thread-6 - 210000 records committed, current elapsed time = 298.111 [2024-12-29 15:32:41] pool-1-thread-1 - 210000 records committed, current elapsed time = 298.184 [2024-12-29 15:32:41] pool-1-thread-7 - 210000 records committed, current elapsed time = 298.474 [2024-12-29 15:32:41] pool-1-thread-9 - 210000 records committed, current elapsed time = 298.560 [2024-12-29 15:32:42] pool-1-thread-4 - 210000 records committed, current elapsed time = 299.259 [2024-12-29 15:32:43] pool-1-thread-2 - 215000 records committed, current elapsed time = 300.669 [2024-12-29 15:32:44] pool-1-thread-3 - 210000 records committed, current elapsed time = 301.113 [2024-12-29 15:32:44] pool-1-thread-5 - 215000 records committed, current elapsed time = 301.680 [2024-12-29 15:32:44] pool-1-thread-10 - 215000 records committed, current elapsed time = 301.785 [2024-12-29 15:32:45] pool-1-thread-8 - 215000 records committed, current elapsed time = 302.876 [2024-12-29 15:32:46] pool-1-thread-6 - 215000 records committed, current elapsed time = 303.693 [2024-12-29 15:32:47] pool-1-thread-1 - 215000 records committed, current elapsed time = 304.140 [2024-12-29 15:32:47] pool-1-thread-9 - 215000 records committed, current elapsed time = 304.160 [2024-12-29 15:32:47] pool-1-thread-7 - 215000 records committed, current elapsed time = 304.496 [2024-12-29 15:32:49] pool-1-thread-4 - 215000 records committed, current elapsed time = 306.331 [2024-12-29 15:32:50] pool-1-thread-2 - 220000 records committed, current elapsed time = 307.603 [2024-12-29 15:32:52] pool-1-thread-3 - 215000 records committed, current elapsed time = 309.153 [2024-12-29 15:32:56] pool-1-thread-5 - 220000 records committed, current elapsed time = 313.737 [2024-12-29 15:32:57] pool-1-thread-10 - 220000 records committed, current elapsed time = 313.990 [2024-12-29 15:32:57] pool-1-thread-8 - 220000 records committed, current elapsed time = 314.049 [2024-12-29 15:32:58] pool-1-thread-1 - 220000 records committed, current elapsed time = 315.362 [2024-12-29 15:32:58] pool-1-thread-9 - 220000 records committed, current elapsed time = 315.403 [2024-12-29 15:32:58] pool-1-thread-6 - 220000 records committed, current elapsed time = 315.447 [2024-12-29 15:32:58] pool-1-thread-7 - 220000 records committed, current elapsed time = 315.467 [2024-12-29 15:32:58] pool-1-thread-4 - 220000 records committed, current elapsed time = 315.845 [2024-12-29 15:32:59] pool-1-thread-2 - 225000 records committed, current elapsed time = 316.205 [2024-12-29 15:32:59] pool-1-thread-3 - 220000 records committed, current elapsed time = 316.480 [2024-12-29 15:33:00] pool-1-thread-5 - 225000 records committed, current elapsed time = 317.063 [2024-12-29 15:33:00] pool-1-thread-10 - 225000 records committed, current elapsed time = 317.194 [2024-12-29 15:33:01] pool-1-thread-8 - 225000 records committed, current elapsed time = 318.959 [2024-12-29 15:33:02] pool-1-thread-1 - 225000 records committed, current elapsed time = 319.844 [2024-12-29 15:33:02] pool-1-thread-9 - 225000 records committed, current elapsed time = 319.862 [2024-12-29 15:33:03] pool-1-thread-6 - 225000 records committed, current elapsed time = 320.817 [2024-12-29 15:33:03] pool-1-thread-7 - 225000 records committed, current elapsed time = 320.868 [2024-12-29 15:33:04] pool-1-thread-4 - 225000 records committed, current elapsed time = 321.794 [2024-12-29 15:33:07] pool-1-thread-2 - 230000 records committed, current elapsed time = 324.551 [2024-12-29 15:33:08] pool-1-thread-3 - 225000 records committed, current elapsed time = 325.532 [2024-12-29 15:33:09] pool-1-thread-5 - 230000 records committed, current elapsed time = 326.659 [2024-12-29 15:33:10] pool-1-thread-10 - 230000 records committed, current elapsed time = 327.111 [2024-12-29 15:33:10] pool-1-thread-8 - 230000 records committed, current elapsed time = 327.224 [2024-12-29 15:33:11] pool-1-thread-1 - 230000 records committed, current elapsed time = 328.050 [2024-12-29 15:33:12] pool-1-thread-6 - 230000 records committed, current elapsed time = 329.547 [2024-12-29 15:33:13] pool-1-thread-9 - 230000 records committed, current elapsed time = 330.121 [2024-12-29 15:33:13] pool-1-thread-7 - 230000 records committed, current elapsed time = 330.514 [2024-12-29 15:33:13] pool-1-thread-4 - 230000 records committed, current elapsed time = 330.618 [2024-12-29 15:33:14] pool-1-thread-2 - 235000 records committed, current elapsed time = 331.054 [2024-12-29 15:33:14] pool-1-thread-3 - 230000 records committed, current elapsed time = 331.462 [2024-12-29 15:33:17] pool-1-thread-5 - 235000 records committed, current elapsed time = 334.756 [2024-12-29 15:33:18] pool-1-thread-8 - 235000 records committed, current elapsed time = 335.020 [2024-12-29 15:33:18] pool-1-thread-10 - 235000 records committed, current elapsed time = 335.041 [2024-12-29 15:33:18] pool-1-thread-1 - 235000 records committed, current elapsed time = 335.845 [2024-12-29 15:33:19] pool-1-thread-6 - 235000 records committed, current elapsed time = 336.017 [2024-12-29 15:33:20] pool-1-thread-9 - 235000 records committed, current elapsed time = 337.068 [2024-12-29 15:33:21] pool-1-thread-7 - 235000 records committed, current elapsed time = 338.004 [2024-12-29 15:33:21] pool-1-thread-4 - 235000 records committed, current elapsed time = 338.791 [2024-12-29 15:33:22] pool-1-thread-2 - 240000 records committed, current elapsed time = 339.709 [2024-12-29 15:33:23] pool-1-thread-3 - 235000 records committed, current elapsed time = 340.570 [2024-12-29 15:33:24] pool-1-thread-8 - 240000 records committed, current elapsed time = 341.234 [2024-12-29 15:33:24] pool-1-thread-5 - 240000 records committed, current elapsed time = 341.303 [2024-12-29 15:33:24] pool-1-thread-10 - 240000 records committed, current elapsed time = 341.569 [2024-12-29 15:33:26] pool-1-thread-1 - 240000 records committed, current elapsed time = 343.002 [2024-12-29 15:33:26] pool-1-thread-6 - 240000 records committed, current elapsed time = 343.220 [2024-12-29 15:33:26] pool-1-thread-9 - 240000 records committed, current elapsed time = 343.266 [2024-12-29 15:33:27] pool-1-thread-7 - 240000 records committed, current elapsed time = 344.681 [2024-12-29 15:33:27] pool-1-thread-4 - 240000 records committed, current elapsed time = 344.882 [2024-12-29 15:33:28] pool-1-thread-2 - 245000 records committed, current elapsed time = 345.142 [2024-12-29 15:33:28] pool-1-thread-3 - 240000 records committed, current elapsed time = 345.548 [2024-12-29 15:33:29] pool-1-thread-8 - 245000 records committed, current elapsed time = 346.146 [2024-12-29 15:33:29] pool-1-thread-5 - 245000 records committed, current elapsed time = 346.266 [2024-12-29 15:33:29] pool-1-thread-10 - 245000 records committed, current elapsed time = 346.554 [2024-12-29 15:33:31] pool-1-thread-6 - 245000 records committed, current elapsed time = 348.099 [2024-12-29 15:33:31] pool-1-thread-1 - 245000 records committed, current elapsed time = 348.442 [2024-12-29 15:33:31] pool-1-thread-9 - 245000 records committed, current elapsed time = 348.634 [2024-12-29 15:33:32] pool-1-thread-7 - 245000 records committed, current elapsed time = 349.363 [2024-12-29 15:33:33] pool-1-thread-4 - 245000 records committed, current elapsed time = 350.203 [2024-12-29 15:33:33] pool-1-thread-2 - 250000 records committed, current elapsed time = 350.575 [2024-12-29 15:33:34] pool-1-thread-3 - 245000 records committed, current elapsed time = 351.872 [2024-12-29 15:33:36] pool-1-thread-8 - 250000 records committed, current elapsed time = 353.498 [2024-12-29 15:33:36] pool-1-thread-5 - 250000 records committed, current elapsed time = 353.524 [2024-12-29 15:33:37] pool-1-thread-10 - 250000 records committed, current elapsed time = 354.067 [2024-12-29 15:33:37] pool-1-thread-6 - 250000 records committed, current elapsed time = 354.700 [2024-12-29 15:33:38] pool-1-thread-1 - 250000 records committed, current elapsed time = 355.241 [2024-12-29 15:33:38] pool-1-thread-9 - 250000 records committed, current elapsed time = 355.492 [2024-12-29 15:33:38] pool-1-thread-7 - 250000 records committed, current elapsed time = 355.672 [2024-12-29 15:33:40] pool-1-thread-4 - 250000 records committed, current elapsed time = 357.698 [2024-12-29 15:33:41] pool-1-thread-2 - 255000 records committed, current elapsed time = 358.489 [2024-12-29 15:33:41] pool-1-thread-3 - 250000 records committed, current elapsed time = 358.936 [2024-12-29 15:33:43] pool-1-thread-8 - 255000 records committed, current elapsed time = 360.493 [2024-12-29 15:33:43] pool-1-thread-5 - 255000 records committed, current elapsed time = 360.780 [2024-12-29 15:33:44] pool-1-thread-10 - 255000 records committed, current elapsed time = 361.097 [2024-12-29 15:33:45] pool-1-thread-1 - 255000 records committed, current elapsed time = 362.506 [2024-12-29 15:33:45] pool-1-thread-6 - 255000 records committed, current elapsed time = 362.696 [2024-12-29 15:33:45] pool-1-thread-9 - 255000 records committed, current elapsed time = 362.891 [2024-12-29 15:33:46] pool-1-thread-7 - 255000 records committed, current elapsed time = 363.408 [2024-12-29 15:33:47] pool-1-thread-4 - 255000 records committed, current elapsed time = 364.605 [2024-12-29 15:33:48] pool-1-thread-2 - 260000 records committed, current elapsed time = 365.531 [2024-12-29 15:33:49] pool-1-thread-3 - 255000 records committed, current elapsed time = 365.998 [2024-12-29 15:33:53] pool-1-thread-8 - 260000 records committed, current elapsed time = 370.073 [2024-12-29 15:33:53] pool-1-thread-10 - 260000 records committed, current elapsed time = 370.093 [2024-12-29 15:33:53] pool-1-thread-5 - 260000 records committed, current elapsed time = 370.139 [2024-12-29 15:33:54] pool-1-thread-6 - 260000 records committed, current elapsed time = 371.155 [2024-12-29 15:33:55] pool-1-thread-1 - 260000 records committed, current elapsed time = 372.010 [2024-12-29 15:33:55] pool-1-thread-9 - 260000 records committed, current elapsed time = 372.457 [2024-12-29 15:33:56] pool-1-thread-4 - 260000 records committed, current elapsed time = 373.343 [2024-12-29 15:33:57] pool-1-thread-7 - 260000 records committed, current elapsed time = 374.190 [2024-12-29 15:34:02] pool-1-thread-2 - 265000 records committed, current elapsed time = 379.479 [2024-12-29 15:34:03] pool-1-thread-3 - 260000 records committed, current elapsed time = 380.403 [2024-12-29 15:34:04] pool-1-thread-5 - 265000 records committed, current elapsed time = 381.409 [2024-12-29 15:34:04] pool-1-thread-8 - 265000 records committed, current elapsed time = 381.781 [2024-12-29 15:34:04] pool-1-thread-10 - 265000 records committed, current elapsed time = 381.871 [2024-12-29 15:34:05] pool-1-thread-6 - 265000 records committed, current elapsed time = 382.467 [2024-12-29 15:34:05] pool-1-thread-1 - 265000 records committed, current elapsed time = 382.698 [2024-12-29 15:34:05] pool-1-thread-9 - 265000 records committed, current elapsed time = 382.977 [2024-12-29 15:34:07] pool-1-thread-7 - 265000 records committed, current elapsed time = 384.251 [2024-12-29 15:34:07] pool-1-thread-4 - 265000 records committed, current elapsed time = 384.380 [2024-12-29 15:34:08] pool-1-thread-2 - 270000 records committed, current elapsed time = 385.030 [2024-12-29 15:34:09] pool-1-thread-3 - 265000 records committed, current elapsed time = 386.583 [2024-12-29 15:34:10] pool-1-thread-5 - 270000 records committed, current elapsed time = 387.471 [2024-12-29 15:34:10] pool-1-thread-10 - 270000 records committed, current elapsed time = 387.796 [2024-12-29 15:34:10] pool-1-thread-8 - 270000 records committed, current elapsed time = 387.803 [2024-12-29 15:34:11] pool-1-thread-6 - 270000 records committed, current elapsed time = 388.345 [2024-12-29 15:34:14] pool-1-thread-9 - 270000 records committed, current elapsed time = 391.108 [2024-12-29 15:34:14] pool-1-thread-1 - 270000 records committed, current elapsed time = 391.412 [2024-12-29 15:34:15] pool-1-thread-7 - 270000 records committed, current elapsed time = 392.138 [2024-12-29 15:34:15] pool-1-thread-4 - 270000 records committed, current elapsed time = 392.804 [2024-12-29 15:34:16] pool-1-thread-2 - 275000 records committed, current elapsed time = 393.938 [2024-12-29 15:34:18] pool-1-thread-3 - 270000 records committed, current elapsed time = 395.181 [2024-12-29 15:34:19] pool-1-thread-10 - 275000 records committed, current elapsed time = 396.662 [2024-12-29 15:34:20] pool-1-thread-5 - 275000 records committed, current elapsed time = 397.076 [2024-12-29 15:34:20] pool-1-thread-8 - 275000 records committed, current elapsed time = 397.291 [2024-12-29 15:34:21] pool-1-thread-6 - 275000 records committed, current elapsed time = 398.404 [2024-12-29 15:34:21] pool-1-thread-7 - 275000 records committed, current elapsed time = 398.833 [2024-12-29 15:34:22] pool-1-thread-1 - 275000 records committed, current elapsed time = 399.051 [2024-12-29 15:34:22] pool-1-thread-9 - 275000 records committed, current elapsed time = 399.065 [2024-12-29 15:34:22] pool-1-thread-4 - 275000 records committed, current elapsed time = 399.551 [2024-12-29 15:34:23] pool-1-thread-2 - 280000 records committed, current elapsed time = 400.431 [2024-12-29 15:34:24] pool-1-thread-3 - 275000 records committed, current elapsed time = 401.505 [2024-12-29 15:34:26] pool-1-thread-10 - 280000 records committed, current elapsed time = 403.226 [2024-12-29 15:34:26] pool-1-thread-5 - 280000 records committed, current elapsed time = 403.747 [2024-12-29 15:34:27] pool-1-thread-8 - 280000 records committed, current elapsed time = 404.302 [2024-12-29 15:34:27] pool-1-thread-6 - 280000 records committed, current elapsed time = 404.761 [2024-12-29 15:34:28] pool-1-thread-9 - 280000 records committed, current elapsed time = 405.309 [2024-12-29 15:34:28] pool-1-thread-7 - 280000 records committed, current elapsed time = 405.372 [2024-12-29 15:34:29] pool-1-thread-1 - 280000 records committed, current elapsed time = 406.390 [2024-12-29 15:34:29] pool-1-thread-4 - 280000 records committed, current elapsed time = 406.554 [2024-12-29 15:34:30] pool-1-thread-2 - 285000 records committed, current elapsed time = 406.999 [2024-12-29 15:34:30] pool-1-thread-3 - 280000 records committed, current elapsed time = 407.186 [2024-12-29 15:34:30] pool-1-thread-10 - 285000 records committed, current elapsed time = 407.707 [2024-12-29 15:34:32] pool-1-thread-5 - 285000 records committed, current elapsed time = 409.238 [2024-12-29 15:34:32] pool-1-thread-8 - 285000 records committed, current elapsed time = 409.716 [2024-12-29 15:34:34] pool-1-thread-6 - 285000 records committed, current elapsed time = 411.243 [2024-12-29 15:34:34] pool-1-thread-7 - 285000 records committed, current elapsed time = 411.567 [2024-12-29 15:34:34] pool-1-thread-9 - 285000 records committed, current elapsed time = 411.596 [2024-12-29 15:34:35] pool-1-thread-1 - 285000 records committed, current elapsed time = 412.484 [2024-12-29 15:34:35] pool-1-thread-4 - 285000 records committed, current elapsed time = 412.952 [2024-12-29 15:34:37] pool-1-thread-2 - 290000 records committed, current elapsed time = 414.091 [2024-12-29 15:34:37] pool-1-thread-3 - 285000 records committed, current elapsed time = 414.440 [2024-12-29 15:34:39] pool-1-thread-10 - 290000 records committed, current elapsed time = 416.635 [2024-12-29 15:34:40] pool-1-thread-8 - 290000 records committed, current elapsed time = 417.305 [2024-12-29 15:34:40] pool-1-thread-5 - 290000 records committed, current elapsed time = 417.353 [2024-12-29 15:34:41] pool-1-thread-6 - 290000 records committed, current elapsed time = 418.733 [2024-12-29 15:34:42] pool-1-thread-9 - 290000 records committed, current elapsed time = 419.014 [2024-12-29 15:34:42] pool-1-thread-7 - 290000 records committed, current elapsed time = 419.163 [2024-12-29 15:34:42] pool-1-thread-1 - 290000 records committed, current elapsed time = 419.229 [2024-12-29 15:34:42] pool-1-thread-4 - 290000 records committed, current elapsed time = 419.560 [2024-12-29 15:34:43] pool-1-thread-2 - 295000 records committed, current elapsed time = 420.736 [2024-12-29 15:34:45] pool-1-thread-3 - 290000 records committed, current elapsed time = 422.539 [2024-12-29 15:34:47] pool-1-thread-10 - 295000 records committed, current elapsed time = 424.828 [2024-12-29 15:34:48] pool-1-thread-8 - 295000 records committed, current elapsed time = 425.276 [2024-12-29 15:34:48] pool-1-thread-5 - 295000 records committed, current elapsed time = 425.700 [2024-12-29 15:34:49] pool-1-thread-6 - 295000 records committed, current elapsed time = 426.840 [2024-12-29 15:34:49] pool-1-thread-9 - 295000 records committed, current elapsed time = 426.903 [2024-12-29 15:34:50] pool-1-thread-7 - 295000 records committed, current elapsed time = 427.128 [2024-12-29 15:34:50] pool-1-thread-1 - 295000 records committed, current elapsed time = 427.241 [2024-12-29 15:34:50] pool-1-thread-4 - 295000 records committed, current elapsed time = 427.765 [2024-12-29 15:34:52] pool-1-thread-2 - 300000 records committed, current elapsed time = 429.616 [2024-12-29 15:34:52] pool-1-thread-3 - 295000 records committed, current elapsed time = 429.825 [2024-12-29 15:34:53] pool-1-thread-10 - 300000 records committed, current elapsed time = 430.541 [2024-12-29 15:34:53] pool-1-thread-8 - 300000 records committed, current elapsed time = 430.766 [2024-12-29 15:34:54] pool-1-thread-5 - 300000 records committed, current elapsed time = 431.968 [2024-12-29 15:34:58] pool-1-thread-9 - 300000 records committed, current elapsed time = 435.182 [2024-12-29 15:34:58] pool-1-thread-6 - 300000 records committed, current elapsed time = 435.200 [2024-12-29 15:34:58] pool-1-thread-7 - 300000 records committed, current elapsed time = 435.658 [2024-12-29 15:34:58] pool-1-thread-1 - 300000 records committed, current elapsed time = 435.827 [2024-12-29 15:35:00] pool-1-thread-4 - 300000 records committed, current elapsed time = 437.208 [2024-12-29 15:35:02] pool-1-thread-2 - 305000 records committed, current elapsed time = 438.984 [2024-12-29 15:35:02] pool-1-thread-3 - 300000 records committed, current elapsed time = 439.011 [2024-12-29 15:35:03] pool-1-thread-10 - 305000 records committed, current elapsed time = 440.589 [2024-12-29 15:35:03] pool-1-thread-8 - 305000 records committed, current elapsed time = 440.909 [2024-12-29 15:35:04] pool-1-thread-5 - 305000 records committed, current elapsed time = 441.103 [2024-12-29 15:35:08] pool-1-thread-6 - 305000 records committed, current elapsed time = 445.125 [2024-12-29 15:35:11] pool-1-thread-9 - 305000 records committed, current elapsed time = 448.730 [2024-12-29 15:35:12] pool-1-thread-7 - 305000 records committed, current elapsed time = 449.108 [2024-12-29 15:35:12] pool-1-thread-1 - 305000 records committed, current elapsed time = 449.243 [2024-12-29 15:35:13] pool-1-thread-4 - 305000 records committed, current elapsed time = 450.187 [2024-12-29 15:35:14] pool-1-thread-2 - 310000 records committed, current elapsed time = 451.017 [2024-12-29 15:35:16] pool-1-thread-3 - 305000 records committed, current elapsed time = 453.661 [2024-12-29 15:35:19] pool-1-thread-10 - 310000 records committed, current elapsed time = 456.004 [2024-12-29 15:35:19] pool-1-thread-8 - 310000 records committed, current elapsed time = 456.289 [2024-12-29 15:35:20] pool-1-thread-5 - 310000 records committed, current elapsed time = 457.016 [2024-12-29 15:35:22] pool-1-thread-6 - 310000 records committed, current elapsed time = 459.583 [2024-12-29 15:35:23] pool-1-thread-9 - 310000 records committed, current elapsed time = 460.967 [2024-12-29 15:35:24] pool-1-thread-1 - 310000 records committed, current elapsed time = 461.033 [2024-12-29 15:35:24] pool-1-thread-7 - 310000 records committed, current elapsed time = 461.334 [2024-12-29 15:35:25] pool-1-thread-4 - 310000 records committed, current elapsed time = 462.229 [2024-12-29 15:35:26] pool-1-thread-2 - 315000 records committed, current elapsed time = 463.659 [2024-12-29 15:35:27] pool-1-thread-3 - 310000 records committed, current elapsed time = 464.241 [2024-12-29 15:35:28] pool-1-thread-10 - 315000 records committed, current elapsed time = 465.773 [2024-12-29 15:35:29] pool-1-thread-8 - 315000 records committed, current elapsed time = 466.159 [2024-12-29 15:35:29] pool-1-thread-5 - 315000 records committed, current elapsed time = 466.285 [2024-12-29 15:35:29] pool-1-thread-9 - 315000 records committed, current elapsed time = 466.696 [2024-12-29 15:35:29] pool-1-thread-6 - 315000 records committed, current elapsed time = 466.802 [2024-12-29 15:35:31] pool-1-thread-1 - 315000 records committed, current elapsed time = 468.410 [2024-12-29 15:35:31] pool-1-thread-7 - 315000 records committed, current elapsed time = 468.481 [2024-12-29 15:35:32] pool-1-thread-4 - 315000 records committed, current elapsed time = 469.181 [2024-12-29 15:35:32] pool-1-thread-2 - 320000 records committed, current elapsed time = 469.398 [2024-12-29 15:35:32] pool-1-thread-3 - 315000 records committed, current elapsed time = 469.674 [2024-12-29 15:35:32] pool-1-thread-10 - 320000 records committed, current elapsed time = 469.941 [2024-12-29 15:35:34] pool-1-thread-5 - 320000 records committed, current elapsed time = 471.435 [2024-12-29 15:35:34] pool-1-thread-8 - 320000 records committed, current elapsed time = 471.774 [2024-12-29 15:35:35] pool-1-thread-9 - 320000 records committed, current elapsed time = 472.410 [2024-12-29 15:35:36] pool-1-thread-7 - 320000 records committed, current elapsed time = 473.713 [2024-12-29 15:35:37] pool-1-thread-6 - 320000 records committed, current elapsed time = 474.444 [2024-12-29 15:35:37] pool-1-thread-1 - 320000 records committed, current elapsed time = 474.455 [2024-12-29 15:35:39] pool-1-thread-4 - 320000 records committed, current elapsed time = 476.135 [2024-12-29 15:35:39] pool-1-thread-2 - 325000 records committed, current elapsed time = 476.409 [2024-12-29 15:35:39] pool-1-thread-10 - 325000 records committed, current elapsed time = 476.761 [2024-12-29 15:35:39] pool-1-thread-3 - 320000 records committed, current elapsed time = 476.763 [2024-12-29 15:35:41] pool-1-thread-8 - 325000 records committed, current elapsed time = 478.031 [2024-12-29 15:35:41] pool-1-thread-5 - 325000 records committed, current elapsed time = 478.132 [2024-12-29 15:35:41] pool-1-thread-9 - 325000 records committed, current elapsed time = 478.529 [2024-12-29 15:35:42] pool-1-thread-7 - 325000 records committed, current elapsed time = 479.107 [2024-12-29 15:35:43] pool-1-thread-1 - 325000 records committed, current elapsed time = 480.126 [2024-12-29 15:35:43] pool-1-thread-6 - 325000 records committed, current elapsed time = 480.680 [2024-12-29 15:35:49] pool-1-thread-4 - 325000 records committed, current elapsed time = 486.073 [2024-12-29 15:35:50] pool-1-thread-2 - 330000 records committed, current elapsed time = 487.418 [2024-12-29 15:35:51] pool-1-thread-3 - 325000 records committed, current elapsed time = 488.218 [2024-12-29 15:35:51] pool-1-thread-10 - 330000 records committed, current elapsed time = 488.495 [2024-12-29 15:35:52] pool-1-thread-5 - 330000 records committed, current elapsed time = 489.879 [2024-12-29 15:35:53] pool-1-thread-8 - 330000 records committed, current elapsed time = 490.310 [2024-12-29 15:35:53] pool-1-thread-9 - 330000 records committed, current elapsed time = 490.889 [2024-12-29 15:35:54] pool-1-thread-7 - 330000 records committed, current elapsed time = 491.366 [2024-12-29 15:35:54] pool-1-thread-1 - 330000 records committed, current elapsed time = 491.742 [2024-12-29 15:35:54] pool-1-thread-6 - 330000 records committed, current elapsed time = 491.923 [2024-12-29 15:35:58] pool-1-thread-4 - 330000 records committed, current elapsed time = 495.256 [2024-12-29 15:35:58] pool-1-thread-2 - 335000 records committed, current elapsed time = 495.971 [2024-12-29 15:35:59] pool-1-thread-10 - 335000 records committed, current elapsed time = 496.118 [2024-12-29 15:35:59] pool-1-thread-3 - 330000 records committed, current elapsed time = 496.287 [2024-12-29 15:35:59] pool-1-thread-8 - 335000 records committed, current elapsed time = 496.648 [2024-12-29 15:35:59] pool-1-thread-5 - 335000 records committed, current elapsed time = 496.920 [2024-12-29 15:36:01] pool-1-thread-9 - 335000 records committed, current elapsed time = 498.828 [2024-12-29 15:36:02] pool-1-thread-7 - 335000 records committed, current elapsed time = 499.114 [2024-12-29 15:36:02] pool-1-thread-1 - 335000 records committed, current elapsed time = 499.332 [2024-12-29 15:36:02] pool-1-thread-6 - 335000 records committed, current elapsed time = 499.404 [2024-12-29 15:36:04] pool-1-thread-4 - 335000 records committed, current elapsed time = 501.027 [2024-12-29 15:36:05] pool-1-thread-10 - 340000 records committed, current elapsed time = 502.166 [2024-12-29 15:36:05] pool-1-thread-2 - 340000 records committed, current elapsed time = 502.836 [2024-12-29 15:36:07] pool-1-thread-3 - 335000 records committed, current elapsed time = 504.015 [2024-12-29 15:36:07] pool-1-thread-5 - 340000 records committed, current elapsed time = 504.370 [2024-12-29 15:36:07] pool-1-thread-8 - 340000 records committed, current elapsed time = 504.423 [2024-12-29 15:36:07] pool-1-thread-9 - 340000 records committed, current elapsed time = 504.855 [2024-12-29 15:36:08] pool-1-thread-7 - 340000 records committed, current elapsed time = 505.112 [2024-12-29 15:36:08] pool-1-thread-1 - 340000 records committed, current elapsed time = 505.292 [2024-12-29 15:36:10] pool-1-thread-6 - 340000 records committed, current elapsed time = 507.013 [2024-12-29 15:36:12] pool-1-thread-4 - 340000 records committed, current elapsed time = 509.572 [2024-12-29 15:36:13] pool-1-thread-10 - 345000 records committed, current elapsed time = 510.675 [2024-12-29 15:36:14] pool-1-thread-2 - 345000 records committed, current elapsed time = 511.286 [2024-12-29 15:36:16] pool-1-thread-3 - 340000 records committed, current elapsed time = 513.012 [2024-12-29 15:36:17] pool-1-thread-8 - 345000 records committed, current elapsed time = 514.794 [2024-12-29 15:36:18] pool-1-thread-5 - 345000 records committed, current elapsed time = 515.163 [2024-12-29 15:36:19] pool-1-thread-9 - 345000 records committed, current elapsed time = 516.101 [2024-12-29 15:36:21] pool-1-thread-7 - 345000 records committed, current elapsed time = 518.393 [2024-12-29 15:36:22] pool-1-thread-6 - 345000 records committed, current elapsed time = 519.195 [2024-12-29 15:36:22] pool-1-thread-1 - 345000 records committed, current elapsed time = 519.596 [2024-12-29 15:36:24] pool-1-thread-4 - 345000 records committed, current elapsed time = 521.044 [2024-12-29 15:36:25] pool-1-thread-10 - 350000 records committed, current elapsed time = 522.534 [2024-12-29 15:36:32] pool-1-thread-2 - 350000 records committed, current elapsed time = 529.944 [2024-12-29 15:36:34] pool-1-thread-3 - 345000 records committed, current elapsed time = 531.012 [2024-12-29 15:36:35] pool-1-thread-8 - 350000 records committed, current elapsed time = 532.426 [2024-12-29 15:36:36] pool-1-thread-5 - 350000 records committed, current elapsed time = 533.415 [2024-12-29 15:36:36] pool-1-thread-9 - 350000 records committed, current elapsed time = 533.881 [2024-12-29 15:36:39] pool-1-thread-7 - 350000 records committed, current elapsed time = 536.412 [2024-12-29 15:36:39] pool-1-thread-1 - 350000 records committed, current elapsed time = 536.596 [2024-12-29 15:36:39] pool-1-thread-6 - 350000 records committed, current elapsed time = 536.883 [2024-12-29 15:36:42] pool-1-thread-4 - 350000 records committed, current elapsed time = 539.081 [2024-12-29 15:36:45] pool-1-thread-10 - 355000 records committed, current elapsed time = 542.564 [2024-12-29 15:36:46] pool-1-thread-2 - 355000 records committed, current elapsed time = 543.322 [2024-12-29 15:36:47] pool-1-thread-3 - 350000 records committed, current elapsed time = 544.260 [2024-12-29 15:37:05] pool-1-thread-8 - 355000 records committed, current elapsed time = 562.403 [2024-12-29 15:37:09] pool-1-thread-9 - 355000 records committed, current elapsed time = 566.726 [2024-12-29 15:37:10] pool-1-thread-5 - 355000 records committed, current elapsed time = 567.423 [2024-12-29 15:37:11] pool-1-thread-7 - 355000 records committed, current elapsed time = 568.358 [2024-12-29 15:37:13] pool-1-thread-1 - 355000 records committed, current elapsed time = 570.404 [2024-12-29 15:37:13] pool-1-thread-6 - 355000 records committed, current elapsed time = 570.612 [2024-12-29 15:37:14] pool-1-thread-4 - 355000 records committed, current elapsed time = 571.087 [2024-12-29 15:37:15] pool-1-thread-10 - 360000 records committed, current elapsed time = 572.217 [2024-12-29 15:37:18] pool-1-thread-2 - 360000 records committed, current elapsed time = 575.074 [2024-12-29 15:37:22] pool-1-thread-3 - 355000 records committed, current elapsed time = 579.436 [2024-12-29 15:37:24] pool-1-thread-8 - 360000 records committed, current elapsed time = 581.643 [2024-12-29 15:37:24] pool-1-thread-5 - 360000 records committed, current elapsed time = 581.879 [2024-12-29 15:37:25] pool-1-thread-9 - 360000 records committed, current elapsed time = 582.455 [2024-12-29 15:37:25] pool-1-thread-7 - 360000 records committed, current elapsed time = 582.842 [2024-12-29 15:37:26] pool-1-thread-1 - 360000 records committed, current elapsed time = 583.397 [2024-12-29 15:37:27] pool-1-thread-6 - 360000 records committed, current elapsed time = 584.325 [2024-12-29 15:37:27] pool-1-thread-4 - 360000 records committed, current elapsed time = 584.495 [2024-12-29 15:37:27] pool-1-thread-10 - 365000 records committed, current elapsed time = 584.760 [2024-12-29 15:37:28] pool-1-thread-2 - 365000 records committed, current elapsed time = 585.112 [2024-12-29 15:37:29] pool-1-thread-3 - 360000 records committed, current elapsed time = 586.069 [2024-12-29 15:37:30] pool-1-thread-8 - 365000 records committed, current elapsed time = 587.221 [2024-12-29 15:37:30] pool-1-thread-5 - 365000 records committed, current elapsed time = 587.416 [2024-12-29 15:37:30] pool-1-thread-9 - 365000 records committed, current elapsed time = 587.826 [2024-12-29 15:37:32] pool-1-thread-7 - 365000 records committed, current elapsed time = 588.993 [2024-12-29 15:37:32] pool-1-thread-1 - 365000 records committed, current elapsed time = 589.338 [2024-12-29 15:37:32] pool-1-thread-6 - 365000 records committed, current elapsed time = 589.728 [2024-12-29 15:37:33] pool-1-thread-4 - 365000 records committed, current elapsed time = 590.427 [2024-12-29 15:37:35] pool-1-thread-10 - 370000 records committed, current elapsed time = 592.322 [2024-12-29 15:37:35] pool-1-thread-2 - 370000 records committed, current elapsed time = 592.932 [2024-12-29 15:37:37] pool-1-thread-3 - 365000 records committed, current elapsed time = 594.484 [2024-12-29 15:37:38] pool-1-thread-8 - 370000 records committed, current elapsed time = 595.172 [2024-12-29 15:37:38] pool-1-thread-5 - 370000 records committed, current elapsed time = 595.646 [2024-12-29 15:37:38] pool-1-thread-9 - 370000 records committed, current elapsed time = 595.972 [2024-12-29 15:37:39] pool-1-thread-7 - 370000 records committed, current elapsed time = 596.686 [2024-12-29 15:37:40] pool-1-thread-1 - 370000 records committed, current elapsed time = 597.311 [2024-12-29 15:37:40] pool-1-thread-6 - 370000 records committed, current elapsed time = 597.530 [2024-12-29 15:37:40] pool-1-thread-4 - 370000 records committed, current elapsed time = 597.775 [2024-12-29 15:37:41] pool-1-thread-10 - 375000 records committed, current elapsed time = 598.260 [2024-12-29 15:37:41] pool-1-thread-2 - 375000 records committed, current elapsed time = 598.970 [2024-12-29 15:37:45] pool-1-thread-3 - 370000 records committed, current elapsed time = 602.747 [2024-12-29 15:37:48] pool-1-thread-8 - 375000 records committed, current elapsed time = 605.957 [2024-12-29 15:37:49] pool-1-thread-5 - 375000 records committed, current elapsed time = 606.286 [2024-12-29 15:37:51] pool-1-thread-9 - 375000 records committed, current elapsed time = 608.580 [2024-12-29 15:37:51] pool-1-thread-7 - 375000 records committed, current elapsed time = 608.778 [2024-12-29 15:37:53] pool-1-thread-4 - 375000 records committed, current elapsed time = 610.956 [2024-12-29 15:37:54] pool-1-thread-1 - 375000 records committed, current elapsed time = 611.045 [2024-12-29 15:37:54] pool-1-thread-6 - 375000 records committed, current elapsed time = 611.701 [2024-12-29 15:37:57] pool-1-thread-10 - 380000 records committed, current elapsed time = 614.462 [2024-12-29 15:37:58] pool-1-thread-2 - 380000 records committed, current elapsed time = 615.811 [2024-12-29 15:38:00] pool-1-thread-3 - 375000 records committed, current elapsed time = 617.694 [2024-12-29 15:38:01] pool-1-thread-5 - 380000 records committed, current elapsed time = 618.488 [2024-12-29 15:38:02] pool-1-thread-8 - 380000 records committed, current elapsed time = 619.326 [2024-12-29 15:38:05] pool-1-thread-7 - 380000 records committed, current elapsed time = 622.036 [2024-12-29 15:38:05] pool-1-thread-9 - 380000 records committed, current elapsed time = 622.303 [2024-12-29 15:38:05] pool-1-thread-4 - 380000 records committed, current elapsed time = 622.877 [2024-12-29 15:38:06] pool-1-thread-1 - 380000 records committed, current elapsed time = 623.669 [2024-12-29 15:38:07] pool-1-thread-6 - 380000 records committed, current elapsed time = 624.341 [2024-12-29 15:38:08] pool-1-thread-10 - 385000 records committed, current elapsed time = 625.955 [2024-12-29 15:38:10] pool-1-thread-2 - 385000 records committed, current elapsed time = 626.989 [2024-12-29 15:38:11] pool-1-thread-3 - 380000 records committed, current elapsed time = 628.364 [2024-12-29 15:38:12] pool-1-thread-5 - 385000 records committed, current elapsed time = 629.622 [2024-12-29 15:38:13] pool-1-thread-8 - 385000 records committed, current elapsed time = 630.896 [2024-12-29 15:38:14] pool-1-thread-7 - 385000 records committed, current elapsed time = 631.922 [2024-12-29 15:38:16] pool-1-thread-9 - 385000 records committed, current elapsed time = 633.225 [2024-12-29 15:38:17] pool-1-thread-4 - 385000 records committed, current elapsed time = 634.535 [2024-12-29 15:38:17] pool-1-thread-1 - 385000 records committed, current elapsed time = 634.606 [2024-12-29 15:38:17] pool-1-thread-6 - 385000 records committed, current elapsed time = 634.839 [2024-12-29 15:38:18] pool-1-thread-10 - 390000 records committed, current elapsed time = 635.156 [2024-12-29 15:38:18] pool-1-thread-2 - 390000 records committed, current elapsed time = 635.748 [2024-12-29 15:38:20] pool-1-thread-3 - 385000 records committed, current elapsed time = 637.737 [2024-12-29 15:38:21] pool-1-thread-5 - 390000 records committed, current elapsed time = 638.271 [2024-12-29 15:38:21] pool-1-thread-8 - 390000 records committed, current elapsed time = 638.580 [2024-12-29 15:38:21] pool-1-thread-7 - 390000 records committed, current elapsed time = 638.590 [2024-12-29 15:38:24] pool-1-thread-9 - 390000 records committed, current elapsed time = 641.224 [2024-12-29 15:38:24] pool-1-thread-1 - 390000 records committed, current elapsed time = 641.601 [2024-12-29 15:38:25] pool-1-thread-4 - 390000 records committed, current elapsed time = 642.350 [2024-12-29 15:38:30] pool-1-thread-6 - 390000 records committed, current elapsed time = 647.863 [2024-12-29 15:38:31] pool-1-thread-2 - 395000 records committed, current elapsed time = 648.620 [2024-12-29 15:38:31] pool-1-thread-10 - 395000 records committed, current elapsed time = 648.845 [2024-12-29 15:38:33] pool-1-thread-3 - 390000 records committed, current elapsed time = 650.755 [2024-12-29 15:38:34] pool-1-thread-5 - 395000 records committed, current elapsed time = 651.216 [2024-12-29 15:38:34] pool-1-thread-8 - 395000 records committed, current elapsed time = 651.452 [2024-12-29 15:38:34] pool-1-thread-7 - 395000 records committed, current elapsed time = 651.692 [2024-12-29 15:38:36] pool-1-thread-9 - 395000 records committed, current elapsed time = 653.466 [2024-12-29 15:38:37] pool-1-thread-1 - 395000 records committed, current elapsed time = 654.770 [2024-12-29 15:38:38] pool-1-thread-4 - 395000 records committed, current elapsed time = 655.637 [2024-12-29 15:38:39] pool-1-thread-6 - 395000 records committed, current elapsed time = 656.268 [2024-12-29 15:38:41] pool-1-thread-3 - 395000 records committed, current elapsed time = 658.453 [2024-12-29 15:38:41] pool-1-thread-2 - 400000 records committed, current elapsed time = 658.634 [2024-12-29 15:38:41] pool-1-thread-10 - 400000 records committed, current elapsed time = 658.786 [2024-12-29 15:38:43] pool-1-thread-5 - 400000 records committed, current elapsed time = 660.002 [2024-12-29 15:38:43] pool-1-thread-8 - 400000 records committed, current elapsed time = 660.591 [2024-12-29 15:38:44] pool-1-thread-7 - 400000 records committed, current elapsed time = 661.660 [2024-12-29 15:38:47] pool-1-thread-9 - 400000 records committed, current elapsed time = 664.246 [2024-12-29 15:38:47] pool-1-thread-1 - 400000 records committed, current elapsed time = 664.303 [2024-12-29 15:38:48] pool-1-thread-4 - 400000 records committed, current elapsed time = 665.702 [2024-12-29 15:38:49] pool-1-thread-6 - 400000 records committed, current elapsed time = 666.402 [2024-12-29 15:38:50] pool-1-thread-3 - 400000 records committed, current elapsed time = 667.805 [2024-12-29 15:38:51] pool-1-thread-2 - 405000 records committed, current elapsed time = 668.162 [2024-12-29 15:38:51] pool-1-thread-10 - 405000 records committed, current elapsed time = 668.713 [2024-12-29 15:38:55] pool-1-thread-5 - 405000 records committed, current elapsed time = 672.823 [2024-12-29 15:38:56] pool-1-thread-8 - 405000 records committed, current elapsed time = 673.633 [2024-12-29 15:38:57] pool-1-thread-7 - 405000 records committed, current elapsed time = 674.600 [2024-12-29 15:39:00] pool-1-thread-9 - 405000 records committed, current elapsed time = 677.077 [2024-12-29 15:39:00] pool-1-thread-1 - 405000 records committed, current elapsed time = 677.090 [2024-12-29 15:39:02] pool-1-thread-4 - 405000 records committed, current elapsed time = 679.207 [2024-12-29 15:39:04] pool-1-thread-3 - 405000 records committed, current elapsed time = 681.898 [2024-12-29 15:39:05] pool-1-thread-6 - 405000 records committed, current elapsed time = 682.161 [2024-12-29 15:39:05] pool-1-thread-2 - 410000 records committed, current elapsed time = 682.405 [2024-12-29 15:39:08] pool-1-thread-10 - 410000 records committed, current elapsed time = 685.246 [2024-12-29 15:39:11] pool-1-thread-8 - 410000 records committed, current elapsed time = 688.299 [2024-12-29 15:39:12] pool-1-thread-7 - 410000 records committed, current elapsed time = 688.988 [2024-12-29 15:39:12] pool-1-thread-5 - 410000 records committed, current elapsed time = 689.298 [2024-12-29 15:39:14] pool-1-thread-1 - 410000 records committed, current elapsed time = 691.208 [2024-12-29 15:39:14] pool-1-thread-9 - 410000 records committed, current elapsed time = 691.629 [2024-12-29 15:39:16] pool-1-thread-6 - 410000 records committed, current elapsed time = 693.640 [2024-12-29 15:39:16] pool-1-thread-4 - 410000 records committed, current elapsed time = 693.727 [2024-12-29 15:39:18] pool-1-thread-2 - 415000 records committed, current elapsed time = 695.178 [2024-12-29 15:39:18] pool-1-thread-3 - 410000 records committed, current elapsed time = 695.329 [2024-12-29 15:39:18] pool-1-thread-10 - 415000 records committed, current elapsed time = 695.600 [2024-12-29 15:39:19] pool-1-thread-8 - 415000 records committed, current elapsed time = 696.438 [2024-12-29 15:39:19] pool-1-thread-5 - 415000 records committed, current elapsed time = 696.456 [2024-12-29 15:39:19] pool-1-thread-7 - 415000 records committed, current elapsed time = 696.649 [2024-12-29 15:39:21] pool-1-thread-1 - 415000 records committed, current elapsed time = 698.496 [2024-12-29 15:39:22] pool-1-thread-9 - 415000 records committed, current elapsed time = 699.362 [2024-12-29 15:39:25] pool-1-thread-4 - 415000 records committed, current elapsed time = 701.995 [2024-12-29 15:39:25] pool-1-thread-6 - 415000 records committed, current elapsed time = 702.629 [2024-12-29 15:39:27] pool-1-thread-2 - 420000 records committed, current elapsed time = 704.808 [2024-12-29 15:39:27] pool-1-thread-3 - 415000 records committed, current elapsed time = 704.835 [2024-12-29 15:39:28] pool-1-thread-10 - 420000 records committed, current elapsed time = 705.686 [2024-12-29 15:39:30] pool-1-thread-8 - 420000 records committed, current elapsed time = 707.798 [2024-12-29 15:39:31] pool-1-thread-5 - 420000 records committed, current elapsed time = 708.556 [2024-12-29 15:39:32] pool-1-thread-7 - 420000 records committed, current elapsed time = 709.193 [2024-12-29 15:39:32] pool-1-thread-1 - 420000 records committed, current elapsed time = 709.898 [2024-12-29 15:39:34] pool-1-thread-9 - 420000 records committed, current elapsed time = 711.635 [2024-12-29 15:39:35] pool-1-thread-4 - 420000 records committed, current elapsed time = 712.006 [2024-12-29 15:39:37] pool-1-thread-6 - 420000 records committed, current elapsed time = 714.157 [2024-12-29 15:39:38] pool-1-thread-3 - 420000 records committed, current elapsed time = 715.524 [2024-12-29 15:39:38] pool-1-thread-2 - 425000 records committed, current elapsed time = 715.713 [2024-12-29 15:39:39] pool-1-thread-10 - 425000 records committed, current elapsed time = 716.625 [2024-12-29 15:39:43] pool-1-thread-8 - 425000 records committed, current elapsed time = 720.459 [2024-12-29 15:39:44] pool-1-thread-5 - 425000 records committed, current elapsed time = 721.454 [2024-12-29 15:39:45] pool-1-thread-7 - 425000 records committed, current elapsed time = 722.087 [2024-12-29 15:39:47] pool-1-thread-1 - 425000 records committed, current elapsed time = 724.643 [2024-12-29 15:39:48] pool-1-thread-4 - 425000 records committed, current elapsed time = 725.764 [2024-12-29 15:39:48] pool-1-thread-9 - 425000 records committed, current elapsed time = 725.781 [2024-12-29 15:39:49] pool-1-thread-6 - 425000 records committed, current elapsed time = 726.585 [2024-12-29 15:39:50] pool-1-thread-2 - 430000 records committed, current elapsed time = 727.303 [2024-12-29 15:39:50] pool-1-thread-3 - 425000 records committed, current elapsed time = 727.647 [2024-12-29 15:39:52] pool-1-thread-10 - 430000 records committed, current elapsed time = 729.016 [2024-12-29 15:39:55] pool-1-thread-8 - 430000 records committed, current elapsed time = 732.433 [2024-12-29 15:39:56] pool-1-thread-5 - 430000 records committed, current elapsed time = 733.172 [2024-12-29 15:39:56] pool-1-thread-7 - 430000 records committed, current elapsed time = 733.588 [2024-12-29 15:39:57] pool-1-thread-1 - 430000 records committed, current elapsed time = 734.966 [2024-12-29 15:39:58] pool-1-thread-4 - 430000 records committed, current elapsed time = 735.662 [2024-12-29 15:39:58] pool-1-thread-9 - 430000 records committed, current elapsed time = 735.857 [2024-12-29 15:40:00] pool-1-thread-2 - 435000 records committed, current elapsed time = 737.764 [2024-12-29 15:40:00] pool-1-thread-6 - 430000 records committed, current elapsed time = 737.878 [2024-12-29 15:40:02] pool-1-thread-3 - 430000 records committed, current elapsed time = 739.269 [2024-12-29 15:40:03] pool-1-thread-10 - 435000 records committed, current elapsed time = 740.631 [2024-12-29 15:40:10] pool-1-thread-8 - 435000 records committed, current elapsed time = 747.101 [2024-12-29 15:40:16] pool-1-thread-7 - 435000 records committed, current elapsed time = 753.128 [2024-12-29 15:40:17] pool-1-thread-5 - 435000 records committed, current elapsed time = 754.633 [2024-12-29 15:40:18] pool-1-thread-1 - 435000 records committed, current elapsed time = 755.213 [2024-12-29 15:40:18] pool-1-thread-4 - 435000 records committed, current elapsed time = 755.232 [2024-12-29 15:40:18] pool-1-thread-2 - 440000 records committed, current elapsed time = 755.493 [2024-12-29 15:40:19] pool-1-thread-10 - 440000 records committed, current elapsed time = 756.711 [2024-12-29 15:40:19] pool-1-thread-9 - 435000 records committed, current elapsed time = 756.735 [2024-12-29 15:40:20] pool-1-thread-6 - 435000 records committed, current elapsed time = 757.437 [2024-12-29 15:40:22] pool-1-thread-3 - 435000 records committed, current elapsed time = 759.240 [2024-12-29 15:40:27] pool-1-thread-8 - 440000 records committed, current elapsed time = 764.670 [2024-12-29 15:40:28] pool-1-thread-7 - 440000 records committed, current elapsed time = 765.504 [2024-12-29 15:40:30] pool-1-thread-1 - 440000 records committed, current elapsed time = 766.987 [2024-12-29 15:40:30] pool-1-thread-5 - 440000 records committed, current elapsed time = 767.310 [2024-12-29 15:40:30] pool-1-thread-4 - 440000 records committed, current elapsed time = 767.340 [2024-12-29 15:40:32] pool-1-thread-2 - 445000 records committed, current elapsed time = 769.227 [2024-12-29 15:40:32] pool-1-thread-9 - 440000 records committed, current elapsed time = 769.673 [2024-12-29 15:40:32] pool-1-thread-10 - 445000 records committed, current elapsed time = 769.752 [2024-12-29 15:40:33] pool-1-thread-6 - 440000 records committed, current elapsed time = 770.122 [2024-12-29 15:40:35] pool-1-thread-3 - 440000 records committed, current elapsed time = 772.282 [2024-12-29 15:40:37] pool-1-thread-8 - 445000 records committed, current elapsed time = 774.786 [2024-12-29 15:40:39] pool-1-thread-7 - 445000 records committed, current elapsed time = 776.436 [2024-12-29 15:40:41] pool-1-thread-1 - 445000 records committed, current elapsed time = 778.315 [2024-12-29 15:40:41] pool-1-thread-5 - 445000 records committed, current elapsed time = 778.373 [2024-12-29 15:40:41] pool-1-thread-4 - 445000 records committed, current elapsed time = 778.607 [2024-12-29 15:40:41] pool-1-thread-2 - 450000 records committed, current elapsed time = 778.654 [2024-12-29 15:40:43] pool-1-thread-9 - 445000 records committed, current elapsed time = 780.513 [2024-12-29 15:40:43] pool-1-thread-10 - 450000 records committed, current elapsed time = 780.634 [2024-12-29 15:40:43] pool-1-thread-6 - 445000 records committed, current elapsed time = 780.780 [2024-12-29 15:40:43] pool-1-thread-3 - 445000 records committed, current elapsed time = 780.978 [2024-12-29 15:40:46] pool-1-thread-8 - 450000 records committed, current elapsed time = 782.987 [2024-12-29 15:40:46] pool-1-thread-7 - 450000 records committed, current elapsed time = 783.714 [2024-12-29 15:40:47] pool-1-thread-5 - 450000 records committed, current elapsed time = 784.121 [2024-12-29 15:40:47] pool-1-thread-1 - 450000 records committed, current elapsed time = 784.130 [2024-12-29 15:40:47] pool-1-thread-4 - 450000 records committed, current elapsed time = 784.171 [2024-12-29 15:40:47] pool-1-thread-2 - 455000 records committed, current elapsed time = 784.445 [2024-12-29 15:40:48] pool-1-thread-9 - 450000 records committed, current elapsed time = 785.855 [2024-12-29 15:40:49] pool-1-thread-10 - 455000 records committed, current elapsed time = 785.981 [2024-12-29 15:40:49] pool-1-thread-6 - 450000 records committed, current elapsed time = 786.015 [2024-12-29 15:40:49] pool-1-thread-3 - 450000 records committed, current elapsed time = 786.631 [2024-12-29 15:40:52] pool-1-thread-8 - 455000 records committed, current elapsed time = 789.751 [2024-12-29 15:40:55] pool-1-thread-7 - 455000 records committed, current elapsed time = 792.468 [2024-12-29 15:40:56] pool-1-thread-5 - 455000 records committed, current elapsed time = 793.502 [2024-12-29 15:40:56] pool-1-thread-4 - 455000 records committed, current elapsed time = 793.770 [2024-12-29 15:40:57] pool-1-thread-1 - 455000 records committed, current elapsed time = 794.099 [2024-12-29 15:40:57] pool-1-thread-2 - 460000 records committed, current elapsed time = 794.141 [2024-12-29 15:40:58] pool-1-thread-9 - 455000 records committed, current elapsed time = 795.263 [2024-12-29 15:40:58] pool-1-thread-10 - 460000 records committed, current elapsed time = 795.686 [2024-12-29 15:40:58] pool-1-thread-6 - 455000 records committed, current elapsed time = 795.713 [2024-12-29 15:40:59] pool-1-thread-3 - 455000 records committed, current elapsed time = 796.466 [2024-12-29 15:41:01] pool-1-thread-8 - 460000 records committed, current elapsed time = 798.435 [2024-12-29 15:41:02] pool-1-thread-5 - 460000 records committed, current elapsed time = 799.918 [2024-12-29 15:41:03] pool-1-thread-7 - 460000 records committed, current elapsed time = 800.578 [2024-12-29 15:41:04] pool-1-thread-4 - 460000 records committed, current elapsed time = 801.303 [2024-12-29 15:41:05] pool-1-thread-1 - 460000 records committed, current elapsed time = 802.009 [2024-12-29 15:41:05] pool-1-thread-2 - 465000 records committed, current elapsed time = 802.237 [2024-12-29 15:41:06] pool-1-thread-9 - 460000 records committed, current elapsed time = 803.314 [2024-12-29 15:41:08] pool-1-thread-6 - 460000 records committed, current elapsed time = 805.116 [2024-12-29 15:41:08] pool-1-thread-10 - 465000 records committed, current elapsed time = 805.162 [2024-12-29 15:41:09] pool-1-thread-3 - 460000 records committed, current elapsed time = 806.380 [2024-12-29 15:41:14] pool-1-thread-8 - 465000 records committed, current elapsed time = 811.182 [2024-12-29 15:41:16] pool-1-thread-5 - 465000 records committed, current elapsed time = 813.462 [2024-12-29 15:41:16] pool-1-thread-4 - 465000 records committed, current elapsed time = 813.727 [2024-12-29 15:41:17] pool-1-thread-7 - 465000 records committed, current elapsed time = 814.099 [2024-12-29 15:41:18] pool-1-thread-9 - 465000 records committed, current elapsed time = 815.895 [2024-12-29 15:41:19] pool-1-thread-1 - 465000 records committed, current elapsed time = 816.136 [2024-12-29 15:41:19] pool-1-thread-2 - 470000 records committed, current elapsed time = 816.147 [2024-12-29 15:41:19] pool-1-thread-6 - 465000 records committed, current elapsed time = 816.284 [2024-12-29 15:41:20] pool-1-thread-10 - 470000 records committed, current elapsed time = 817.909 [2024-12-29 15:41:21] pool-1-thread-3 - 465000 records committed, current elapsed time = 818.007 [2024-12-29 15:41:21] pool-1-thread-8 - 470000 records committed, current elapsed time = 818.782 [2024-12-29 15:41:23] pool-1-thread-5 - 470000 records committed, current elapsed time = 820.171 [2024-12-29 15:41:23] pool-1-thread-4 - 470000 records committed, current elapsed time = 820.646 [2024-12-29 15:41:24] pool-1-thread-7 - 470000 records committed, current elapsed time = 821.196 [2024-12-29 15:41:26] pool-1-thread-1 - 470000 records committed, current elapsed time = 823.013 [2024-12-29 15:41:26] pool-1-thread-9 - 470000 records committed, current elapsed time = 823.146 [2024-12-29 15:41:26] pool-1-thread-2 - 475000 records committed, current elapsed time = 823.161 [2024-12-29 15:41:27] pool-1-thread-6 - 470000 records committed, current elapsed time = 824.115 [2024-12-29 15:41:29] pool-1-thread-10 - 475000 records committed, current elapsed time = 826.200 [2024-12-29 15:41:30] pool-1-thread-3 - 470000 records committed, current elapsed time = 827.458 [2024-12-29 15:41:34] pool-1-thread-8 - 475000 records committed, current elapsed time = 831.513 [2024-12-29 15:41:36] pool-1-thread-5 - 475000 records committed, current elapsed time = 833.217 [2024-12-29 15:41:37] pool-1-thread-4 - 475000 records committed, current elapsed time = 834.840 [2024-12-29 15:41:38] pool-1-thread-7 - 475000 records committed, current elapsed time = 835.201 [2024-12-29 15:41:40] pool-1-thread-1 - 475000 records committed, current elapsed time = 837.839 [2024-12-29 15:41:40] pool-1-thread-2 - 480000 records committed, current elapsed time = 837.930 [2024-12-29 15:41:40] pool-1-thread-9 - 475000 records committed, current elapsed time = 837.962 [2024-12-29 15:41:42] pool-1-thread-6 - 475000 records committed, current elapsed time = 839.562 [2024-12-29 15:41:49] pool-1-thread-10 - 480000 records committed, current elapsed time = 846.149 [2024-12-29 15:41:49] pool-1-thread-3 - 475000 records committed, current elapsed time = 846.587 [2024-12-29 15:41:51] pool-1-thread-8 - 480000 records committed, current elapsed time = 848.725 [2024-12-29 15:41:52] pool-1-thread-5 - 480000 records committed, current elapsed time = 849.945 [2024-12-29 15:41:53] pool-1-thread-4 - 480000 records committed, current elapsed time = 850.527 [2024-12-29 15:41:54] pool-1-thread-7 - 480000 records committed, current elapsed time = 851.338 [2024-12-29 15:41:54] pool-1-thread-1 - 480000 records committed, current elapsed time = 851.948 [2024-12-29 15:41:55] pool-1-thread-2 - 485000 records committed, current elapsed time = 852.032 [2024-12-29 15:41:55] pool-1-thread-9 - 480000 records committed, current elapsed time = 852.219 [2024-12-29 15:41:56] pool-1-thread-6 - 480000 records committed, current elapsed time = 853.577 [2024-12-29 15:41:58] pool-1-thread-10 - 485000 records committed, current elapsed time = 855.032 [2024-12-29 15:41:58] pool-1-thread-3 - 480000 records committed, current elapsed time = 855.097 [2024-12-29 15:42:01] pool-1-thread-8 - 485000 records committed, current elapsed time = 858.532 [2024-12-29 15:42:02] pool-1-thread-5 - 485000 records committed, current elapsed time = 859.744 [2024-12-29 15:42:05] pool-1-thread-4 - 485000 records committed, current elapsed time = 862.692 [2024-12-29 15:42:05] pool-1-thread-7 - 485000 records committed, current elapsed time = 862.746 [2024-12-29 15:42:08] pool-1-thread-1 - 485000 records committed, current elapsed time = 865.194 [2024-12-29 15:42:08] pool-1-thread-2 - 490000 records committed, current elapsed time = 865.206 [2024-12-29 15:42:08] pool-1-thread-9 - 485000 records committed, current elapsed time = 865.870 [2024-12-29 15:42:10] pool-1-thread-6 - 485000 records committed, current elapsed time = 867.543 [2024-12-29 15:42:13] pool-1-thread-3 - 485000 records committed, current elapsed time = 870.569 [2024-12-29 15:42:13] pool-1-thread-10 - 490000 records committed, current elapsed time = 870.705 [2024-12-29 15:42:16] pool-1-thread-8 - 490000 records committed, current elapsed time = 873.525 [2024-12-29 15:42:19] pool-1-thread-5 - 490000 records committed, current elapsed time = 876.562 [2024-12-29 15:42:22] pool-1-thread-4 - 490000 records committed, current elapsed time = 879.542 [2024-12-29 15:42:22] pool-1-thread-7 - 490000 records committed, current elapsed time = 879.760 [2024-12-29 15:42:24] pool-1-thread-1 - 490000 records committed, current elapsed time = 881.082 [2024-12-29 15:42:24] pool-1-thread-9 - 490000 records committed, current elapsed time = 881.888 [2024-12-29 15:42:25] pool-1-thread-2 - 495000 records committed, current elapsed time = 882.122 [2024-12-29 15:42:26] pool-1-thread-6 - 490000 records committed, current elapsed time = 883.086 [2024-12-29 15:42:28] pool-1-thread-10 - 495000 records committed, current elapsed time = 885.678 [2024-12-29 15:42:29] pool-1-thread-3 - 490000 records committed, current elapsed time = 886.112 [2024-12-29 15:42:31] pool-1-thread-8 - 495000 records committed, current elapsed time = 888.733 [2024-12-29 15:42:32] pool-1-thread-5 - 495000 records committed, current elapsed time = 889.649 [2024-12-29 15:42:35] pool-1-thread-7 - 495000 records committed, current elapsed time = 892.371 [2024-12-29 15:42:35] pool-1-thread-4 - 495000 records committed, current elapsed time = 892.974 [2024-12-29 15:42:38] pool-1-thread-1 - 495000 records committed, current elapsed time = 895.023 [2024-12-29 15:42:38] pool-1-thread-9 - 495000 records committed, current elapsed time = 895.184 [2024-12-29 15:42:39] pool-1-thread-2 - 500000 records committed, current elapsed time = 896.323 [2024-12-29 15:42:40] pool-1-thread-6 - 495000 records committed, current elapsed time = 897.353 [2024-12-29 15:42:40] pool-1-thread-10 - 500000 records committed, current elapsed time = 897.667 [2024-12-29 15:42:41] pool-1-thread-3 - 495000 records committed, current elapsed time = 898.635 [2024-12-29 15:42:45] pool-1-thread-8 - 500000 records committed, current elapsed time = 902.327 [2024-12-29 15:42:46] pool-1-thread-5 - 500000 records committed, current elapsed time = 903.893 [2024-12-29 15:42:50] pool-1-thread-7 - 500000 records committed, current elapsed time = 907.564 [2024-12-29 15:42:52] pool-1-thread-4 - 500000 records committed, current elapsed time = 909.118 [2024-12-29 15:42:52] pool-1-thread-9 - 500000 records committed, current elapsed time = 909.524 [2024-12-29 15:42:52] pool-1-thread-1 - 500000 records committed, current elapsed time = 909.855 [2024-12-29 15:42:53] pool-1-thread-6 - 500000 records committed, current elapsed time = 910.618 [2024-12-29 15:42:54] pool-1-thread-3 - 500000 records committed, current elapsed time = 911.955 [2024-12-29 15:42:54] org.littlewings.tidb.UuidBinRunner.main() - UuidBinRunner: 5000000 records inserted, total elapsed time = 912.700
uuid関数でUUIDを生成してuuid_to_bin関数でバイナリー変換後にデータを登録した時の実行ログ(swap_flagあり)
[INFO] --- exec:3.5.0:java (default-cli) @ uuid-hotspot-test --- [2024-12-29 15:46:36] pool-1-thread-1 - 5000 records committed, current elapsed time = 4.210 [2024-12-29 15:46:36] pool-1-thread-8 - 5000 records committed, current elapsed time = 4.228 [2024-12-29 15:46:36] pool-1-thread-7 - 5000 records committed, current elapsed time = 4.231 [2024-12-29 15:46:36] pool-1-thread-10 - 5000 records committed, current elapsed time = 4.256 [2024-12-29 15:46:36] pool-1-thread-3 - 5000 records committed, current elapsed time = 4.270 [2024-12-29 15:46:36] pool-1-thread-4 - 5000 records committed, current elapsed time = 4.269 [2024-12-29 15:46:36] pool-1-thread-2 - 5000 records committed, current elapsed time = 4.273 [2024-12-29 15:46:36] pool-1-thread-9 - 5000 records committed, current elapsed time = 4.319 [2024-12-29 15:46:36] pool-1-thread-5 - 5000 records committed, current elapsed time = 4.333 [2024-12-29 15:46:36] pool-1-thread-6 - 5000 records committed, current elapsed time = 4.504 [2024-12-29 15:46:39] pool-1-thread-1 - 10000 records committed, current elapsed time = 7.974 [2024-12-29 15:46:40] pool-1-thread-10 - 10000 records committed, current elapsed time = 8.403 [2024-12-29 15:46:40] pool-1-thread-5 - 10000 records committed, current elapsed time = 8.431 [2024-12-29 15:46:40] pool-1-thread-3 - 10000 records committed, current elapsed time = 8.469 [2024-12-29 15:46:40] pool-1-thread-2 - 10000 records committed, current elapsed time = 8.480 [2024-12-29 15:46:40] pool-1-thread-4 - 10000 records committed, current elapsed time = 8.532 [2024-12-29 15:46:40] pool-1-thread-7 - 10000 records committed, current elapsed time = 8.589 [2024-12-29 15:46:40] pool-1-thread-9 - 10000 records committed, current elapsed time = 8.625 [2024-12-29 15:46:40] pool-1-thread-6 - 10000 records committed, current elapsed time = 8.663 [2024-12-29 15:46:40] pool-1-thread-8 - 10000 records committed, current elapsed time = 8.745 [2024-12-29 15:46:43] pool-1-thread-1 - 15000 records committed, current elapsed time = 11.209 [2024-12-29 15:46:43] pool-1-thread-10 - 15000 records committed, current elapsed time = 11.611 [2024-12-29 15:46:43] pool-1-thread-5 - 15000 records committed, current elapsed time = 11.686 [2024-12-29 15:46:43] pool-1-thread-2 - 15000 records committed, current elapsed time = 11.778 [2024-12-29 15:46:43] pool-1-thread-3 - 15000 records committed, current elapsed time = 11.808 [2024-12-29 15:46:43] pool-1-thread-4 - 15000 records committed, current elapsed time = 11.949 [2024-12-29 15:46:44] pool-1-thread-9 - 15000 records committed, current elapsed time = 12.049 [2024-12-29 15:46:44] pool-1-thread-6 - 15000 records committed, current elapsed time = 12.064 [2024-12-29 15:46:44] pool-1-thread-7 - 15000 records committed, current elapsed time = 12.250 [2024-12-29 15:46:44] pool-1-thread-8 - 15000 records committed, current elapsed time = 12.315 [2024-12-29 15:46:46] pool-1-thread-1 - 20000 records committed, current elapsed time = 14.850 [2024-12-29 15:46:47] pool-1-thread-10 - 20000 records committed, current elapsed time = 15.252 [2024-12-29 15:46:47] pool-1-thread-5 - 20000 records committed, current elapsed time = 15.279 [2024-12-29 15:46:47] pool-1-thread-4 - 20000 records committed, current elapsed time = 15.394 [2024-12-29 15:46:47] pool-1-thread-2 - 20000 records committed, current elapsed time = 15.535 [2024-12-29 15:46:47] pool-1-thread-6 - 20000 records committed, current elapsed time = 15.692 [2024-12-29 15:46:47] pool-1-thread-3 - 20000 records committed, current elapsed time = 15.710 [2024-12-29 15:46:47] pool-1-thread-9 - 20000 records committed, current elapsed time = 15.843 [2024-12-29 15:46:47] pool-1-thread-7 - 20000 records committed, current elapsed time = 15.896 [2024-12-29 15:46:48] pool-1-thread-8 - 20000 records committed, current elapsed time = 16.009 [2024-12-29 15:46:50] pool-1-thread-1 - 25000 records committed, current elapsed time = 18.571 [2024-12-29 15:46:50] pool-1-thread-10 - 25000 records committed, current elapsed time = 18.952 [2024-12-29 15:46:51] pool-1-thread-2 - 25000 records committed, current elapsed time = 19.058 [2024-12-29 15:46:51] pool-1-thread-4 - 25000 records committed, current elapsed time = 19.063 [2024-12-29 15:46:51] pool-1-thread-5 - 25000 records committed, current elapsed time = 19.225 [2024-12-29 15:46:51] pool-1-thread-6 - 25000 records committed, current elapsed time = 19.291 [2024-12-29 15:46:51] pool-1-thread-8 - 25000 records committed, current elapsed time = 19.586 [2024-12-29 15:46:51] pool-1-thread-9 - 25000 records committed, current elapsed time = 19.599 [2024-12-29 15:46:51] pool-1-thread-3 - 25000 records committed, current elapsed time = 19.607 [2024-12-29 15:46:51] pool-1-thread-7 - 25000 records committed, current elapsed time = 19.646 [2024-12-29 15:46:54] pool-1-thread-1 - 30000 records committed, current elapsed time = 22.139 [2024-12-29 15:46:54] pool-1-thread-10 - 30000 records committed, current elapsed time = 22.423 [2024-12-29 15:46:54] pool-1-thread-4 - 30000 records committed, current elapsed time = 22.843 [2024-12-29 15:46:54] pool-1-thread-5 - 30000 records committed, current elapsed time = 22.875 [2024-12-29 15:46:54] pool-1-thread-6 - 30000 records committed, current elapsed time = 22.906 [2024-12-29 15:46:54] pool-1-thread-2 - 30000 records committed, current elapsed time = 22.938 [2024-12-29 15:46:55] pool-1-thread-3 - 30000 records committed, current elapsed time = 23.245 [2024-12-29 15:46:55] pool-1-thread-9 - 30000 records committed, current elapsed time = 23.480 [2024-12-29 15:46:55] pool-1-thread-7 - 30000 records committed, current elapsed time = 23.508 [2024-12-29 15:46:55] pool-1-thread-8 - 30000 records committed, current elapsed time = 23.609 [2024-12-29 15:46:58] pool-1-thread-1 - 35000 records committed, current elapsed time = 26.422 [2024-12-29 15:46:58] pool-1-thread-10 - 35000 records committed, current elapsed time = 26.445 [2024-12-29 15:46:59] pool-1-thread-5 - 35000 records committed, current elapsed time = 27.015 [2024-12-29 15:46:59] pool-1-thread-4 - 35000 records committed, current elapsed time = 27.056 [2024-12-29 15:46:59] pool-1-thread-6 - 35000 records committed, current elapsed time = 27.282 [2024-12-29 15:46:59] pool-1-thread-2 - 35000 records committed, current elapsed time = 27.404 [2024-12-29 15:46:59] pool-1-thread-3 - 35000 records committed, current elapsed time = 27.823 [2024-12-29 15:46:59] pool-1-thread-9 - 35000 records committed, current elapsed time = 27.848 [2024-12-29 15:47:00] pool-1-thread-8 - 35000 records committed, current elapsed time = 28.169 [2024-12-29 15:47:00] pool-1-thread-7 - 35000 records committed, current elapsed time = 28.275 [2024-12-29 15:47:02] pool-1-thread-10 - 40000 records committed, current elapsed time = 30.403 [2024-12-29 15:47:02] pool-1-thread-5 - 40000 records committed, current elapsed time = 30.513 [2024-12-29 15:47:03] pool-1-thread-1 - 40000 records committed, current elapsed time = 31.081 [2024-12-29 15:47:03] pool-1-thread-4 - 40000 records committed, current elapsed time = 31.430 [2024-12-29 15:47:03] pool-1-thread-6 - 40000 records committed, current elapsed time = 31.731 [2024-12-29 15:47:03] pool-1-thread-2 - 40000 records committed, current elapsed time = 31.880 [2024-12-29 15:47:04] pool-1-thread-9 - 40000 records committed, current elapsed time = 32.148 [2024-12-29 15:47:04] pool-1-thread-3 - 40000 records committed, current elapsed time = 32.177 [2024-12-29 15:47:04] pool-1-thread-8 - 40000 records committed, current elapsed time = 32.652 [2024-12-29 15:47:04] pool-1-thread-7 - 40000 records committed, current elapsed time = 32.728 [2024-12-29 15:47:07] pool-1-thread-5 - 45000 records committed, current elapsed time = 35.498 [2024-12-29 15:47:07] pool-1-thread-10 - 45000 records committed, current elapsed time = 35.615 [2024-12-29 15:47:08] pool-1-thread-1 - 45000 records committed, current elapsed time = 36.440 [2024-12-29 15:47:08] pool-1-thread-4 - 45000 records committed, current elapsed time = 36.634 [2024-12-29 15:47:08] pool-1-thread-6 - 45000 records committed, current elapsed time = 36.973 [2024-12-29 15:47:09] pool-1-thread-2 - 45000 records committed, current elapsed time = 37.406 [2024-12-29 15:47:10] pool-1-thread-8 - 45000 records committed, current elapsed time = 38.114 [2024-12-29 15:47:10] pool-1-thread-9 - 45000 records committed, current elapsed time = 38.175 [2024-12-29 15:47:11] pool-1-thread-3 - 45000 records committed, current elapsed time = 39.891 [2024-12-29 15:47:12] pool-1-thread-7 - 45000 records committed, current elapsed time = 40.622 [2024-12-29 15:47:14] pool-1-thread-10 - 50000 records committed, current elapsed time = 42.778 [2024-12-29 15:47:14] pool-1-thread-5 - 50000 records committed, current elapsed time = 42.931 [2024-12-29 15:47:15] pool-1-thread-1 - 50000 records committed, current elapsed time = 43.321 [2024-12-29 15:47:15] pool-1-thread-2 - 50000 records committed, current elapsed time = 43.695 [2024-12-29 15:47:15] pool-1-thread-4 - 50000 records committed, current elapsed time = 43.698 [2024-12-29 15:47:15] pool-1-thread-6 - 50000 records committed, current elapsed time = 43.944 [2024-12-29 15:47:16] pool-1-thread-9 - 50000 records committed, current elapsed time = 44.728 [2024-12-29 15:47:16] pool-1-thread-8 - 50000 records committed, current elapsed time = 44.745 [2024-12-29 15:47:16] pool-1-thread-7 - 50000 records committed, current elapsed time = 44.964 [2024-12-29 15:47:17] pool-1-thread-3 - 50000 records committed, current elapsed time = 45.097 [2024-12-29 15:47:19] pool-1-thread-5 - 55000 records committed, current elapsed time = 47.355 [2024-12-29 15:47:19] pool-1-thread-10 - 55000 records committed, current elapsed time = 47.394 [2024-12-29 15:47:19] pool-1-thread-1 - 55000 records committed, current elapsed time = 47.728 [2024-12-29 15:47:19] pool-1-thread-2 - 55000 records committed, current elapsed time = 47.878 [2024-12-29 15:47:20] pool-1-thread-6 - 55000 records committed, current elapsed time = 48.812 [2024-12-29 15:47:21] pool-1-thread-4 - 55000 records committed, current elapsed time = 49.130 [2024-12-29 15:47:21] pool-1-thread-8 - 55000 records committed, current elapsed time = 49.850 [2024-12-29 15:47:22] pool-1-thread-7 - 55000 records committed, current elapsed time = 50.106 [2024-12-29 15:47:22] pool-1-thread-9 - 55000 records committed, current elapsed time = 50.197 [2024-12-29 15:47:22] pool-1-thread-3 - 55000 records committed, current elapsed time = 50.425 [2024-12-29 15:47:24] pool-1-thread-5 - 60000 records committed, current elapsed time = 52.400 [2024-12-29 15:47:24] pool-1-thread-10 - 60000 records committed, current elapsed time = 52.689 [2024-12-29 15:47:24] pool-1-thread-1 - 60000 records committed, current elapsed time = 52.827 [2024-12-29 15:47:25] pool-1-thread-2 - 60000 records committed, current elapsed time = 53.053 [2024-12-29 15:47:25] pool-1-thread-6 - 60000 records committed, current elapsed time = 53.079 [2024-12-29 15:47:25] pool-1-thread-4 - 60000 records committed, current elapsed time = 53.700 [2024-12-29 15:47:26] pool-1-thread-7 - 60000 records committed, current elapsed time = 54.486 [2024-12-29 15:47:26] pool-1-thread-8 - 60000 records committed, current elapsed time = 54.568 [2024-12-29 15:47:26] pool-1-thread-9 - 60000 records committed, current elapsed time = 54.829 [2024-12-29 15:47:27] pool-1-thread-3 - 60000 records committed, current elapsed time = 55.054 [2024-12-29 15:47:28] pool-1-thread-5 - 65000 records committed, current elapsed time = 56.548 [2024-12-29 15:47:29] pool-1-thread-10 - 65000 records committed, current elapsed time = 57.001 [2024-12-29 15:47:29] pool-1-thread-1 - 65000 records committed, current elapsed time = 57.392 [2024-12-29 15:47:30] pool-1-thread-6 - 65000 records committed, current elapsed time = 58.072 [2024-12-29 15:47:30] pool-1-thread-2 - 65000 records committed, current elapsed time = 58.292 [2024-12-29 15:47:30] pool-1-thread-4 - 65000 records committed, current elapsed time = 58.330 [2024-12-29 15:47:31] pool-1-thread-7 - 65000 records committed, current elapsed time = 59.547 [2024-12-29 15:47:31] pool-1-thread-8 - 65000 records committed, current elapsed time = 59.769 [2024-12-29 15:47:31] pool-1-thread-9 - 65000 records committed, current elapsed time = 59.887 [2024-12-29 15:47:32] pool-1-thread-3 - 65000 records committed, current elapsed time = 60.654 [2024-12-29 15:47:34] pool-1-thread-5 - 70000 records committed, current elapsed time = 62.215 [2024-12-29 15:47:34] pool-1-thread-10 - 70000 records committed, current elapsed time = 62.875 [2024-12-29 15:47:35] pool-1-thread-6 - 70000 records committed, current elapsed time = 63.016 [2024-12-29 15:47:35] pool-1-thread-1 - 70000 records committed, current elapsed time = 63.035 [2024-12-29 15:47:35] pool-1-thread-2 - 70000 records committed, current elapsed time = 63.273 [2024-12-29 15:47:35] pool-1-thread-4 - 70000 records committed, current elapsed time = 63.458 [2024-12-29 15:47:36] pool-1-thread-7 - 70000 records committed, current elapsed time = 64.332 [2024-12-29 15:47:37] pool-1-thread-9 - 70000 records committed, current elapsed time = 65.004 [2024-12-29 15:47:37] pool-1-thread-8 - 70000 records committed, current elapsed time = 65.024 [2024-12-29 15:47:37] pool-1-thread-3 - 70000 records committed, current elapsed time = 65.263 [2024-12-29 15:47:40] pool-1-thread-5 - 75000 records committed, current elapsed time = 68.257 [2024-12-29 15:47:40] pool-1-thread-6 - 75000 records committed, current elapsed time = 68.961 [2024-12-29 15:47:41] pool-1-thread-10 - 75000 records committed, current elapsed time = 69.803 [2024-12-29 15:47:42] pool-1-thread-1 - 75000 records committed, current elapsed time = 70.491 [2024-12-29 15:47:42] pool-1-thread-2 - 75000 records committed, current elapsed time = 70.505 [2024-12-29 15:47:43] pool-1-thread-4 - 75000 records committed, current elapsed time = 71.490 [2024-12-29 15:47:44] pool-1-thread-7 - 75000 records committed, current elapsed time = 72.545 [2024-12-29 15:47:45] pool-1-thread-8 - 75000 records committed, current elapsed time = 73.772 [2024-12-29 15:47:46] pool-1-thread-9 - 75000 records committed, current elapsed time = 74.641 [2024-12-29 15:47:46] pool-1-thread-3 - 75000 records committed, current elapsed time = 74.729 [2024-12-29 15:47:49] pool-1-thread-5 - 80000 records committed, current elapsed time = 77.820 [2024-12-29 15:47:50] pool-1-thread-6 - 80000 records committed, current elapsed time = 78.502 [2024-12-29 15:47:50] pool-1-thread-10 - 80000 records committed, current elapsed time = 78.608 [2024-12-29 15:47:52] pool-1-thread-4 - 80000 records committed, current elapsed time = 80.082 [2024-12-29 15:47:52] pool-1-thread-2 - 80000 records committed, current elapsed time = 80.393 [2024-12-29 15:47:52] pool-1-thread-1 - 80000 records committed, current elapsed time = 80.423 [2024-12-29 15:47:53] pool-1-thread-7 - 80000 records committed, current elapsed time = 81.048 [2024-12-29 15:47:54] pool-1-thread-3 - 80000 records committed, current elapsed time = 82.287 [2024-12-29 15:47:54] pool-1-thread-8 - 80000 records committed, current elapsed time = 82.725 [2024-12-29 15:47:54] pool-1-thread-9 - 80000 records committed, current elapsed time = 82.840 [2024-12-29 15:47:56] pool-1-thread-5 - 85000 records committed, current elapsed time = 84.903 [2024-12-29 15:47:57] pool-1-thread-6 - 85000 records committed, current elapsed time = 85.088 [2024-12-29 15:47:57] pool-1-thread-10 - 85000 records committed, current elapsed time = 85.203 [2024-12-29 15:47:57] pool-1-thread-2 - 85000 records committed, current elapsed time = 85.605 [2024-12-29 15:47:57] pool-1-thread-1 - 85000 records committed, current elapsed time = 85.622 [2024-12-29 15:47:57] pool-1-thread-4 - 85000 records committed, current elapsed time = 85.774 [2024-12-29 15:47:58] pool-1-thread-7 - 85000 records committed, current elapsed time = 86.072 [2024-12-29 15:47:58] pool-1-thread-3 - 85000 records committed, current elapsed time = 86.522 [2024-12-29 15:47:59] pool-1-thread-8 - 85000 records committed, current elapsed time = 87.688 [2024-12-29 15:48:00] pool-1-thread-9 - 85000 records committed, current elapsed time = 88.245 [2024-12-29 15:48:01] pool-1-thread-5 - 90000 records committed, current elapsed time = 89.554 [2024-12-29 15:48:02] pool-1-thread-6 - 90000 records committed, current elapsed time = 90.239 [2024-12-29 15:48:02] pool-1-thread-10 - 90000 records committed, current elapsed time = 90.973 [2024-12-29 15:48:06] pool-1-thread-4 - 90000 records committed, current elapsed time = 94.729 [2024-12-29 15:48:06] pool-1-thread-1 - 90000 records committed, current elapsed time = 94.739 [2024-12-29 15:48:06] pool-1-thread-2 - 90000 records committed, current elapsed time = 94.823 [2024-12-29 15:48:06] pool-1-thread-3 - 90000 records committed, current elapsed time = 94.910 [2024-12-29 15:48:07] pool-1-thread-7 - 90000 records committed, current elapsed time = 95.033 [2024-12-29 15:48:08] pool-1-thread-9 - 90000 records committed, current elapsed time = 96.341 [2024-12-29 15:48:08] pool-1-thread-8 - 90000 records committed, current elapsed time = 96.349 [2024-12-29 15:48:10] pool-1-thread-5 - 95000 records committed, current elapsed time = 98.306 [2024-12-29 15:48:11] pool-1-thread-6 - 95000 records committed, current elapsed time = 99.187 [2024-12-29 15:48:11] pool-1-thread-10 - 95000 records committed, current elapsed time = 99.251 [2024-12-29 15:48:11] pool-1-thread-1 - 95000 records committed, current elapsed time = 99.618 [2024-12-29 15:48:11] pool-1-thread-2 - 95000 records committed, current elapsed time = 99.849 [2024-12-29 15:48:11] pool-1-thread-3 - 95000 records committed, current elapsed time = 99.858 [2024-12-29 15:48:11] pool-1-thread-4 - 95000 records committed, current elapsed time = 99.878 [2024-12-29 15:48:12] pool-1-thread-7 - 95000 records committed, current elapsed time = 100.182 [2024-12-29 15:48:12] pool-1-thread-9 - 95000 records committed, current elapsed time = 100.927 [2024-12-29 15:48:14] pool-1-thread-8 - 95000 records committed, current elapsed time = 102.153 [2024-12-29 15:48:16] pool-1-thread-5 - 100000 records committed, current elapsed time = 104.212 [2024-12-29 15:48:16] pool-1-thread-6 - 100000 records committed, current elapsed time = 104.915 [2024-12-29 15:48:17] pool-1-thread-10 - 100000 records committed, current elapsed time = 105.361 [2024-12-29 15:48:17] pool-1-thread-1 - 100000 records committed, current elapsed time = 105.703 [2024-12-29 15:48:17] pool-1-thread-2 - 100000 records committed, current elapsed time = 105.753 [2024-12-29 15:48:17] pool-1-thread-7 - 100000 records committed, current elapsed time = 105.861 [2024-12-29 15:48:18] pool-1-thread-4 - 100000 records committed, current elapsed time = 106.149 [2024-12-29 15:48:18] pool-1-thread-3 - 100000 records committed, current elapsed time = 106.238 [2024-12-29 15:48:18] pool-1-thread-9 - 100000 records committed, current elapsed time = 106.634 [2024-12-29 15:48:18] pool-1-thread-8 - 100000 records committed, current elapsed time = 106.835 [2024-12-29 15:48:21] pool-1-thread-5 - 105000 records committed, current elapsed time = 109.782 [2024-12-29 15:48:22] pool-1-thread-6 - 105000 records committed, current elapsed time = 110.414 [2024-12-29 15:48:22] pool-1-thread-10 - 105000 records committed, current elapsed time = 110.674 [2024-12-29 15:48:23] pool-1-thread-7 - 105000 records committed, current elapsed time = 111.063 [2024-12-29 15:48:23] pool-1-thread-2 - 105000 records committed, current elapsed time = 111.069 [2024-12-29 15:48:23] pool-1-thread-1 - 105000 records committed, current elapsed time = 111.070 [2024-12-29 15:48:23] pool-1-thread-4 - 105000 records committed, current elapsed time = 111.118 [2024-12-29 15:48:23] pool-1-thread-3 - 105000 records committed, current elapsed time = 111.238 [2024-12-29 15:48:23] pool-1-thread-9 - 105000 records committed, current elapsed time = 111.520 [2024-12-29 15:48:23] pool-1-thread-8 - 105000 records committed, current elapsed time = 111.865 [2024-12-29 15:48:26] pool-1-thread-5 - 110000 records committed, current elapsed time = 114.450 [2024-12-29 15:48:27] pool-1-thread-6 - 110000 records committed, current elapsed time = 115.217 [2024-12-29 15:48:27] pool-1-thread-10 - 110000 records committed, current elapsed time = 115.241 [2024-12-29 15:48:27] pool-1-thread-7 - 110000 records committed, current elapsed time = 115.968 [2024-12-29 15:48:28] pool-1-thread-3 - 110000 records committed, current elapsed time = 116.073 [2024-12-29 15:48:28] pool-1-thread-1 - 110000 records committed, current elapsed time = 116.142 [2024-12-29 15:48:28] pool-1-thread-2 - 110000 records committed, current elapsed time = 116.419 [2024-12-29 15:48:28] pool-1-thread-4 - 110000 records committed, current elapsed time = 116.430 [2024-12-29 15:48:28] pool-1-thread-9 - 110000 records committed, current elapsed time = 116.696 [2024-12-29 15:48:30] pool-1-thread-8 - 110000 records committed, current elapsed time = 118.398 [2024-12-29 15:48:32] pool-1-thread-5 - 115000 records committed, current elapsed time = 120.611 [2024-12-29 15:48:33] pool-1-thread-10 - 115000 records committed, current elapsed time = 121.879 [2024-12-29 15:48:33] pool-1-thread-7 - 115000 records committed, current elapsed time = 121.910 [2024-12-29 15:48:34] pool-1-thread-6 - 115000 records committed, current elapsed time = 122.190 [2024-12-29 15:48:35] pool-1-thread-3 - 115000 records committed, current elapsed time = 123.411 [2024-12-29 15:48:35] pool-1-thread-1 - 115000 records committed, current elapsed time = 123.471 [2024-12-29 15:48:35] pool-1-thread-9 - 115000 records committed, current elapsed time = 123.577 [2024-12-29 15:48:35] pool-1-thread-4 - 115000 records committed, current elapsed time = 123.630 [2024-12-29 15:48:35] pool-1-thread-2 - 115000 records committed, current elapsed time = 123.720 [2024-12-29 15:48:36] pool-1-thread-8 - 115000 records committed, current elapsed time = 124.197 [2024-12-29 15:48:38] pool-1-thread-5 - 120000 records committed, current elapsed time = 126.362 [2024-12-29 15:48:39] pool-1-thread-7 - 120000 records committed, current elapsed time = 127.535 [2024-12-29 15:48:39] pool-1-thread-6 - 120000 records committed, current elapsed time = 127.944 [2024-12-29 15:48:40] pool-1-thread-10 - 120000 records committed, current elapsed time = 128.018 [2024-12-29 15:48:41] pool-1-thread-1 - 120000 records committed, current elapsed time = 129.136 [2024-12-29 15:48:41] pool-1-thread-4 - 120000 records committed, current elapsed time = 129.143 [2024-12-29 15:48:41] pool-1-thread-3 - 120000 records committed, current elapsed time = 129.149 [2024-12-29 15:48:41] pool-1-thread-9 - 120000 records committed, current elapsed time = 129.391 [2024-12-29 15:48:41] pool-1-thread-2 - 120000 records committed, current elapsed time = 129.978 [2024-12-29 15:48:43] pool-1-thread-8 - 120000 records committed, current elapsed time = 131.754 [2024-12-29 15:48:44] pool-1-thread-5 - 125000 records committed, current elapsed time = 132.978 [2024-12-29 15:48:45] pool-1-thread-6 - 125000 records committed, current elapsed time = 133.712 [2024-12-29 15:48:46] pool-1-thread-7 - 125000 records committed, current elapsed time = 134.737 [2024-12-29 15:48:46] pool-1-thread-10 - 125000 records committed, current elapsed time = 134.905 [2024-12-29 15:48:47] pool-1-thread-4 - 125000 records committed, current elapsed time = 135.347 [2024-12-29 15:48:47] pool-1-thread-3 - 125000 records committed, current elapsed time = 135.380 [2024-12-29 15:48:47] pool-1-thread-1 - 125000 records committed, current elapsed time = 135.657 [2024-12-29 15:48:47] pool-1-thread-9 - 125000 records committed, current elapsed time = 135.771 [2024-12-29 15:48:48] pool-1-thread-2 - 125000 records committed, current elapsed time = 136.750 [2024-12-29 15:48:49] pool-1-thread-8 - 125000 records committed, current elapsed time = 137.249 [2024-12-29 15:48:50] pool-1-thread-5 - 130000 records committed, current elapsed time = 138.645 [2024-12-29 15:48:51] pool-1-thread-6 - 130000 records committed, current elapsed time = 139.285 [2024-12-29 15:48:52] pool-1-thread-7 - 130000 records committed, current elapsed time = 140.057 [2024-12-29 15:48:52] pool-1-thread-10 - 130000 records committed, current elapsed time = 140.917 [2024-12-29 15:48:53] pool-1-thread-1 - 130000 records committed, current elapsed time = 141.738 [2024-12-29 15:48:54] pool-1-thread-9 - 130000 records committed, current elapsed time = 141.998 [2024-12-29 15:48:54] pool-1-thread-3 - 130000 records committed, current elapsed time = 142.007 [2024-12-29 15:48:54] pool-1-thread-4 - 130000 records committed, current elapsed time = 142.030 [2024-12-29 15:48:54] pool-1-thread-2 - 130000 records committed, current elapsed time = 142.046 [2024-12-29 15:48:55] pool-1-thread-8 - 130000 records committed, current elapsed time = 143.522 [2024-12-29 15:49:01] pool-1-thread-5 - 135000 records committed, current elapsed time = 149.377 [2024-12-29 15:49:01] pool-1-thread-6 - 135000 records committed, current elapsed time = 149.452 [2024-12-29 15:49:02] pool-1-thread-10 - 135000 records committed, current elapsed time = 150.560 [2024-12-29 15:49:02] pool-1-thread-7 - 135000 records committed, current elapsed time = 150.638 [2024-12-29 15:49:04] pool-1-thread-1 - 135000 records committed, current elapsed time = 152.045 [2024-12-29 15:49:04] pool-1-thread-3 - 135000 records committed, current elapsed time = 152.225 [2024-12-29 15:49:04] pool-1-thread-4 - 135000 records committed, current elapsed time = 152.237 [2024-12-29 15:49:04] pool-1-thread-9 - 135000 records committed, current elapsed time = 152.378 [2024-12-29 15:49:04] pool-1-thread-2 - 135000 records committed, current elapsed time = 152.451 [2024-12-29 15:49:04] pool-1-thread-8 - 135000 records committed, current elapsed time = 152.819 [2024-12-29 15:49:07] pool-1-thread-5 - 140000 records committed, current elapsed time = 155.146 [2024-12-29 15:49:07] pool-1-thread-6 - 140000 records committed, current elapsed time = 155.173 [2024-12-29 15:49:07] pool-1-thread-10 - 140000 records committed, current elapsed time = 155.532 [2024-12-29 15:49:07] pool-1-thread-7 - 140000 records committed, current elapsed time = 155.894 [2024-12-29 15:49:09] pool-1-thread-1 - 140000 records committed, current elapsed time = 157.479 [2024-12-29 15:49:09] pool-1-thread-4 - 140000 records committed, current elapsed time = 157.565 [2024-12-29 15:49:09] pool-1-thread-3 - 140000 records committed, current elapsed time = 157.644 [2024-12-29 15:49:09] pool-1-thread-2 - 140000 records committed, current elapsed time = 157.946 [2024-12-29 15:49:10] pool-1-thread-9 - 140000 records committed, current elapsed time = 158.283 [2024-12-29 15:49:11] pool-1-thread-8 - 140000 records committed, current elapsed time = 159.518 [2024-12-29 15:49:14] pool-1-thread-5 - 145000 records committed, current elapsed time = 162.186 [2024-12-29 15:49:14] pool-1-thread-6 - 145000 records committed, current elapsed time = 162.199 [2024-12-29 15:49:14] pool-1-thread-10 - 145000 records committed, current elapsed time = 162.420 [2024-12-29 15:49:14] pool-1-thread-7 - 145000 records committed, current elapsed time = 162.674 [2024-12-29 15:49:15] pool-1-thread-3 - 145000 records committed, current elapsed time = 163.869 [2024-12-29 15:49:16] pool-1-thread-1 - 145000 records committed, current elapsed time = 164.319 [2024-12-29 15:49:16] pool-1-thread-4 - 145000 records committed, current elapsed time = 164.662 [2024-12-29 15:49:16] pool-1-thread-2 - 145000 records committed, current elapsed time = 164.755 [2024-12-29 15:49:17] pool-1-thread-8 - 145000 records committed, current elapsed time = 165.251 [2024-12-29 15:49:17] pool-1-thread-9 - 145000 records committed, current elapsed time = 165.357 [2024-12-29 15:49:19] pool-1-thread-5 - 150000 records committed, current elapsed time = 167.477 [2024-12-29 15:49:19] pool-1-thread-6 - 150000 records committed, current elapsed time = 167.748 [2024-12-29 15:49:20] pool-1-thread-10 - 150000 records committed, current elapsed time = 168.057 [2024-12-29 15:49:20] pool-1-thread-7 - 150000 records committed, current elapsed time = 168.201 [2024-12-29 15:49:21] pool-1-thread-3 - 150000 records committed, current elapsed time = 169.211 [2024-12-29 15:49:21] pool-1-thread-1 - 150000 records committed, current elapsed time = 169.786 [2024-12-29 15:49:22] pool-1-thread-4 - 150000 records committed, current elapsed time = 170.285 [2024-12-29 15:49:22] pool-1-thread-2 - 150000 records committed, current elapsed time = 170.470 [2024-12-29 15:49:23] pool-1-thread-9 - 150000 records committed, current elapsed time = 171.963 [2024-12-29 15:49:24] pool-1-thread-8 - 150000 records committed, current elapsed time = 172.027 [2024-12-29 15:49:25] pool-1-thread-6 - 155000 records committed, current elapsed time = 173.164 [2024-12-29 15:49:26] pool-1-thread-5 - 155000 records committed, current elapsed time = 174.111 [2024-12-29 15:49:26] pool-1-thread-10 - 155000 records committed, current elapsed time = 174.217 [2024-12-29 15:49:26] pool-1-thread-7 - 155000 records committed, current elapsed time = 174.421 [2024-12-29 15:49:26] pool-1-thread-3 - 155000 records committed, current elapsed time = 174.797 [2024-12-29 15:49:26] pool-1-thread-1 - 155000 records committed, current elapsed time = 174.914 [2024-12-29 15:49:27] pool-1-thread-4 - 155000 records committed, current elapsed time = 175.955 [2024-12-29 15:49:28] pool-1-thread-2 - 155000 records committed, current elapsed time = 176.071 [2024-12-29 15:49:29] pool-1-thread-9 - 155000 records committed, current elapsed time = 176.990 [2024-12-29 15:49:29] pool-1-thread-8 - 155000 records committed, current elapsed time = 177.240 [2024-12-29 15:49:30] pool-1-thread-6 - 160000 records committed, current elapsed time = 178.650 [2024-12-29 15:49:31] pool-1-thread-5 - 160000 records committed, current elapsed time = 179.033 [2024-12-29 15:49:31] pool-1-thread-10 - 160000 records committed, current elapsed time = 179.406 [2024-12-29 15:49:31] pool-1-thread-7 - 160000 records committed, current elapsed time = 179.697 [2024-12-29 15:49:32] pool-1-thread-1 - 160000 records committed, current elapsed time = 180.227 [2024-12-29 15:49:33] pool-1-thread-4 - 160000 records committed, current elapsed time = 181.528 [2024-12-29 15:49:33] pool-1-thread-3 - 160000 records committed, current elapsed time = 181.630 [2024-12-29 15:49:34] pool-1-thread-2 - 160000 records committed, current elapsed time = 182.450 [2024-12-29 15:49:35] pool-1-thread-9 - 160000 records committed, current elapsed time = 183.908 [2024-12-29 15:49:35] pool-1-thread-8 - 160000 records committed, current elapsed time = 183.928 [2024-12-29 15:49:37] pool-1-thread-6 - 165000 records committed, current elapsed time = 185.200 [2024-12-29 15:49:37] pool-1-thread-5 - 165000 records committed, current elapsed time = 185.613 [2024-12-29 15:49:38] pool-1-thread-10 - 165000 records committed, current elapsed time = 186.594 [2024-12-29 15:49:38] pool-1-thread-7 - 165000 records committed, current elapsed time = 186.944 [2024-12-29 15:49:39] pool-1-thread-3 - 165000 records committed, current elapsed time = 187.317 [2024-12-29 15:49:39] pool-1-thread-4 - 165000 records committed, current elapsed time = 187.439 [2024-12-29 15:49:39] pool-1-thread-1 - 165000 records committed, current elapsed time = 187.459 [2024-12-29 15:49:40] pool-1-thread-2 - 165000 records committed, current elapsed time = 188.605 [2024-12-29 15:49:41] pool-1-thread-9 - 165000 records committed, current elapsed time = 189.592 [2024-12-29 15:49:41] pool-1-thread-8 - 165000 records committed, current elapsed time = 189.958 [2024-12-29 15:49:43] pool-1-thread-6 - 170000 records committed, current elapsed time = 191.587 [2024-12-29 15:49:43] pool-1-thread-5 - 170000 records committed, current elapsed time = 191.811 [2024-12-29 15:49:44] pool-1-thread-10 - 170000 records committed, current elapsed time = 192.323 [2024-12-29 15:49:44] pool-1-thread-7 - 170000 records committed, current elapsed time = 192.684 [2024-12-29 15:49:44] pool-1-thread-1 - 170000 records committed, current elapsed time = 192.946 [2024-12-29 15:49:45] pool-1-thread-3 - 170000 records committed, current elapsed time = 193.585 [2024-12-29 15:49:45] pool-1-thread-4 - 170000 records committed, current elapsed time = 193.911 [2024-12-29 15:49:46] pool-1-thread-2 - 170000 records committed, current elapsed time = 194.322 [2024-12-29 15:49:48] pool-1-thread-9 - 170000 records committed, current elapsed time = 196.442 [2024-12-29 15:49:49] pool-1-thread-8 - 170000 records committed, current elapsed time = 196.999 [2024-12-29 15:49:50] pool-1-thread-6 - 175000 records committed, current elapsed time = 198.587 [2024-12-29 15:49:50] pool-1-thread-5 - 175000 records committed, current elapsed time = 198.873 [2024-12-29 15:49:51] pool-1-thread-7 - 175000 records committed, current elapsed time = 199.391 [2024-12-29 15:49:51] pool-1-thread-10 - 175000 records committed, current elapsed time = 199.497 [2024-12-29 15:49:52] pool-1-thread-1 - 175000 records committed, current elapsed time = 200.673 [2024-12-29 15:49:53] pool-1-thread-3 - 175000 records committed, current elapsed time = 201.124 [2024-12-29 15:49:58] pool-1-thread-4 - 175000 records committed, current elapsed time = 206.350 [2024-12-29 15:49:58] pool-1-thread-2 - 175000 records committed, current elapsed time = 206.760 [2024-12-29 15:49:59] pool-1-thread-9 - 175000 records committed, current elapsed time = 207.738 [2024-12-29 15:50:00] pool-1-thread-8 - 175000 records committed, current elapsed time = 208.365 [2024-12-29 15:50:01] pool-1-thread-5 - 180000 records committed, current elapsed time = 209.292 [2024-12-29 15:50:01] pool-1-thread-6 - 180000 records committed, current elapsed time = 209.473 [2024-12-29 15:50:01] pool-1-thread-7 - 180000 records committed, current elapsed time = 209.926 [2024-12-29 15:50:01] pool-1-thread-10 - 180000 records committed, current elapsed time = 209.948 [2024-12-29 15:50:03] pool-1-thread-1 - 180000 records committed, current elapsed time = 211.315 [2024-12-29 15:50:03] pool-1-thread-3 - 180000 records committed, current elapsed time = 211.428 [2024-12-29 15:50:03] pool-1-thread-4 - 180000 records committed, current elapsed time = 211.681 [2024-12-29 15:50:03] pool-1-thread-2 - 180000 records committed, current elapsed time = 211.839 [2024-12-29 15:50:08] pool-1-thread-9 - 180000 records committed, current elapsed time = 216.121 [2024-12-29 15:50:09] pool-1-thread-8 - 180000 records committed, current elapsed time = 217.861 [2024-12-29 15:50:12] pool-1-thread-5 - 185000 records committed, current elapsed time = 220.943 [2024-12-29 15:50:12] pool-1-thread-6 - 185000 records committed, current elapsed time = 220.967 [2024-12-29 15:50:13] pool-1-thread-7 - 185000 records committed, current elapsed time = 221.352 [2024-12-29 15:50:13] pool-1-thread-10 - 185000 records committed, current elapsed time = 221.525 [2024-12-29 15:50:14] pool-1-thread-1 - 185000 records committed, current elapsed time = 222.180 [2024-12-29 15:50:14] pool-1-thread-4 - 185000 records committed, current elapsed time = 222.566 [2024-12-29 15:50:14] pool-1-thread-3 - 185000 records committed, current elapsed time = 222.630 [2024-12-29 15:50:15] pool-1-thread-2 - 185000 records committed, current elapsed time = 223.079 [2024-12-29 15:50:15] pool-1-thread-9 - 185000 records committed, current elapsed time = 223.535 [2024-12-29 15:50:17] pool-1-thread-8 - 185000 records committed, current elapsed time = 225.226 [2024-12-29 15:50:18] pool-1-thread-6 - 190000 records committed, current elapsed time = 226.819 [2024-12-29 15:50:18] pool-1-thread-5 - 190000 records committed, current elapsed time = 226.881 [2024-12-29 15:50:19] pool-1-thread-7 - 190000 records committed, current elapsed time = 227.107 [2024-12-29 15:50:19] pool-1-thread-10 - 190000 records committed, current elapsed time = 227.466 [2024-12-29 15:50:19] pool-1-thread-4 - 190000 records committed, current elapsed time = 227.668 [2024-12-29 15:50:19] pool-1-thread-1 - 190000 records committed, current elapsed time = 227.899 [2024-12-29 15:50:20] pool-1-thread-3 - 190000 records committed, current elapsed time = 228.247 [2024-12-29 15:50:21] pool-1-thread-2 - 190000 records committed, current elapsed time = 229.244 [2024-12-29 15:50:21] pool-1-thread-9 - 190000 records committed, current elapsed time = 229.422 [2024-12-29 15:50:22] pool-1-thread-8 - 190000 records committed, current elapsed time = 230.213 [2024-12-29 15:50:23] pool-1-thread-6 - 195000 records committed, current elapsed time = 231.855 [2024-12-29 15:50:24] pool-1-thread-5 - 195000 records committed, current elapsed time = 232.183 [2024-12-29 15:50:24] pool-1-thread-7 - 195000 records committed, current elapsed time = 232.731 [2024-12-29 15:50:26] pool-1-thread-4 - 195000 records committed, current elapsed time = 234.846 [2024-12-29 15:50:27] pool-1-thread-10 - 195000 records committed, current elapsed time = 235.017 [2024-12-29 15:50:27] pool-1-thread-1 - 195000 records committed, current elapsed time = 235.345 [2024-12-29 15:50:27] pool-1-thread-3 - 195000 records committed, current elapsed time = 235.815 [2024-12-29 15:50:28] pool-1-thread-2 - 195000 records committed, current elapsed time = 236.170 [2024-12-29 15:50:28] pool-1-thread-9 - 195000 records committed, current elapsed time = 236.285 [2024-12-29 15:50:29] pool-1-thread-8 - 195000 records committed, current elapsed time = 237.791 [2024-12-29 15:50:30] pool-1-thread-6 - 200000 records committed, current elapsed time = 238.823 [2024-12-29 15:50:31] pool-1-thread-5 - 200000 records committed, current elapsed time = 239.416 [2024-12-29 15:50:31] pool-1-thread-7 - 200000 records committed, current elapsed time = 239.905 [2024-12-29 15:50:32] pool-1-thread-4 - 200000 records committed, current elapsed time = 240.363 [2024-12-29 15:50:32] pool-1-thread-10 - 200000 records committed, current elapsed time = 240.662 [2024-12-29 15:50:34] pool-1-thread-1 - 200000 records committed, current elapsed time = 241.991 [2024-12-29 15:50:34] pool-1-thread-3 - 200000 records committed, current elapsed time = 242.073 [2024-12-29 15:50:34] pool-1-thread-2 - 200000 records committed, current elapsed time = 242.417 [2024-12-29 15:50:34] pool-1-thread-9 - 200000 records committed, current elapsed time = 242.901 [2024-12-29 15:50:35] pool-1-thread-8 - 200000 records committed, current elapsed time = 243.826 [2024-12-29 15:50:37] pool-1-thread-5 - 205000 records committed, current elapsed time = 245.474 [2024-12-29 15:50:37] pool-1-thread-6 - 205000 records committed, current elapsed time = 245.570 [2024-12-29 15:50:38] pool-1-thread-7 - 205000 records committed, current elapsed time = 246.940 [2024-12-29 15:50:39] pool-1-thread-4 - 205000 records committed, current elapsed time = 247.516 [2024-12-29 15:50:40] pool-1-thread-10 - 205000 records committed, current elapsed time = 248.035 [2024-12-29 15:50:40] pool-1-thread-1 - 205000 records committed, current elapsed time = 248.047 [2024-12-29 15:50:40] pool-1-thread-3 - 205000 records committed, current elapsed time = 248.421 [2024-12-29 15:50:41] pool-1-thread-2 - 205000 records committed, current elapsed time = 249.662 [2024-12-29 15:50:42] pool-1-thread-9 - 205000 records committed, current elapsed time = 250.007 [2024-12-29 15:50:42] pool-1-thread-8 - 205000 records committed, current elapsed time = 250.865 [2024-12-29 15:50:44] pool-1-thread-6 - 210000 records committed, current elapsed time = 252.285 [2024-12-29 15:50:44] pool-1-thread-5 - 210000 records committed, current elapsed time = 252.527 [2024-12-29 15:50:45] pool-1-thread-7 - 210000 records committed, current elapsed time = 253.762 [2024-12-29 15:50:46] pool-1-thread-4 - 210000 records committed, current elapsed time = 254.081 [2024-12-29 15:50:47] pool-1-thread-10 - 210000 records committed, current elapsed time = 255.185 [2024-12-29 15:50:47] pool-1-thread-1 - 210000 records committed, current elapsed time = 255.202 [2024-12-29 15:50:47] pool-1-thread-3 - 210000 records committed, current elapsed time = 255.550 [2024-12-29 15:50:47] pool-1-thread-2 - 210000 records committed, current elapsed time = 255.952 [2024-12-29 15:50:49] pool-1-thread-9 - 210000 records committed, current elapsed time = 257.548 [2024-12-29 15:50:50] pool-1-thread-8 - 210000 records committed, current elapsed time = 258.053 [2024-12-29 15:50:50] pool-1-thread-5 - 215000 records committed, current elapsed time = 258.828 [2024-12-29 15:50:50] pool-1-thread-6 - 215000 records committed, current elapsed time = 258.849 [2024-12-29 15:50:52] pool-1-thread-7 - 215000 records committed, current elapsed time = 260.232 [2024-12-29 15:50:52] pool-1-thread-4 - 215000 records committed, current elapsed time = 260.686 [2024-12-29 15:50:53] pool-1-thread-1 - 215000 records committed, current elapsed time = 261.098 [2024-12-29 15:50:53] pool-1-thread-10 - 215000 records committed, current elapsed time = 261.267 [2024-12-29 15:50:53] pool-1-thread-3 - 215000 records committed, current elapsed time = 261.324 [2024-12-29 15:50:53] pool-1-thread-2 - 215000 records committed, current elapsed time = 261.575 [2024-12-29 15:50:54] pool-1-thread-9 - 215000 records committed, current elapsed time = 262.908 [2024-12-29 15:50:55] pool-1-thread-8 - 215000 records committed, current elapsed time = 263.656 [2024-12-29 15:50:56] pool-1-thread-5 - 220000 records committed, current elapsed time = 264.530 [2024-12-29 15:50:57] pool-1-thread-6 - 220000 records committed, current elapsed time = 265.206 [2024-12-29 15:51:02] pool-1-thread-7 - 220000 records committed, current elapsed time = 270.424 [2024-12-29 15:51:03] pool-1-thread-4 - 220000 records committed, current elapsed time = 271.780 [2024-12-29 15:51:04] pool-1-thread-1 - 220000 records committed, current elapsed time = 272.220 [2024-12-29 15:51:04] pool-1-thread-10 - 220000 records committed, current elapsed time = 272.330 [2024-12-29 15:51:05] pool-1-thread-3 - 220000 records committed, current elapsed time = 273.134 [2024-12-29 15:51:05] pool-1-thread-2 - 220000 records committed, current elapsed time = 273.536 [2024-12-29 15:51:06] pool-1-thread-9 - 220000 records committed, current elapsed time = 274.182 [2024-12-29 15:51:06] pool-1-thread-8 - 220000 records committed, current elapsed time = 274.976 [2024-12-29 15:51:07] pool-1-thread-5 - 225000 records committed, current elapsed time = 275.558 [2024-12-29 15:51:07] pool-1-thread-6 - 225000 records committed, current elapsed time = 275.862 [2024-12-29 15:51:08] pool-1-thread-7 - 225000 records committed, current elapsed time = 276.503 [2024-12-29 15:51:10] pool-1-thread-4 - 225000 records committed, current elapsed time = 278.039 [2024-12-29 15:51:10] pool-1-thread-1 - 225000 records committed, current elapsed time = 278.562 [2024-12-29 15:51:10] pool-1-thread-10 - 225000 records committed, current elapsed time = 278.731 [2024-12-29 15:51:10] pool-1-thread-2 - 225000 records committed, current elapsed time = 278.897 [2024-12-29 15:51:11] pool-1-thread-3 - 225000 records committed, current elapsed time = 279.294 [2024-12-29 15:51:11] pool-1-thread-9 - 225000 records committed, current elapsed time = 279.603 [2024-12-29 15:51:13] pool-1-thread-8 - 225000 records committed, current elapsed time = 281.190 [2024-12-29 15:51:13] pool-1-thread-5 - 230000 records committed, current elapsed time = 281.814 [2024-12-29 15:51:13] pool-1-thread-6 - 230000 records committed, current elapsed time = 281.882 [2024-12-29 15:51:14] pool-1-thread-7 - 230000 records committed, current elapsed time = 282.342 [2024-12-29 15:51:14] pool-1-thread-4 - 230000 records committed, current elapsed time = 282.761 [2024-12-29 15:51:15] pool-1-thread-1 - 230000 records committed, current elapsed time = 283.891 [2024-12-29 15:51:16] pool-1-thread-2 - 230000 records committed, current elapsed time = 284.338 [2024-12-29 15:51:16] pool-1-thread-10 - 230000 records committed, current elapsed time = 284.404 [2024-12-29 15:51:17] pool-1-thread-3 - 230000 records committed, current elapsed time = 285.071 [2024-12-29 15:51:17] pool-1-thread-9 - 230000 records committed, current elapsed time = 285.293 [2024-12-29 15:51:19] pool-1-thread-8 - 230000 records committed, current elapsed time = 287.110 [2024-12-29 15:51:19] pool-1-thread-5 - 235000 records committed, current elapsed time = 287.736 [2024-12-29 15:51:20] pool-1-thread-6 - 235000 records committed, current elapsed time = 288.095 [2024-12-29 15:51:21] pool-1-thread-7 - 235000 records committed, current elapsed time = 289.232 [2024-12-29 15:51:21] pool-1-thread-4 - 235000 records committed, current elapsed time = 289.523 [2024-12-29 15:51:23] pool-1-thread-1 - 235000 records committed, current elapsed time = 291.484 [2024-12-29 15:51:24] pool-1-thread-10 - 235000 records committed, current elapsed time = 292.327 [2024-12-29 15:51:24] pool-1-thread-2 - 235000 records committed, current elapsed time = 292.479 [2024-12-29 15:51:24] pool-1-thread-3 - 235000 records committed, current elapsed time = 292.521 [2024-12-29 15:51:25] pool-1-thread-9 - 235000 records committed, current elapsed time = 293.032 [2024-12-29 15:51:26] pool-1-thread-8 - 235000 records committed, current elapsed time = 294.667 [2024-12-29 15:51:26] pool-1-thread-5 - 240000 records committed, current elapsed time = 294.685 [2024-12-29 15:51:26] pool-1-thread-6 - 240000 records committed, current elapsed time = 294.926 [2024-12-29 15:51:27] pool-1-thread-7 - 240000 records committed, current elapsed time = 295.391 [2024-12-29 15:51:27] pool-1-thread-4 - 240000 records committed, current elapsed time = 295.760 [2024-12-29 15:51:29] pool-1-thread-1 - 240000 records committed, current elapsed time = 297.341 [2024-12-29 15:51:30] pool-1-thread-10 - 240000 records committed, current elapsed time = 298.623 [2024-12-29 15:51:31] pool-1-thread-2 - 240000 records committed, current elapsed time = 299.025 [2024-12-29 15:51:31] pool-1-thread-3 - 240000 records committed, current elapsed time = 299.557 [2024-12-29 15:51:33] pool-1-thread-9 - 240000 records committed, current elapsed time = 301.310 [2024-12-29 15:51:35] pool-1-thread-5 - 245000 records committed, current elapsed time = 303.185 [2024-12-29 15:51:35] pool-1-thread-8 - 240000 records committed, current elapsed time = 303.620 [2024-12-29 15:51:36] pool-1-thread-6 - 245000 records committed, current elapsed time = 304.040 [2024-12-29 15:51:36] pool-1-thread-7 - 245000 records committed, current elapsed time = 304.286 [2024-12-29 15:51:36] pool-1-thread-4 - 245000 records committed, current elapsed time = 304.778 [2024-12-29 15:51:37] pool-1-thread-2 - 245000 records committed, current elapsed time = 305.357 [2024-12-29 15:51:37] pool-1-thread-1 - 245000 records committed, current elapsed time = 305.576 [2024-12-29 15:51:39] pool-1-thread-10 - 245000 records committed, current elapsed time = 307.852 [2024-12-29 15:51:39] pool-1-thread-3 - 245000 records committed, current elapsed time = 307.896 [2024-12-29 15:51:41] pool-1-thread-9 - 245000 records committed, current elapsed time = 309.144 [2024-12-29 15:51:42] pool-1-thread-8 - 245000 records committed, current elapsed time = 310.174 [2024-12-29 15:51:43] pool-1-thread-6 - 250000 records committed, current elapsed time = 311.378 [2024-12-29 15:51:43] pool-1-thread-5 - 250000 records committed, current elapsed time = 311.396 [2024-12-29 15:51:44] pool-1-thread-7 - 250000 records committed, current elapsed time = 312.769 [2024-12-29 15:51:45] pool-1-thread-4 - 250000 records committed, current elapsed time = 313.983 [2024-12-29 15:51:46] pool-1-thread-10 - 250000 records committed, current elapsed time = 314.508 [2024-12-29 15:51:46] pool-1-thread-2 - 250000 records committed, current elapsed time = 314.740 [2024-12-29 15:51:47] pool-1-thread-1 - 250000 records committed, current elapsed time = 315.502 [2024-12-29 15:51:47] pool-1-thread-3 - 250000 records committed, current elapsed time = 315.595 [2024-12-29 15:51:49] pool-1-thread-9 - 250000 records committed, current elapsed time = 317.309 [2024-12-29 15:51:50] pool-1-thread-6 - 255000 records committed, current elapsed time = 318.225 [2024-12-29 15:51:50] pool-1-thread-5 - 255000 records committed, current elapsed time = 318.537 [2024-12-29 15:51:50] pool-1-thread-8 - 250000 records committed, current elapsed time = 318.549 [2024-12-29 15:51:51] pool-1-thread-7 - 255000 records committed, current elapsed time = 319.091 [2024-12-29 15:51:52] pool-1-thread-4 - 255000 records committed, current elapsed time = 320.824 [2024-12-29 15:51:53] pool-1-thread-10 - 255000 records committed, current elapsed time = 321.509 [2024-12-29 15:51:53] pool-1-thread-2 - 255000 records committed, current elapsed time = 321.591 [2024-12-29 15:51:53] pool-1-thread-1 - 255000 records committed, current elapsed time = 321.681 [2024-12-29 15:51:54] pool-1-thread-3 - 255000 records committed, current elapsed time = 322.256 [2024-12-29 15:51:56] pool-1-thread-9 - 255000 records committed, current elapsed time = 324.602 [2024-12-29 15:51:58] pool-1-thread-5 - 260000 records committed, current elapsed time = 326.267 [2024-12-29 15:51:58] pool-1-thread-8 - 255000 records committed, current elapsed time = 326.281 [2024-12-29 15:51:58] pool-1-thread-6 - 260000 records committed, current elapsed time = 326.305 [2024-12-29 15:51:58] pool-1-thread-7 - 260000 records committed, current elapsed time = 326.475 [2024-12-29 15:52:01] pool-1-thread-4 - 260000 records committed, current elapsed time = 329.555 [2024-12-29 15:52:02] pool-1-thread-1 - 260000 records committed, current elapsed time = 330.092 [2024-12-29 15:52:02] pool-1-thread-10 - 260000 records committed, current elapsed time = 330.584 [2024-12-29 15:52:02] pool-1-thread-2 - 260000 records committed, current elapsed time = 330.589 [2024-12-29 15:52:10] pool-1-thread-3 - 260000 records committed, current elapsed time = 338.588 [2024-12-29 15:52:12] pool-1-thread-9 - 260000 records committed, current elapsed time = 340.111 [2024-12-29 15:52:24] pool-1-thread-5 - 265000 records committed, current elapsed time = 352.256 [2024-12-29 15:52:24] pool-1-thread-6 - 265000 records committed, current elapsed time = 352.439 [2024-12-29 15:52:24] pool-1-thread-7 - 265000 records committed, current elapsed time = 352.445 [2024-12-29 15:52:24] pool-1-thread-8 - 260000 records committed, current elapsed time = 352.580 [2024-12-29 15:52:27] pool-1-thread-4 - 265000 records committed, current elapsed time = 355.911 [2024-12-29 15:52:28] pool-1-thread-1 - 265000 records committed, current elapsed time = 356.743 [2024-12-29 15:52:30] pool-1-thread-2 - 265000 records committed, current elapsed time = 358.932 [2024-12-29 15:52:31] pool-1-thread-10 - 265000 records committed, current elapsed time = 359.189 [2024-12-29 15:52:34] pool-1-thread-3 - 265000 records committed, current elapsed time = 362.224 [2024-12-29 15:52:34] pool-1-thread-9 - 265000 records committed, current elapsed time = 362.852 [2024-12-29 15:52:37] pool-1-thread-7 - 270000 records committed, current elapsed time = 365.457 [2024-12-29 15:52:37] pool-1-thread-6 - 270000 records committed, current elapsed time = 365.795 [2024-12-29 15:52:37] pool-1-thread-5 - 270000 records committed, current elapsed time = 365.925 [2024-12-29 15:52:40] pool-1-thread-8 - 265000 records committed, current elapsed time = 368.217 [2024-12-29 15:52:40] pool-1-thread-4 - 270000 records committed, current elapsed time = 368.741 [2024-12-29 15:52:41] pool-1-thread-1 - 270000 records committed, current elapsed time = 369.082 [2024-12-29 15:52:42] pool-1-thread-10 - 270000 records committed, current elapsed time = 370.105 [2024-12-29 15:52:44] pool-1-thread-2 - 270000 records committed, current elapsed time = 372.302 [2024-12-29 15:52:44] pool-1-thread-3 - 270000 records committed, current elapsed time = 372.869 [2024-12-29 15:52:45] pool-1-thread-9 - 270000 records committed, current elapsed time = 373.248 [2024-12-29 15:52:48] pool-1-thread-7 - 275000 records committed, current elapsed time = 376.817 [2024-12-29 15:52:49] pool-1-thread-6 - 275000 records committed, current elapsed time = 377.281 [2024-12-29 15:52:49] pool-1-thread-5 - 275000 records committed, current elapsed time = 377.299 [2024-12-29 15:52:51] pool-1-thread-8 - 270000 records committed, current elapsed time = 379.440 [2024-12-29 15:52:52] pool-1-thread-4 - 275000 records committed, current elapsed time = 380.646 [2024-12-29 15:52:53] pool-1-thread-1 - 275000 records committed, current elapsed time = 381.041 [2024-12-29 15:52:53] pool-1-thread-10 - 275000 records committed, current elapsed time = 381.523 [2024-12-29 15:52:55] pool-1-thread-2 - 275000 records committed, current elapsed time = 383.319 [2024-12-29 15:52:57] pool-1-thread-3 - 275000 records committed, current elapsed time = 385.332 [2024-12-29 15:52:57] pool-1-thread-9 - 275000 records committed, current elapsed time = 385.364 [2024-12-29 15:53:00] pool-1-thread-6 - 280000 records committed, current elapsed time = 388.718 [2024-12-29 15:53:00] pool-1-thread-7 - 280000 records committed, current elapsed time = 388.730 [2024-12-29 15:53:00] pool-1-thread-5 - 280000 records committed, current elapsed time = 388.787 [2024-12-29 15:53:01] pool-1-thread-8 - 275000 records committed, current elapsed time = 389.199 [2024-12-29 15:53:01] pool-1-thread-4 - 280000 records committed, current elapsed time = 389.328 [2024-12-29 15:53:02] pool-1-thread-1 - 280000 records committed, current elapsed time = 390.534 [2024-12-29 15:53:02] pool-1-thread-10 - 280000 records committed, current elapsed time = 390.983 [2024-12-29 15:53:03] pool-1-thread-2 - 280000 records committed, current elapsed time = 391.351 [2024-12-29 15:53:05] pool-1-thread-9 - 280000 records committed, current elapsed time = 393.527 [2024-12-29 15:53:05] pool-1-thread-3 - 280000 records committed, current elapsed time = 393.690 [2024-12-29 15:53:08] pool-1-thread-6 - 285000 records committed, current elapsed time = 396.898 [2024-12-29 15:53:09] pool-1-thread-7 - 285000 records committed, current elapsed time = 397.651 [2024-12-29 15:53:09] pool-1-thread-5 - 285000 records committed, current elapsed time = 397.698 [2024-12-29 15:53:10] pool-1-thread-4 - 285000 records committed, current elapsed time = 398.179 [2024-12-29 15:53:10] pool-1-thread-8 - 280000 records committed, current elapsed time = 398.227 [2024-12-29 15:53:12] pool-1-thread-1 - 285000 records committed, current elapsed time = 400.004 [2024-12-29 15:53:12] pool-1-thread-10 - 285000 records committed, current elapsed time = 400.753 [2024-12-29 15:53:14] pool-1-thread-2 - 285000 records committed, current elapsed time = 402.927 [2024-12-29 15:53:15] pool-1-thread-9 - 285000 records committed, current elapsed time = 403.649 [2024-12-29 15:53:16] pool-1-thread-3 - 285000 records committed, current elapsed time = 403.999 [2024-12-29 15:53:18] pool-1-thread-6 - 290000 records committed, current elapsed time = 406.015 [2024-12-29 15:53:19] pool-1-thread-5 - 290000 records committed, current elapsed time = 407.446 [2024-12-29 15:53:21] pool-1-thread-4 - 290000 records committed, current elapsed time = 409.826 [2024-12-29 15:53:21] pool-1-thread-7 - 290000 records committed, current elapsed time = 409.832 [2024-12-29 15:53:22] pool-1-thread-8 - 285000 records committed, current elapsed time = 410.673 [2024-12-29 15:53:23] pool-1-thread-1 - 290000 records committed, current elapsed time = 411.659 [2024-12-29 15:53:24] pool-1-thread-10 - 290000 records committed, current elapsed time = 412.662 [2024-12-29 15:53:25] pool-1-thread-2 - 290000 records committed, current elapsed time = 413.766 [2024-12-29 15:53:26] pool-1-thread-9 - 290000 records committed, current elapsed time = 414.162 [2024-12-29 15:53:26] pool-1-thread-3 - 290000 records committed, current elapsed time = 414.239 [2024-12-29 15:53:28] pool-1-thread-6 - 295000 records committed, current elapsed time = 416.161 [2024-12-29 15:53:28] pool-1-thread-5 - 295000 records committed, current elapsed time = 416.172 [2024-12-29 15:53:30] pool-1-thread-7 - 295000 records committed, current elapsed time = 418.045 [2024-12-29 15:53:30] pool-1-thread-8 - 290000 records committed, current elapsed time = 418.107 [2024-12-29 15:53:30] pool-1-thread-4 - 295000 records committed, current elapsed time = 418.710 [2024-12-29 15:53:31] pool-1-thread-1 - 295000 records committed, current elapsed time = 419.708 [2024-12-29 15:53:32] pool-1-thread-10 - 295000 records committed, current elapsed time = 420.582 [2024-12-29 15:53:33] pool-1-thread-2 - 295000 records committed, current elapsed time = 421.016 [2024-12-29 15:53:33] pool-1-thread-3 - 295000 records committed, current elapsed time = 421.802 [2024-12-29 15:53:34] pool-1-thread-9 - 295000 records committed, current elapsed time = 422.102 [2024-12-29 15:53:35] pool-1-thread-5 - 300000 records committed, current elapsed time = 423.662 [2024-12-29 15:53:35] pool-1-thread-6 - 300000 records committed, current elapsed time = 423.943 [2024-12-29 15:53:36] pool-1-thread-8 - 295000 records committed, current elapsed time = 424.566 [2024-12-29 15:53:37] pool-1-thread-7 - 300000 records committed, current elapsed time = 425.125 [2024-12-29 15:53:38] pool-1-thread-4 - 300000 records committed, current elapsed time = 426.547 [2024-12-29 15:53:39] pool-1-thread-1 - 300000 records committed, current elapsed time = 427.067 [2024-12-29 15:53:39] pool-1-thread-10 - 300000 records committed, current elapsed time = 427.874 [2024-12-29 15:53:40] pool-1-thread-2 - 300000 records committed, current elapsed time = 428.177 [2024-12-29 15:53:41] pool-1-thread-3 - 300000 records committed, current elapsed time = 429.620 [2024-12-29 15:53:42] pool-1-thread-9 - 300000 records committed, current elapsed time = 430.957 [2024-12-29 15:53:44] pool-1-thread-5 - 305000 records committed, current elapsed time = 432.045 [2024-12-29 15:53:45] pool-1-thread-6 - 305000 records committed, current elapsed time = 433.444 [2024-12-29 15:53:45] pool-1-thread-8 - 300000 records committed, current elapsed time = 433.761 [2024-12-29 15:53:46] pool-1-thread-4 - 305000 records committed, current elapsed time = 434.840 [2024-12-29 15:53:49] pool-1-thread-7 - 305000 records committed, current elapsed time = 437.042 [2024-12-29 15:53:56] pool-1-thread-1 - 305000 records committed, current elapsed time = 444.524 [2024-12-29 15:53:57] pool-1-thread-10 - 305000 records committed, current elapsed time = 445.797 [2024-12-29 15:53:59] pool-1-thread-2 - 305000 records committed, current elapsed time = 447.144 [2024-12-29 15:54:00] pool-1-thread-3 - 305000 records committed, current elapsed time = 448.366 [2024-12-29 15:54:00] pool-1-thread-9 - 305000 records committed, current elapsed time = 448.716 [2024-12-29 15:54:03] pool-1-thread-5 - 310000 records committed, current elapsed time = 451.275 [2024-12-29 15:54:05] pool-1-thread-6 - 310000 records committed, current elapsed time = 453.065 [2024-12-29 15:54:05] pool-1-thread-8 - 305000 records committed, current elapsed time = 453.068 [2024-12-29 15:54:05] pool-1-thread-4 - 310000 records committed, current elapsed time = 453.475 [2024-12-29 15:54:06] pool-1-thread-7 - 310000 records committed, current elapsed time = 454.565 [2024-12-29 15:54:07] pool-1-thread-1 - 310000 records committed, current elapsed time = 455.474 [2024-12-29 15:54:08] pool-1-thread-10 - 310000 records committed, current elapsed time = 456.015 [2024-12-29 15:54:09] pool-1-thread-2 - 310000 records committed, current elapsed time = 457.430 [2024-12-29 15:54:10] pool-1-thread-3 - 310000 records committed, current elapsed time = 458.753 [2024-12-29 15:54:10] pool-1-thread-9 - 310000 records committed, current elapsed time = 458.767 [2024-12-29 15:54:12] pool-1-thread-5 - 315000 records committed, current elapsed time = 460.942 [2024-12-29 15:54:12] pool-1-thread-4 - 315000 records committed, current elapsed time = 460.970 [2024-12-29 15:54:13] pool-1-thread-6 - 315000 records committed, current elapsed time = 461.070 [2024-12-29 15:54:13] pool-1-thread-8 - 310000 records committed, current elapsed time = 461.329 [2024-12-29 15:54:14] pool-1-thread-7 - 315000 records committed, current elapsed time = 462.177 [2024-12-29 15:54:14] pool-1-thread-1 - 315000 records committed, current elapsed time = 462.359 [2024-12-29 15:54:15] pool-1-thread-10 - 315000 records committed, current elapsed time = 463.807 [2024-12-29 15:54:16] pool-1-thread-2 - 315000 records committed, current elapsed time = 464.562 [2024-12-29 15:54:17] pool-1-thread-9 - 315000 records committed, current elapsed time = 465.973 [2024-12-29 15:54:18] pool-1-thread-3 - 315000 records committed, current elapsed time = 466.272 [2024-12-29 15:54:26] pool-1-thread-6 - 320000 records committed, current elapsed time = 474.742 [2024-12-29 15:54:27] pool-1-thread-4 - 320000 records committed, current elapsed time = 475.316 [2024-12-29 15:54:27] pool-1-thread-5 - 320000 records committed, current elapsed time = 475.361 [2024-12-29 15:54:29] pool-1-thread-8 - 315000 records committed, current elapsed time = 477.199 [2024-12-29 15:54:30] pool-1-thread-7 - 320000 records committed, current elapsed time = 478.362 [2024-12-29 15:54:30] pool-1-thread-1 - 320000 records committed, current elapsed time = 478.908 [2024-12-29 15:54:33] pool-1-thread-10 - 320000 records committed, current elapsed time = 481.752 [2024-12-29 15:54:34] pool-1-thread-2 - 320000 records committed, current elapsed time = 482.146 [2024-12-29 15:54:35] pool-1-thread-9 - 320000 records committed, current elapsed time = 483.108 [2024-12-29 15:54:37] pool-1-thread-3 - 320000 records committed, current elapsed time = 485.148 [2024-12-29 15:54:40] pool-1-thread-5 - 325000 records committed, current elapsed time = 488.103 [2024-12-29 15:54:40] pool-1-thread-6 - 325000 records committed, current elapsed time = 488.169 [2024-12-29 15:54:40] pool-1-thread-4 - 325000 records committed, current elapsed time = 488.186 [2024-12-29 15:54:41] pool-1-thread-8 - 320000 records committed, current elapsed time = 489.070 [2024-12-29 15:54:41] pool-1-thread-1 - 325000 records committed, current elapsed time = 489.898 [2024-12-29 15:54:42] pool-1-thread-7 - 325000 records committed, current elapsed time = 490.086 [2024-12-29 15:54:43] pool-1-thread-10 - 325000 records committed, current elapsed time = 491.787 [2024-12-29 15:54:44] pool-1-thread-2 - 325000 records committed, current elapsed time = 492.251 [2024-12-29 15:54:45] pool-1-thread-9 - 325000 records committed, current elapsed time = 493.835 [2024-12-29 15:54:46] pool-1-thread-3 - 325000 records committed, current elapsed time = 494.242 [2024-12-29 15:54:47] pool-1-thread-6 - 330000 records committed, current elapsed time = 495.290 [2024-12-29 15:54:48] pool-1-thread-5 - 330000 records committed, current elapsed time = 496.037 [2024-12-29 15:54:48] pool-1-thread-4 - 330000 records committed, current elapsed time = 496.879 [2024-12-29 15:54:49] pool-1-thread-8 - 325000 records committed, current elapsed time = 497.813 [2024-12-29 15:54:50] pool-1-thread-1 - 330000 records committed, current elapsed time = 498.271 [2024-12-29 15:54:51] pool-1-thread-7 - 330000 records committed, current elapsed time = 499.190 [2024-12-29 15:54:52] pool-1-thread-10 - 330000 records committed, current elapsed time = 500.023 [2024-12-29 15:54:53] pool-1-thread-2 - 330000 records committed, current elapsed time = 501.361 [2024-12-29 15:54:54] pool-1-thread-9 - 330000 records committed, current elapsed time = 502.647 [2024-12-29 15:54:55] pool-1-thread-3 - 330000 records committed, current elapsed time = 503.200 [2024-12-29 15:54:57] pool-1-thread-6 - 335000 records committed, current elapsed time = 505.503 [2024-12-29 15:54:57] pool-1-thread-5 - 335000 records committed, current elapsed time = 505.709 [2024-12-29 15:54:58] pool-1-thread-8 - 330000 records committed, current elapsed time = 506.354 [2024-12-29 15:54:58] pool-1-thread-4 - 335000 records committed, current elapsed time = 506.476 [2024-12-29 15:54:59] pool-1-thread-1 - 335000 records committed, current elapsed time = 507.253 [2024-12-29 15:55:00] pool-1-thread-7 - 335000 records committed, current elapsed time = 508.056 [2024-12-29 15:55:05] pool-1-thread-10 - 335000 records committed, current elapsed time = 513.083 [2024-12-29 15:55:06] pool-1-thread-2 - 335000 records committed, current elapsed time = 514.099 [2024-12-29 15:55:08] pool-1-thread-9 - 335000 records committed, current elapsed time = 516.894 [2024-12-29 15:55:09] pool-1-thread-3 - 335000 records committed, current elapsed time = 517.576 [2024-12-29 15:55:12] pool-1-thread-6 - 340000 records committed, current elapsed time = 520.177 [2024-12-29 15:55:12] pool-1-thread-4 - 340000 records committed, current elapsed time = 520.186 [2024-12-29 15:55:12] pool-1-thread-5 - 340000 records committed, current elapsed time = 520.256 [2024-12-29 15:55:12] pool-1-thread-8 - 335000 records committed, current elapsed time = 520.659 [2024-12-29 15:55:12] pool-1-thread-1 - 340000 records committed, current elapsed time = 520.685 [2024-12-29 15:55:12] pool-1-thread-7 - 340000 records committed, current elapsed time = 520.806 [2024-12-29 15:55:13] pool-1-thread-2 - 340000 records committed, current elapsed time = 521.290 [2024-12-29 15:55:13] pool-1-thread-10 - 340000 records committed, current elapsed time = 521.307 [2024-12-29 15:55:15] pool-1-thread-9 - 340000 records committed, current elapsed time = 523.830 [2024-12-29 15:55:16] pool-1-thread-3 - 340000 records committed, current elapsed time = 524.334 [2024-12-29 15:55:18] pool-1-thread-6 - 345000 records committed, current elapsed time = 526.700 [2024-12-29 15:55:19] pool-1-thread-4 - 345000 records committed, current elapsed time = 527.341 [2024-12-29 15:55:19] pool-1-thread-8 - 340000 records committed, current elapsed time = 527.632 [2024-12-29 15:55:19] pool-1-thread-5 - 345000 records committed, current elapsed time = 527.640 [2024-12-29 15:55:19] pool-1-thread-1 - 345000 records committed, current elapsed time = 527.735 [2024-12-29 15:55:19] pool-1-thread-7 - 345000 records committed, current elapsed time = 527.989 [2024-12-29 15:55:21] pool-1-thread-10 - 345000 records committed, current elapsed time = 529.812 [2024-12-29 15:55:22] pool-1-thread-2 - 345000 records committed, current elapsed time = 530.178 [2024-12-29 15:55:24] pool-1-thread-3 - 345000 records committed, current elapsed time = 532.261 [2024-12-29 15:55:24] pool-1-thread-9 - 345000 records committed, current elapsed time = 532.309 [2024-12-29 15:55:33] pool-1-thread-4 - 350000 records committed, current elapsed time = 541.297 [2024-12-29 15:55:33] pool-1-thread-6 - 350000 records committed, current elapsed time = 541.855 [2024-12-29 15:55:34] pool-1-thread-8 - 345000 records committed, current elapsed time = 542.087 [2024-12-29 15:55:34] pool-1-thread-5 - 350000 records committed, current elapsed time = 542.785 [2024-12-29 15:55:34] pool-1-thread-7 - 350000 records committed, current elapsed time = 542.836 [2024-12-29 15:55:35] pool-1-thread-1 - 350000 records committed, current elapsed time = 543.445 [2024-12-29 15:55:39] pool-1-thread-2 - 350000 records committed, current elapsed time = 547.368 [2024-12-29 15:55:39] pool-1-thread-10 - 350000 records committed, current elapsed time = 547.406 [2024-12-29 15:55:56] pool-1-thread-3 - 350000 records committed, current elapsed time = 564.258 [2024-12-29 15:55:56] pool-1-thread-9 - 350000 records committed, current elapsed time = 564.631 [2024-12-29 15:56:01] pool-1-thread-4 - 355000 records committed, current elapsed time = 569.059 [2024-12-29 15:56:02] pool-1-thread-6 - 355000 records committed, current elapsed time = 570.874 [2024-12-29 15:56:03] pool-1-thread-5 - 355000 records committed, current elapsed time = 571.318 [2024-12-29 15:56:03] pool-1-thread-8 - 350000 records committed, current elapsed time = 571.410 [2024-12-29 15:56:04] pool-1-thread-7 - 355000 records committed, current elapsed time = 572.973 [2024-12-29 15:56:05] pool-1-thread-1 - 355000 records committed, current elapsed time = 573.003 [2024-12-29 15:56:08] pool-1-thread-2 - 355000 records committed, current elapsed time = 576.507 [2024-12-29 15:56:08] pool-1-thread-10 - 355000 records committed, current elapsed time = 576.716 [2024-12-29 15:56:17] pool-1-thread-9 - 355000 records committed, current elapsed time = 585.125 [2024-12-29 15:56:17] pool-1-thread-3 - 355000 records committed, current elapsed time = 585.556 [2024-12-29 15:56:37] pool-1-thread-4 - 360000 records committed, current elapsed time = 605.799 [2024-12-29 15:56:40] pool-1-thread-6 - 360000 records committed, current elapsed time = 608.818 [2024-12-29 15:56:43] pool-1-thread-8 - 355000 records committed, current elapsed time = 611.124 [2024-12-29 15:56:43] pool-1-thread-5 - 360000 records committed, current elapsed time = 611.244 [2024-12-29 15:56:44] pool-1-thread-7 - 360000 records committed, current elapsed time = 612.082 [2024-12-29 15:56:49] pool-1-thread-1 - 360000 records committed, current elapsed time = 617.241 [2024-12-29 15:56:50] pool-1-thread-10 - 360000 records committed, current elapsed time = 618.672 [2024-12-29 15:56:51] pool-1-thread-2 - 360000 records committed, current elapsed time = 619.768 [2024-12-29 15:56:57] pool-1-thread-3 - 360000 records committed, current elapsed time = 625.267 [2024-12-29 15:56:59] pool-1-thread-9 - 360000 records committed, current elapsed time = 627.075 [2024-12-29 15:57:18] pool-1-thread-4 - 365000 records committed, current elapsed time = 646.123 [2024-12-29 15:57:20] pool-1-thread-6 - 365000 records committed, current elapsed time = 648.661 [2024-12-29 15:57:21] pool-1-thread-8 - 360000 records committed, current elapsed time = 649.212 [2024-12-29 15:57:21] pool-1-thread-5 - 365000 records committed, current elapsed time = 649.905 [2024-12-29 15:57:25] pool-1-thread-7 - 365000 records committed, current elapsed time = 653.888 [2024-12-29 15:57:26] pool-1-thread-1 - 365000 records committed, current elapsed time = 654.297 [2024-12-29 15:57:31] pool-1-thread-10 - 365000 records committed, current elapsed time = 659.155 [2024-12-29 15:57:31] pool-1-thread-2 - 365000 records committed, current elapsed time = 659.763 [2024-12-29 15:57:37] pool-1-thread-3 - 365000 records committed, current elapsed time = 665.119 [2024-12-29 15:57:37] pool-1-thread-9 - 365000 records committed, current elapsed time = 665.333 [2024-12-29 15:57:50] pool-1-thread-4 - 370000 records committed, current elapsed time = 678.175 [2024-12-29 15:57:52] pool-1-thread-5 - 370000 records committed, current elapsed time = 680.171 [2024-12-29 15:57:52] pool-1-thread-6 - 370000 records committed, current elapsed time = 680.788 [2024-12-29 15:57:54] pool-1-thread-8 - 365000 records committed, current elapsed time = 682.267 [2024-12-29 15:57:55] pool-1-thread-7 - 370000 records committed, current elapsed time = 683.603 [2024-12-29 15:57:55] pool-1-thread-10 - 370000 records committed, current elapsed time = 683.884 [2024-12-29 15:57:56] pool-1-thread-1 - 370000 records committed, current elapsed time = 684.917 [2024-12-29 15:58:00] pool-1-thread-2 - 370000 records committed, current elapsed time = 688.545 [2024-12-29 15:58:01] pool-1-thread-9 - 370000 records committed, current elapsed time = 689.646 [2024-12-29 15:58:01] pool-1-thread-3 - 370000 records committed, current elapsed time = 689.991 [2024-12-29 15:58:09] pool-1-thread-4 - 375000 records committed, current elapsed time = 697.068 [2024-12-29 15:58:11] pool-1-thread-5 - 375000 records committed, current elapsed time = 699.025 [2024-12-29 15:58:13] pool-1-thread-6 - 375000 records committed, current elapsed time = 701.740 [2024-12-29 15:58:14] pool-1-thread-8 - 370000 records committed, current elapsed time = 702.033 [2024-12-29 15:58:15] pool-1-thread-7 - 375000 records committed, current elapsed time = 703.263 [2024-12-29 15:58:16] pool-1-thread-1 - 375000 records committed, current elapsed time = 704.127 [2024-12-29 15:58:16] pool-1-thread-10 - 375000 records committed, current elapsed time = 704.412 [2024-12-29 15:58:17] pool-1-thread-9 - 375000 records committed, current elapsed time = 705.718 [2024-12-29 15:58:18] pool-1-thread-2 - 375000 records committed, current elapsed time = 706.620 [2024-12-29 15:58:18] pool-1-thread-3 - 375000 records committed, current elapsed time = 706.639 [2024-12-29 15:58:20] pool-1-thread-4 - 380000 records committed, current elapsed time = 708.127 [2024-12-29 15:58:21] pool-1-thread-5 - 380000 records committed, current elapsed time = 709.138 [2024-12-29 15:58:22] pool-1-thread-6 - 380000 records committed, current elapsed time = 710.899 [2024-12-29 15:58:24] pool-1-thread-8 - 375000 records committed, current elapsed time = 712.061 [2024-12-29 15:58:25] pool-1-thread-7 - 380000 records committed, current elapsed time = 713.532 [2024-12-29 15:58:26] pool-1-thread-1 - 380000 records committed, current elapsed time = 714.600 [2024-12-29 15:58:29] pool-1-thread-10 - 380000 records committed, current elapsed time = 717.413 [2024-12-29 15:58:29] pool-1-thread-9 - 380000 records committed, current elapsed time = 717.939 [2024-12-29 15:58:32] pool-1-thread-2 - 380000 records committed, current elapsed time = 720.334 [2024-12-29 15:58:33] pool-1-thread-3 - 380000 records committed, current elapsed time = 721.842 [2024-12-29 15:58:47] pool-1-thread-5 - 385000 records committed, current elapsed time = 735.845 [2024-12-29 15:58:48] pool-1-thread-4 - 385000 records committed, current elapsed time = 736.317 [2024-12-29 15:58:54] pool-1-thread-8 - 380000 records committed, current elapsed time = 742.331 [2024-12-29 15:58:55] pool-1-thread-6 - 385000 records committed, current elapsed time = 743.165 [2024-12-29 15:58:55] pool-1-thread-7 - 385000 records committed, current elapsed time = 743.298 [2024-12-29 15:58:58] pool-1-thread-1 - 385000 records committed, current elapsed time = 746.729 [2024-12-29 15:59:00] pool-1-thread-10 - 385000 records committed, current elapsed time = 748.594 [2024-12-29 15:59:03] pool-1-thread-9 - 385000 records committed, current elapsed time = 751.518 [2024-12-29 15:59:04] pool-1-thread-2 - 385000 records committed, current elapsed time = 752.043 [2024-12-29 15:59:05] pool-1-thread-3 - 385000 records committed, current elapsed time = 753.780 [2024-12-29 15:59:15] pool-1-thread-5 - 390000 records committed, current elapsed time = 763.276 [2024-12-29 15:59:15] pool-1-thread-4 - 390000 records committed, current elapsed time = 763.623 [2024-12-29 15:59:18] pool-1-thread-8 - 385000 records committed, current elapsed time = 766.406 [2024-12-29 15:59:19] pool-1-thread-6 - 390000 records committed, current elapsed time = 767.496 [2024-12-29 15:59:21] pool-1-thread-7 - 390000 records committed, current elapsed time = 769.114 [2024-12-29 15:59:24] pool-1-thread-1 - 390000 records committed, current elapsed time = 772.154 [2024-12-29 15:59:29] pool-1-thread-10 - 390000 records committed, current elapsed time = 777.949 [2024-12-29 15:59:29] pool-1-thread-3 - 390000 records committed, current elapsed time = 777.978 [2024-12-29 15:59:30] pool-1-thread-2 - 390000 records committed, current elapsed time = 778.945 [2024-12-29 15:59:31] pool-1-thread-9 - 390000 records committed, current elapsed time = 779.361 [2024-12-29 15:59:40] pool-1-thread-4 - 395000 records committed, current elapsed time = 788.609 [2024-12-29 15:59:40] pool-1-thread-5 - 395000 records committed, current elapsed time = 788.910 [2024-12-29 15:59:43] pool-1-thread-8 - 390000 records committed, current elapsed time = 791.826 [2024-12-29 15:59:44] pool-1-thread-6 - 395000 records committed, current elapsed time = 792.820 [2024-12-29 15:59:47] pool-1-thread-7 - 395000 records committed, current elapsed time = 795.319 [2024-12-29 15:59:49] pool-1-thread-1 - 395000 records committed, current elapsed time = 797.309 [2024-12-29 15:59:52] pool-1-thread-2 - 395000 records committed, current elapsed time = 800.340 [2024-12-29 15:59:52] pool-1-thread-3 - 395000 records committed, current elapsed time = 800.812 [2024-12-29 15:59:52] pool-1-thread-10 - 395000 records committed, current elapsed time = 800.850 [2024-12-29 15:59:53] pool-1-thread-9 - 395000 records committed, current elapsed time = 801.771 [2024-12-29 16:00:05] pool-1-thread-5 - 400000 records committed, current elapsed time = 813.072 [2024-12-29 16:00:05] pool-1-thread-4 - 400000 records committed, current elapsed time = 813.949 [2024-12-29 16:00:07] pool-1-thread-6 - 400000 records committed, current elapsed time = 815.768 [2024-12-29 16:00:13] pool-1-thread-8 - 395000 records committed, current elapsed time = 820.990 [2024-12-29 16:00:16] pool-1-thread-1 - 400000 records committed, current elapsed time = 824.782 [2024-12-29 16:00:19] pool-1-thread-3 - 400000 records committed, current elapsed time = 827.297 [2024-12-29 16:00:19] pool-1-thread-7 - 400000 records committed, current elapsed time = 827.397 [2024-12-29 16:00:20] pool-1-thread-2 - 400000 records committed, current elapsed time = 828.066 [2024-12-29 16:00:21] pool-1-thread-9 - 400000 records committed, current elapsed time = 829.877 [2024-12-29 16:00:22] pool-1-thread-10 - 400000 records committed, current elapsed time = 830.233 [2024-12-29 16:00:25] pool-1-thread-5 - 405000 records committed, current elapsed time = 833.040 [2024-12-29 16:00:26] pool-1-thread-6 - 405000 records committed, current elapsed time = 834.134 [2024-12-29 16:00:26] pool-1-thread-4 - 405000 records committed, current elapsed time = 834.211 [2024-12-29 16:00:28] pool-1-thread-8 - 400000 records committed, current elapsed time = 836.576 [2024-12-29 16:00:31] pool-1-thread-1 - 405000 records committed, current elapsed time = 839.332 [2024-12-29 16:00:31] pool-1-thread-7 - 405000 records committed, current elapsed time = 839.599 [2024-12-29 16:00:32] pool-1-thread-3 - 405000 records committed, current elapsed time = 840.352 [2024-12-29 16:00:33] pool-1-thread-2 - 405000 records committed, current elapsed time = 841.129 [2024-12-29 16:00:33] pool-1-thread-9 - 405000 records committed, current elapsed time = 841.467 [2024-12-29 16:00:34] pool-1-thread-10 - 405000 records committed, current elapsed time = 842.439 [2024-12-29 16:00:37] pool-1-thread-5 - 410000 records committed, current elapsed time = 845.641 [2024-12-29 16:00:38] pool-1-thread-6 - 410000 records committed, current elapsed time = 846.378 [2024-12-29 16:00:38] pool-1-thread-4 - 410000 records committed, current elapsed time = 846.866 [2024-12-29 16:00:39] pool-1-thread-8 - 405000 records committed, current elapsed time = 847.677 [2024-12-29 16:00:40] pool-1-thread-7 - 410000 records committed, current elapsed time = 848.339 [2024-12-29 16:00:41] pool-1-thread-1 - 410000 records committed, current elapsed time = 849.226 [2024-12-29 16:00:41] pool-1-thread-3 - 410000 records committed, current elapsed time = 849.318 [2024-12-29 16:00:42] pool-1-thread-2 - 410000 records committed, current elapsed time = 850.095 [2024-12-29 16:00:42] pool-1-thread-9 - 410000 records committed, current elapsed time = 850.214 [2024-12-29 16:00:42] pool-1-thread-10 - 410000 records committed, current elapsed time = 850.890 [2024-12-29 16:00:45] pool-1-thread-5 - 415000 records committed, current elapsed time = 853.395 [2024-12-29 16:00:45] pool-1-thread-6 - 415000 records committed, current elapsed time = 853.723 [2024-12-29 16:00:45] pool-1-thread-4 - 415000 records committed, current elapsed time = 853.780 [2024-12-29 16:00:46] pool-1-thread-8 - 410000 records committed, current elapsed time = 854.504 [2024-12-29 16:00:47] pool-1-thread-7 - 415000 records committed, current elapsed time = 855.245 [2024-12-29 16:00:47] pool-1-thread-1 - 415000 records committed, current elapsed time = 855.399 [2024-12-29 16:00:48] pool-1-thread-2 - 415000 records committed, current elapsed time = 856.320 [2024-12-29 16:00:48] pool-1-thread-3 - 415000 records committed, current elapsed time = 856.622 [2024-12-29 16:00:48] pool-1-thread-9 - 415000 records committed, current elapsed time = 856.632 [2024-12-29 16:00:50] pool-1-thread-10 - 415000 records committed, current elapsed time = 858.200 [2024-12-29 16:00:51] pool-1-thread-5 - 420000 records committed, current elapsed time = 859.919 [2024-12-29 16:00:52] pool-1-thread-4 - 420000 records committed, current elapsed time = 860.504 [2024-12-29 16:00:52] pool-1-thread-6 - 420000 records committed, current elapsed time = 860.901 [2024-12-29 16:00:54] pool-1-thread-8 - 415000 records committed, current elapsed time = 862.305 [2024-12-29 16:00:54] pool-1-thread-7 - 420000 records committed, current elapsed time = 862.327 [2024-12-29 16:00:55] pool-1-thread-2 - 420000 records committed, current elapsed time = 863.006 [2024-12-29 16:00:55] pool-1-thread-1 - 420000 records committed, current elapsed time = 863.654 [2024-12-29 16:00:56] pool-1-thread-3 - 420000 records committed, current elapsed time = 864.545 [2024-12-29 16:00:57] pool-1-thread-9 - 420000 records committed, current elapsed time = 865.131 [2024-12-29 16:00:58] pool-1-thread-10 - 420000 records committed, current elapsed time = 866.243 [2024-12-29 16:01:02] pool-1-thread-5 - 425000 records committed, current elapsed time = 870.078 [2024-12-29 16:01:02] pool-1-thread-4 - 425000 records committed, current elapsed time = 870.802 [2024-12-29 16:01:04] pool-1-thread-6 - 425000 records committed, current elapsed time = 872.505 [2024-12-29 16:01:06] pool-1-thread-7 - 425000 records committed, current elapsed time = 874.326 [2024-12-29 16:01:06] pool-1-thread-8 - 420000 records committed, current elapsed time = 874.333 [2024-12-29 16:01:06] pool-1-thread-1 - 425000 records committed, current elapsed time = 874.662 [2024-12-29 16:01:07] pool-1-thread-2 - 425000 records committed, current elapsed time = 875.023 [2024-12-29 16:01:07] pool-1-thread-9 - 425000 records committed, current elapsed time = 875.842 [2024-12-29 16:01:08] pool-1-thread-3 - 425000 records committed, current elapsed time = 876.590 [2024-12-29 16:01:09] pool-1-thread-10 - 425000 records committed, current elapsed time = 877.910 [2024-12-29 16:01:12] pool-1-thread-5 - 430000 records committed, current elapsed time = 880.309 [2024-12-29 16:01:12] pool-1-thread-4 - 430000 records committed, current elapsed time = 880.954 [2024-12-29 16:01:14] pool-1-thread-6 - 430000 records committed, current elapsed time = 882.361 [2024-12-29 16:01:14] pool-1-thread-8 - 425000 records committed, current elapsed time = 882.708 [2024-12-29 16:01:16] pool-1-thread-1 - 430000 records committed, current elapsed time = 884.149 [2024-12-29 16:01:16] pool-1-thread-7 - 430000 records committed, current elapsed time = 884.157 [2024-12-29 16:01:16] pool-1-thread-2 - 430000 records committed, current elapsed time = 884.182 [2024-12-29 16:01:16] pool-1-thread-3 - 430000 records committed, current elapsed time = 884.258 [2024-12-29 16:01:16] pool-1-thread-9 - 430000 records committed, current elapsed time = 884.813 [2024-12-29 16:01:19] pool-1-thread-10 - 430000 records committed, current elapsed time = 887.416 [2024-12-29 16:01:20] pool-1-thread-4 - 435000 records committed, current elapsed time = 888.750 [2024-12-29 16:01:21] pool-1-thread-5 - 435000 records committed, current elapsed time = 889.152 [2024-12-29 16:01:26] pool-1-thread-1 - 435000 records committed, current elapsed time = 894.544 [2024-12-29 16:01:27] pool-1-thread-8 - 430000 records committed, current elapsed time = 895.009 [2024-12-29 16:01:27] pool-1-thread-6 - 435000 records committed, current elapsed time = 895.400 [2024-12-29 16:01:27] pool-1-thread-2 - 435000 records committed, current elapsed time = 895.433 [2024-12-29 16:01:27] pool-1-thread-9 - 435000 records committed, current elapsed time = 895.765 [2024-12-29 16:01:27] pool-1-thread-7 - 435000 records committed, current elapsed time = 895.779 [2024-12-29 16:01:28] pool-1-thread-3 - 435000 records committed, current elapsed time = 896.132 [2024-12-29 16:01:31] pool-1-thread-10 - 435000 records committed, current elapsed time = 899.344 [2024-12-29 16:01:33] pool-1-thread-4 - 440000 records committed, current elapsed time = 901.428 [2024-12-29 16:01:33] pool-1-thread-5 - 440000 records committed, current elapsed time = 901.438 [2024-12-29 16:01:34] pool-1-thread-1 - 440000 records committed, current elapsed time = 902.652 [2024-12-29 16:01:35] pool-1-thread-9 - 440000 records committed, current elapsed time = 903.450 [2024-12-29 16:01:35] pool-1-thread-8 - 435000 records committed, current elapsed time = 903.853 [2024-12-29 16:01:36] pool-1-thread-6 - 440000 records committed, current elapsed time = 904.493 [2024-12-29 16:01:36] pool-1-thread-3 - 440000 records committed, current elapsed time = 904.908 [2024-12-29 16:01:37] pool-1-thread-7 - 440000 records committed, current elapsed time = 905.237 [2024-12-29 16:01:37] pool-1-thread-2 - 440000 records committed, current elapsed time = 905.273 [2024-12-29 16:01:40] pool-1-thread-10 - 440000 records committed, current elapsed time = 908.082 [2024-12-29 16:01:42] pool-1-thread-5 - 445000 records committed, current elapsed time = 910.828 [2024-12-29 16:01:43] pool-1-thread-4 - 445000 records committed, current elapsed time = 911.303 [2024-12-29 16:01:45] pool-1-thread-9 - 445000 records committed, current elapsed time = 912.991 [2024-12-29 16:01:45] pool-1-thread-8 - 440000 records committed, current elapsed time = 912.996 [2024-12-29 16:01:45] pool-1-thread-1 - 445000 records committed, current elapsed time = 913.320 [2024-12-29 16:01:45] pool-1-thread-6 - 445000 records committed, current elapsed time = 913.414 [2024-12-29 16:01:46] pool-1-thread-3 - 445000 records committed, current elapsed time = 914.667 [2024-12-29 16:01:46] pool-1-thread-2 - 445000 records committed, current elapsed time = 914.922 [2024-12-29 16:01:47] pool-1-thread-7 - 445000 records committed, current elapsed time = 915.308 [2024-12-29 16:01:49] pool-1-thread-10 - 445000 records committed, current elapsed time = 917.316 [2024-12-29 16:01:51] pool-1-thread-4 - 450000 records committed, current elapsed time = 919.295 [2024-12-29 16:01:51] pool-1-thread-5 - 450000 records committed, current elapsed time = 919.465 [2024-12-29 16:01:52] pool-1-thread-1 - 450000 records committed, current elapsed time = 920.838 [2024-12-29 16:01:53] pool-1-thread-8 - 445000 records committed, current elapsed time = 921.696 [2024-12-29 16:01:53] pool-1-thread-6 - 450000 records committed, current elapsed time = 921.704 [2024-12-29 16:01:53] pool-1-thread-9 - 450000 records committed, current elapsed time = 921.748 [2024-12-29 16:01:54] pool-1-thread-3 - 450000 records committed, current elapsed time = 922.255 [2024-12-29 16:01:54] pool-1-thread-2 - 450000 records committed, current elapsed time = 922.709 [2024-12-29 16:01:55] pool-1-thread-7 - 450000 records committed, current elapsed time = 923.042 [2024-12-29 16:01:59] pool-1-thread-10 - 450000 records committed, current elapsed time = 927.288 [2024-12-29 16:02:05] pool-1-thread-5 - 455000 records committed, current elapsed time = 933.346 [2024-12-29 16:02:07] pool-1-thread-4 - 455000 records committed, current elapsed time = 935.074 [2024-12-29 16:02:09] pool-1-thread-1 - 455000 records committed, current elapsed time = 937.779 [2024-12-29 16:02:11] pool-1-thread-8 - 450000 records committed, current elapsed time = 939.956 [2024-12-29 16:02:11] pool-1-thread-9 - 455000 records committed, current elapsed time = 939.959 [2024-12-29 16:02:12] pool-1-thread-6 - 455000 records committed, current elapsed time = 940.539 [2024-12-29 16:02:12] pool-1-thread-2 - 455000 records committed, current elapsed time = 940.695 [2024-12-29 16:02:12] pool-1-thread-3 - 455000 records committed, current elapsed time = 940.704 [2024-12-29 16:02:13] pool-1-thread-7 - 455000 records committed, current elapsed time = 941.248 [2024-12-29 16:02:13] pool-1-thread-10 - 455000 records committed, current elapsed time = 941.648 [2024-12-29 16:02:16] pool-1-thread-5 - 460000 records committed, current elapsed time = 944.061 [2024-12-29 16:02:17] pool-1-thread-4 - 460000 records committed, current elapsed time = 945.067 [2024-12-29 16:02:18] pool-1-thread-1 - 460000 records committed, current elapsed time = 946.612 [2024-12-29 16:02:19] pool-1-thread-8 - 455000 records committed, current elapsed time = 947.634 [2024-12-29 16:02:19] pool-1-thread-6 - 460000 records committed, current elapsed time = 947.699 [2024-12-29 16:02:20] pool-1-thread-2 - 460000 records committed, current elapsed time = 948.071 [2024-12-29 16:02:20] pool-1-thread-9 - 460000 records committed, current elapsed time = 948.228 [2024-12-29 16:02:20] pool-1-thread-3 - 460000 records committed, current elapsed time = 948.602 [2024-12-29 16:02:20] pool-1-thread-7 - 460000 records committed, current elapsed time = 948.788 [2024-12-29 16:02:21] pool-1-thread-10 - 460000 records committed, current elapsed time = 949.830 [2024-12-29 16:02:23] pool-1-thread-5 - 465000 records committed, current elapsed time = 951.555 [2024-12-29 16:02:23] pool-1-thread-4 - 465000 records committed, current elapsed time = 951.557 [2024-12-29 16:02:25] pool-1-thread-1 - 465000 records committed, current elapsed time = 953.941 [2024-12-29 16:02:26] pool-1-thread-8 - 460000 records committed, current elapsed time = 954.315 [2024-12-29 16:02:26] pool-1-thread-6 - 465000 records committed, current elapsed time = 954.828 [2024-12-29 16:02:27] pool-1-thread-2 - 465000 records committed, current elapsed time = 955.477 [2024-12-29 16:02:27] pool-1-thread-9 - 465000 records committed, current elapsed time = 955.860 [2024-12-29 16:02:27] pool-1-thread-3 - 465000 records committed, current elapsed time = 955.914 [2024-12-29 16:02:27] pool-1-thread-7 - 465000 records committed, current elapsed time = 955.970 [2024-12-29 16:02:28] pool-1-thread-10 - 465000 records committed, current elapsed time = 956.467 [2024-12-29 16:02:30] pool-1-thread-5 - 470000 records committed, current elapsed time = 958.887 [2024-12-29 16:02:31] pool-1-thread-4 - 470000 records committed, current elapsed time = 959.330 [2024-12-29 16:02:32] pool-1-thread-1 - 470000 records committed, current elapsed time = 960.505 [2024-12-29 16:02:32] pool-1-thread-8 - 465000 records committed, current elapsed time = 960.918 [2024-12-29 16:02:33] pool-1-thread-2 - 470000 records committed, current elapsed time = 961.697 [2024-12-29 16:02:34] pool-1-thread-6 - 470000 records committed, current elapsed time = 961.995 [2024-12-29 16:02:34] pool-1-thread-3 - 470000 records committed, current elapsed time = 962.649 [2024-12-29 16:02:34] pool-1-thread-9 - 470000 records committed, current elapsed time = 962.796 [2024-12-29 16:02:35] pool-1-thread-7 - 470000 records committed, current elapsed time = 963.049 [2024-12-29 16:02:35] pool-1-thread-10 - 470000 records committed, current elapsed time = 963.494 [2024-12-29 16:02:39] pool-1-thread-5 - 475000 records committed, current elapsed time = 967.114 [2024-12-29 16:02:39] pool-1-thread-4 - 475000 records committed, current elapsed time = 967.838 [2024-12-29 16:02:41] pool-1-thread-8 - 470000 records committed, current elapsed time = 969.445 [2024-12-29 16:02:41] pool-1-thread-1 - 475000 records committed, current elapsed time = 969.551 [2024-12-29 16:02:42] pool-1-thread-2 - 475000 records committed, current elapsed time = 970.626 [2024-12-29 16:02:43] pool-1-thread-6 - 475000 records committed, current elapsed time = 971.048 [2024-12-29 16:02:44] pool-1-thread-3 - 475000 records committed, current elapsed time = 972.242 [2024-12-29 16:02:44] pool-1-thread-7 - 475000 records committed, current elapsed time = 972.247 [2024-12-29 16:02:44] pool-1-thread-9 - 475000 records committed, current elapsed time = 972.311 [2024-12-29 16:02:45] pool-1-thread-10 - 475000 records committed, current elapsed time = 973.181 [2024-12-29 16:02:53] pool-1-thread-5 - 480000 records committed, current elapsed time = 981.288 [2024-12-29 16:02:56] pool-1-thread-4 - 480000 records committed, current elapsed time = 984.399 [2024-12-29 16:02:57] pool-1-thread-8 - 475000 records committed, current elapsed time = 985.163 [2024-12-29 16:03:00] pool-1-thread-1 - 480000 records committed, current elapsed time = 988.865 [2024-12-29 16:03:02] pool-1-thread-2 - 480000 records committed, current elapsed time = 990.644 [2024-12-29 16:03:03] pool-1-thread-6 - 480000 records committed, current elapsed time = 991.562 [2024-12-29 16:03:08] pool-1-thread-9 - 480000 records committed, current elapsed time = 996.320 [2024-12-29 16:03:09] pool-1-thread-10 - 480000 records committed, current elapsed time = 997.244 [2024-12-29 16:03:09] pool-1-thread-7 - 480000 records committed, current elapsed time = 997.393 [2024-12-29 16:03:10] pool-1-thread-3 - 480000 records committed, current elapsed time = 998.305 [2024-12-29 16:03:14] pool-1-thread-5 - 485000 records committed, current elapsed time = 1002.655 [2024-12-29 16:03:15] pool-1-thread-4 - 485000 records committed, current elapsed time = 1003.146 [2024-12-29 16:03:15] pool-1-thread-8 - 480000 records committed, current elapsed time = 1003.837 [2024-12-29 16:03:16] pool-1-thread-1 - 485000 records committed, current elapsed time = 1004.428 [2024-12-29 16:03:17] pool-1-thread-2 - 485000 records committed, current elapsed time = 1005.239 [2024-12-29 16:03:17] pool-1-thread-6 - 485000 records committed, current elapsed time = 1005.640 [2024-12-29 16:03:18] pool-1-thread-9 - 485000 records committed, current elapsed time = 1006.579 [2024-12-29 16:03:18] pool-1-thread-3 - 485000 records committed, current elapsed time = 1006.710 [2024-12-29 16:03:19] pool-1-thread-10 - 485000 records committed, current elapsed time = 1007.033 [2024-12-29 16:03:19] pool-1-thread-7 - 485000 records committed, current elapsed time = 1007.093 [2024-12-29 16:03:21] pool-1-thread-5 - 490000 records committed, current elapsed time = 1009.790 [2024-12-29 16:03:22] pool-1-thread-4 - 490000 records committed, current elapsed time = 1010.381 [2024-12-29 16:03:23] pool-1-thread-8 - 485000 records committed, current elapsed time = 1011.426 [2024-12-29 16:03:23] pool-1-thread-1 - 490000 records committed, current elapsed time = 1011.893 [2024-12-29 16:03:24] pool-1-thread-2 - 490000 records committed, current elapsed time = 1012.943 [2024-12-29 16:03:27] pool-1-thread-6 - 490000 records committed, current elapsed time = 1015.932 [2024-12-29 16:03:28] pool-1-thread-3 - 490000 records committed, current elapsed time = 1016.241 [2024-12-29 16:03:28] pool-1-thread-10 - 490000 records committed, current elapsed time = 1016.671 [2024-12-29 16:03:28] pool-1-thread-7 - 490000 records committed, current elapsed time = 1016.874 [2024-12-29 16:03:29] pool-1-thread-9 - 490000 records committed, current elapsed time = 1017.358 [2024-12-29 16:03:31] pool-1-thread-4 - 495000 records committed, current elapsed time = 1019.703 [2024-12-29 16:03:32] pool-1-thread-5 - 495000 records committed, current elapsed time = 1020.056 [2024-12-29 16:03:33] pool-1-thread-1 - 495000 records committed, current elapsed time = 1021.210 [2024-12-29 16:03:33] pool-1-thread-8 - 490000 records committed, current elapsed time = 1021.471 [2024-12-29 16:03:33] pool-1-thread-2 - 495000 records committed, current elapsed time = 1021.823 [2024-12-29 16:03:35] pool-1-thread-6 - 495000 records committed, current elapsed time = 1023.098 [2024-12-29 16:03:35] pool-1-thread-3 - 495000 records committed, current elapsed time = 1023.480 [2024-12-29 16:03:35] pool-1-thread-10 - 495000 records committed, current elapsed time = 1023.950 [2024-12-29 16:03:36] pool-1-thread-7 - 495000 records committed, current elapsed time = 1024.082 [2024-12-29 16:03:36] pool-1-thread-9 - 495000 records committed, current elapsed time = 1024.135 [2024-12-29 16:03:38] pool-1-thread-4 - 500000 records committed, current elapsed time = 1026.590 [2024-12-29 16:03:38] pool-1-thread-5 - 500000 records committed, current elapsed time = 1026.785 [2024-12-29 16:03:39] pool-1-thread-8 - 495000 records committed, current elapsed time = 1027.000 [2024-12-29 16:03:39] pool-1-thread-1 - 500000 records committed, current elapsed time = 1027.045 [2024-12-29 16:03:39] pool-1-thread-2 - 500000 records committed, current elapsed time = 1027.342 [2024-12-29 16:03:39] pool-1-thread-6 - 500000 records committed, current elapsed time = 1027.621 [2024-12-29 16:03:40] pool-1-thread-3 - 500000 records committed, current elapsed time = 1028.467 [2024-12-29 16:03:41] pool-1-thread-10 - 500000 records committed, current elapsed time = 1029.895 [2024-12-29 16:03:41] pool-1-thread-7 - 500000 records committed, current elapsed time = 1029.943 [2024-12-29 16:03:42] pool-1-thread-9 - 500000 records committed, current elapsed time = 1030.241 [2024-12-29 16:03:42] pool-1-thread-8 - 500000 records committed, current elapsed time = 1030.825
TiDBの外でUUIDを生成してデータを登録した時の実行ログ(UUID バージョン4)
[INFO] --- exec:3.5.0:java (default-cli) @ uuid-hotspot-test --- [2024-12-29 16:28:47] pool-1-thread-5 - 5000 records committed, current elapsed time = 3.456 [2024-12-29 16:28:48] pool-1-thread-7 - 5000 records committed, current elapsed time = 3.882 [2024-12-29 16:28:48] pool-1-thread-8 - 5000 records committed, current elapsed time = 3.891 [2024-12-29 16:28:48] pool-1-thread-4 - 5000 records committed, current elapsed time = 3.904 [2024-12-29 16:28:48] pool-1-thread-6 - 5000 records committed, current elapsed time = 3.906 [2024-12-29 16:28:48] pool-1-thread-1 - 5000 records committed, current elapsed time = 3.918 [2024-12-29 16:28:48] pool-1-thread-3 - 5000 records committed, current elapsed time = 3.928 [2024-12-29 16:28:48] pool-1-thread-2 - 5000 records committed, current elapsed time = 3.967 [2024-12-29 16:28:48] pool-1-thread-9 - 5000 records committed, current elapsed time = 4.002 [2024-12-29 16:28:48] pool-1-thread-10 - 5000 records committed, current elapsed time = 4.328 [2024-12-29 16:28:51] pool-1-thread-5 - 10000 records committed, current elapsed time = 7.085 [2024-12-29 16:28:52] pool-1-thread-1 - 10000 records committed, current elapsed time = 8.547 [2024-12-29 16:28:52] pool-1-thread-8 - 10000 records committed, current elapsed time = 8.671 [2024-12-29 16:28:53] pool-1-thread-7 - 10000 records committed, current elapsed time = 9.195 [2024-12-29 16:28:53] pool-1-thread-3 - 10000 records committed, current elapsed time = 9.202 [2024-12-29 16:28:53] pool-1-thread-6 - 10000 records committed, current elapsed time = 9.444 [2024-12-29 16:28:53] pool-1-thread-9 - 10000 records committed, current elapsed time = 9.474 [2024-12-29 16:28:54] pool-1-thread-2 - 10000 records committed, current elapsed time = 9.765 [2024-12-29 16:28:54] pool-1-thread-10 - 10000 records committed, current elapsed time = 9.825 [2024-12-29 16:28:54] pool-1-thread-4 - 10000 records committed, current elapsed time = 9.963 [2024-12-29 16:28:56] pool-1-thread-5 - 15000 records committed, current elapsed time = 12.263 [2024-12-29 16:28:58] pool-1-thread-1 - 15000 records committed, current elapsed time = 13.807 [2024-12-29 16:28:58] pool-1-thread-6 - 15000 records committed, current elapsed time = 14.037 [2024-12-29 16:28:58] pool-1-thread-9 - 15000 records committed, current elapsed time = 14.056 [2024-12-29 16:28:58] pool-1-thread-8 - 15000 records committed, current elapsed time = 14.214 [2024-12-29 16:28:58] pool-1-thread-2 - 15000 records committed, current elapsed time = 14.283 [2024-12-29 16:28:59] pool-1-thread-3 - 15000 records committed, current elapsed time = 14.725 [2024-12-29 16:28:59] pool-1-thread-7 - 15000 records committed, current elapsed time = 14.846 [2024-12-29 16:28:59] pool-1-thread-10 - 15000 records committed, current elapsed time = 14.951 [2024-12-29 16:28:59] pool-1-thread-4 - 15000 records committed, current elapsed time = 15.097 [2024-12-29 16:29:01] pool-1-thread-5 - 20000 records committed, current elapsed time = 17.155 [2024-12-29 16:29:03] pool-1-thread-6 - 20000 records committed, current elapsed time = 19.101 [2024-12-29 16:29:03] pool-1-thread-1 - 20000 records committed, current elapsed time = 19.356 [2024-12-29 16:29:03] pool-1-thread-9 - 20000 records committed, current elapsed time = 19.541 [2024-12-29 16:29:03] pool-1-thread-2 - 20000 records committed, current elapsed time = 19.625 [2024-12-29 16:29:04] pool-1-thread-3 - 20000 records committed, current elapsed time = 19.875 [2024-12-29 16:29:04] pool-1-thread-10 - 20000 records committed, current elapsed time = 20.001 [2024-12-29 16:29:04] pool-1-thread-7 - 20000 records committed, current elapsed time = 20.267 [2024-12-29 16:29:04] pool-1-thread-8 - 20000 records committed, current elapsed time = 20.277 [2024-12-29 16:29:04] pool-1-thread-4 - 20000 records committed, current elapsed time = 20.284 [2024-12-29 16:29:08] pool-1-thread-5 - 25000 records committed, current elapsed time = 23.727 [2024-12-29 16:29:08] pool-1-thread-6 - 25000 records committed, current elapsed time = 24.499 [2024-12-29 16:29:09] pool-1-thread-3 - 25000 records committed, current elapsed time = 25.155 [2024-12-29 16:29:09] pool-1-thread-2 - 25000 records committed, current elapsed time = 25.278 [2024-12-29 16:29:09] pool-1-thread-9 - 25000 records committed, current elapsed time = 25.283 [2024-12-29 16:29:10] pool-1-thread-10 - 25000 records committed, current elapsed time = 25.985 [2024-12-29 16:29:10] pool-1-thread-1 - 25000 records committed, current elapsed time = 26.036 [2024-12-29 16:29:10] pool-1-thread-4 - 25000 records committed, current elapsed time = 26.120 [2024-12-29 16:29:10] pool-1-thread-7 - 25000 records committed, current elapsed time = 26.628 [2024-12-29 16:29:10] pool-1-thread-8 - 25000 records committed, current elapsed time = 26.680 [2024-12-29 16:29:13] pool-1-thread-5 - 30000 records committed, current elapsed time = 28.816 [2024-12-29 16:29:14] pool-1-thread-6 - 30000 records committed, current elapsed time = 30.377 [2024-12-29 16:29:15] pool-1-thread-3 - 30000 records committed, current elapsed time = 30.731 [2024-12-29 16:29:15] pool-1-thread-9 - 30000 records committed, current elapsed time = 30.950 [2024-12-29 16:29:15] pool-1-thread-2 - 30000 records committed, current elapsed time = 31.484 [2024-12-29 16:29:15] pool-1-thread-10 - 30000 records committed, current elapsed time = 31.491 [2024-12-29 16:29:16] pool-1-thread-1 - 30000 records committed, current elapsed time = 32.089 [2024-12-29 16:29:16] pool-1-thread-7 - 30000 records committed, current elapsed time = 32.117 [2024-12-29 16:29:17] pool-1-thread-8 - 30000 records committed, current elapsed time = 32.899 [2024-12-29 16:29:17] pool-1-thread-4 - 30000 records committed, current elapsed time = 32.922 [2024-12-29 16:29:19] pool-1-thread-5 - 35000 records committed, current elapsed time = 34.914 [2024-12-29 16:29:20] pool-1-thread-6 - 35000 records committed, current elapsed time = 35.926 [2024-12-29 16:29:20] pool-1-thread-3 - 35000 records committed, current elapsed time = 36.236 [2024-12-29 16:29:20] pool-1-thread-9 - 35000 records committed, current elapsed time = 36.617 [2024-12-29 16:29:21] pool-1-thread-10 - 35000 records committed, current elapsed time = 36.880 [2024-12-29 16:29:21] pool-1-thread-2 - 35000 records committed, current elapsed time = 37.004 [2024-12-29 16:29:21] pool-1-thread-1 - 35000 records committed, current elapsed time = 37.169 [2024-12-29 16:29:22] pool-1-thread-7 - 35000 records committed, current elapsed time = 37.905 [2024-12-29 16:29:22] pool-1-thread-8 - 35000 records committed, current elapsed time = 38.043 [2024-12-29 16:29:22] pool-1-thread-4 - 35000 records committed, current elapsed time = 38.259 [2024-12-29 16:29:24] pool-1-thread-5 - 40000 records committed, current elapsed time = 40.520 [2024-12-29 16:29:30] pool-1-thread-6 - 40000 records committed, current elapsed time = 45.800 [2024-12-29 16:29:30] pool-1-thread-3 - 40000 records committed, current elapsed time = 45.976 [2024-12-29 16:29:30] pool-1-thread-1 - 40000 records committed, current elapsed time = 46.171 [2024-12-29 16:29:30] pool-1-thread-9 - 40000 records committed, current elapsed time = 46.521 [2024-12-29 16:29:30] pool-1-thread-10 - 40000 records committed, current elapsed time = 46.531 [2024-12-29 16:29:30] pool-1-thread-2 - 40000 records committed, current elapsed time = 46.537 [2024-12-29 16:29:32] pool-1-thread-7 - 40000 records committed, current elapsed time = 48.100 [2024-12-29 16:29:32] pool-1-thread-4 - 40000 records committed, current elapsed time = 48.175 [2024-12-29 16:29:32] pool-1-thread-8 - 40000 records committed, current elapsed time = 48.549 [2024-12-29 16:29:35] pool-1-thread-5 - 45000 records committed, current elapsed time = 51.058 [2024-12-29 16:29:36] pool-1-thread-6 - 45000 records committed, current elapsed time = 52.184 [2024-12-29 16:29:37] pool-1-thread-1 - 45000 records committed, current elapsed time = 52.752 [2024-12-29 16:29:37] pool-1-thread-3 - 45000 records committed, current elapsed time = 52.904 [2024-12-29 16:29:37] pool-1-thread-9 - 45000 records committed, current elapsed time = 52.958 [2024-12-29 16:29:37] pool-1-thread-7 - 45000 records committed, current elapsed time = 53.281 [2024-12-29 16:29:37] pool-1-thread-2 - 45000 records committed, current elapsed time = 53.306 [2024-12-29 16:29:37] pool-1-thread-10 - 45000 records committed, current elapsed time = 53.511 [2024-12-29 16:29:39] pool-1-thread-4 - 45000 records committed, current elapsed time = 55.043 [2024-12-29 16:29:39] pool-1-thread-8 - 45000 records committed, current elapsed time = 55.265 [2024-12-29 16:29:41] pool-1-thread-5 - 50000 records committed, current elapsed time = 57.070 [2024-12-29 16:29:42] pool-1-thread-1 - 50000 records committed, current elapsed time = 58.676 [2024-12-29 16:29:43] pool-1-thread-6 - 50000 records committed, current elapsed time = 58.684 [2024-12-29 16:29:43] pool-1-thread-3 - 50000 records committed, current elapsed time = 59.085 [2024-12-29 16:29:43] pool-1-thread-9 - 50000 records committed, current elapsed time = 59.353 [2024-12-29 16:29:44] pool-1-thread-10 - 50000 records committed, current elapsed time = 60.125 [2024-12-29 16:29:44] pool-1-thread-2 - 50000 records committed, current elapsed time = 60.167 [2024-12-29 16:29:44] pool-1-thread-7 - 50000 records committed, current elapsed time = 60.541 [2024-12-29 16:29:45] pool-1-thread-8 - 50000 records committed, current elapsed time = 61.377 [2024-12-29 16:29:46] pool-1-thread-4 - 50000 records committed, current elapsed time = 61.992 [2024-12-29 16:29:47] pool-1-thread-5 - 55000 records committed, current elapsed time = 62.785 [2024-12-29 16:29:49] pool-1-thread-1 - 55000 records committed, current elapsed time = 65.643 [2024-12-29 16:29:50] pool-1-thread-3 - 55000 records committed, current elapsed time = 66.180 [2024-12-29 16:29:50] pool-1-thread-6 - 55000 records committed, current elapsed time = 66.370 [2024-12-29 16:29:51] pool-1-thread-9 - 55000 records committed, current elapsed time = 67.230 [2024-12-29 16:29:53] pool-1-thread-10 - 55000 records committed, current elapsed time = 68.852 [2024-12-29 16:29:53] pool-1-thread-7 - 55000 records committed, current elapsed time = 68.902 [2024-12-29 16:29:53] pool-1-thread-2 - 55000 records committed, current elapsed time = 68.916 [2024-12-29 16:29:53] pool-1-thread-8 - 55000 records committed, current elapsed time = 68.973 [2024-12-29 16:29:53] pool-1-thread-4 - 55000 records committed, current elapsed time = 69.489 [2024-12-29 16:29:55] pool-1-thread-5 - 60000 records committed, current elapsed time = 71.194 [2024-12-29 16:29:57] pool-1-thread-1 - 60000 records committed, current elapsed time = 72.802 [2024-12-29 16:29:58] pool-1-thread-3 - 60000 records committed, current elapsed time = 74.095 [2024-12-29 16:29:58] pool-1-thread-6 - 60000 records committed, current elapsed time = 74.192 [2024-12-29 16:29:58] pool-1-thread-9 - 60000 records committed, current elapsed time = 74.645 [2024-12-29 16:29:59] pool-1-thread-10 - 60000 records committed, current elapsed time = 74.904 [2024-12-29 16:29:59] pool-1-thread-8 - 60000 records committed, current elapsed time = 75.153 [2024-12-29 16:29:59] pool-1-thread-2 - 60000 records committed, current elapsed time = 75.290 [2024-12-29 16:29:59] pool-1-thread-7 - 60000 records committed, current elapsed time = 75.316 [2024-12-29 16:30:00] pool-1-thread-4 - 60000 records committed, current elapsed time = 75.836 [2024-12-29 16:30:02] pool-1-thread-5 - 65000 records committed, current elapsed time = 78.183 [2024-12-29 16:30:04] pool-1-thread-1 - 65000 records committed, current elapsed time = 79.820 [2024-12-29 16:30:04] pool-1-thread-3 - 65000 records committed, current elapsed time = 80.417 [2024-12-29 16:30:05] pool-1-thread-6 - 65000 records committed, current elapsed time = 80.706 [2024-12-29 16:30:05] pool-1-thread-10 - 65000 records committed, current elapsed time = 81.096 [2024-12-29 16:30:05] pool-1-thread-9 - 65000 records committed, current elapsed time = 81.105 [2024-12-29 16:30:05] pool-1-thread-2 - 65000 records committed, current elapsed time = 81.355 [2024-12-29 16:30:05] pool-1-thread-8 - 65000 records committed, current elapsed time = 81.355 [2024-12-29 16:30:05] pool-1-thread-4 - 65000 records committed, current elapsed time = 81.524 [2024-12-29 16:30:06] pool-1-thread-7 - 65000 records committed, current elapsed time = 82.363 [2024-12-29 16:30:08] pool-1-thread-5 - 70000 records committed, current elapsed time = 84.051 [2024-12-29 16:30:09] pool-1-thread-1 - 70000 records committed, current elapsed time = 85.611 [2024-12-29 16:30:10] pool-1-thread-3 - 70000 records committed, current elapsed time = 86.075 [2024-12-29 16:30:10] pool-1-thread-6 - 70000 records committed, current elapsed time = 86.397 [2024-12-29 16:30:11] pool-1-thread-9 - 70000 records committed, current elapsed time = 87.011 [2024-12-29 16:30:11] pool-1-thread-2 - 70000 records committed, current elapsed time = 87.230 [2024-12-29 16:30:11] pool-1-thread-4 - 70000 records committed, current elapsed time = 87.551 [2024-12-29 16:30:12] pool-1-thread-10 - 70000 records committed, current elapsed time = 88.043 [2024-12-29 16:30:13] pool-1-thread-8 - 70000 records committed, current elapsed time = 88.694 [2024-12-29 16:30:14] pool-1-thread-7 - 70000 records committed, current elapsed time = 89.959 [2024-12-29 16:30:18] pool-1-thread-5 - 75000 records committed, current elapsed time = 94.346 [2024-12-29 16:30:20] pool-1-thread-1 - 75000 records committed, current elapsed time = 96.127 [2024-12-29 16:30:20] pool-1-thread-3 - 75000 records committed, current elapsed time = 96.499 [2024-12-29 16:30:20] pool-1-thread-6 - 75000 records committed, current elapsed time = 96.610 [2024-12-29 16:30:22] pool-1-thread-10 - 75000 records committed, current elapsed time = 97.887 [2024-12-29 16:30:22] pool-1-thread-9 - 75000 records committed, current elapsed time = 98.258 [2024-12-29 16:30:22] pool-1-thread-2 - 75000 records committed, current elapsed time = 98.279 [2024-12-29 16:30:22] pool-1-thread-4 - 75000 records committed, current elapsed time = 98.531 [2024-12-29 16:30:23] pool-1-thread-8 - 75000 records committed, current elapsed time = 98.826 [2024-12-29 16:30:23] pool-1-thread-7 - 75000 records committed, current elapsed time = 99.238 [2024-12-29 16:30:25] pool-1-thread-5 - 80000 records committed, current elapsed time = 100.919 [2024-12-29 16:30:26] pool-1-thread-1 - 80000 records committed, current elapsed time = 102.393 [2024-12-29 16:30:27] pool-1-thread-3 - 80000 records committed, current elapsed time = 103.181 [2024-12-29 16:30:28] pool-1-thread-6 - 80000 records committed, current elapsed time = 103.811 [2024-12-29 16:30:28] pool-1-thread-10 - 80000 records committed, current elapsed time = 104.474 [2024-12-29 16:30:28] pool-1-thread-9 - 80000 records committed, current elapsed time = 104.585 [2024-12-29 16:30:29] pool-1-thread-2 - 80000 records committed, current elapsed time = 104.872 [2024-12-29 16:30:29] pool-1-thread-4 - 80000 records committed, current elapsed time = 104.945 [2024-12-29 16:30:29] pool-1-thread-8 - 80000 records committed, current elapsed time = 105.316 [2024-12-29 16:30:31] pool-1-thread-7 - 80000 records committed, current elapsed time = 106.895 [2024-12-29 16:30:32] pool-1-thread-5 - 85000 records committed, current elapsed time = 108.083 [2024-12-29 16:30:33] pool-1-thread-1 - 85000 records committed, current elapsed time = 109.271 [2024-12-29 16:30:35] pool-1-thread-3 - 85000 records committed, current elapsed time = 110.681 [2024-12-29 16:30:35] pool-1-thread-10 - 85000 records committed, current elapsed time = 111.256 [2024-12-29 16:30:35] pool-1-thread-6 - 85000 records committed, current elapsed time = 111.275 [2024-12-29 16:30:36] pool-1-thread-9 - 85000 records committed, current elapsed time = 111.785 [2024-12-29 16:30:36] pool-1-thread-4 - 85000 records committed, current elapsed time = 111.880 [2024-12-29 16:30:36] pool-1-thread-2 - 85000 records committed, current elapsed time = 112.024 [2024-12-29 16:30:36] pool-1-thread-8 - 85000 records committed, current elapsed time = 112.043 [2024-12-29 16:30:36] pool-1-thread-7 - 85000 records committed, current elapsed time = 112.607 [2024-12-29 16:30:38] pool-1-thread-5 - 90000 records committed, current elapsed time = 114.586 [2024-12-29 16:30:40] pool-1-thread-1 - 90000 records committed, current elapsed time = 115.726 [2024-12-29 16:30:40] pool-1-thread-3 - 90000 records committed, current elapsed time = 116.664 [2024-12-29 16:30:41] pool-1-thread-10 - 90000 records committed, current elapsed time = 117.484 [2024-12-29 16:30:42] pool-1-thread-6 - 90000 records committed, current elapsed time = 117.870 [2024-12-29 16:30:43] pool-1-thread-9 - 90000 records committed, current elapsed time = 119.349 [2024-12-29 16:30:43] pool-1-thread-8 - 90000 records committed, current elapsed time = 119.450 [2024-12-29 16:30:44] pool-1-thread-2 - 90000 records committed, current elapsed time = 119.779 [2024-12-29 16:30:44] pool-1-thread-4 - 90000 records committed, current elapsed time = 120.595 [2024-12-29 16:30:46] pool-1-thread-7 - 90000 records committed, current elapsed time = 121.702 [2024-12-29 16:30:46] pool-1-thread-5 - 95000 records committed, current elapsed time = 122.511 [2024-12-29 16:30:48] pool-1-thread-1 - 95000 records committed, current elapsed time = 123.722 [2024-12-29 16:30:48] pool-1-thread-3 - 95000 records committed, current elapsed time = 124.292 [2024-12-29 16:30:48] pool-1-thread-10 - 95000 records committed, current elapsed time = 124.596 [2024-12-29 16:30:48] pool-1-thread-6 - 95000 records committed, current elapsed time = 124.610 [2024-12-29 16:30:49] pool-1-thread-9 - 95000 records committed, current elapsed time = 124.894 [2024-12-29 16:30:50] pool-1-thread-8 - 95000 records committed, current elapsed time = 126.357 [2024-12-29 16:30:51] pool-1-thread-2 - 95000 records committed, current elapsed time = 126.837 [2024-12-29 16:30:51] pool-1-thread-7 - 95000 records committed, current elapsed time = 127.135 [2024-12-29 16:30:51] pool-1-thread-4 - 95000 records committed, current elapsed time = 127.221 [2024-12-29 16:30:52] pool-1-thread-5 - 100000 records committed, current elapsed time = 128.633 [2024-12-29 16:30:53] pool-1-thread-1 - 100000 records committed, current elapsed time = 129.679 [2024-12-29 16:30:54] pool-1-thread-3 - 100000 records committed, current elapsed time = 129.942 [2024-12-29 16:30:54] pool-1-thread-6 - 100000 records committed, current elapsed time = 130.455 [2024-12-29 16:30:55] pool-1-thread-10 - 100000 records committed, current elapsed time = 131.433 [2024-12-29 16:30:56] pool-1-thread-9 - 100000 records committed, current elapsed time = 131.956 [2024-12-29 16:30:56] pool-1-thread-8 - 100000 records committed, current elapsed time = 132.322 [2024-12-29 16:30:56] pool-1-thread-2 - 100000 records committed, current elapsed time = 132.546 [2024-12-29 16:30:57] pool-1-thread-7 - 100000 records committed, current elapsed time = 132.720 [2024-12-29 16:30:57] pool-1-thread-4 - 100000 records committed, current elapsed time = 132.888 [2024-12-29 16:30:58] pool-1-thread-5 - 105000 records committed, current elapsed time = 134.294 [2024-12-29 16:30:59] pool-1-thread-1 - 105000 records committed, current elapsed time = 135.459 [2024-12-29 16:31:00] pool-1-thread-3 - 105000 records committed, current elapsed time = 135.972 [2024-12-29 16:31:01] pool-1-thread-6 - 105000 records committed, current elapsed time = 137.131 [2024-12-29 16:31:01] pool-1-thread-10 - 105000 records committed, current elapsed time = 137.161 [2024-12-29 16:31:01] pool-1-thread-9 - 105000 records committed, current elapsed time = 137.510 [2024-12-29 16:31:03] pool-1-thread-8 - 105000 records committed, current elapsed time = 138.795 [2024-12-29 16:31:03] pool-1-thread-2 - 105000 records committed, current elapsed time = 138.983 [2024-12-29 16:31:03] pool-1-thread-7 - 105000 records committed, current elapsed time = 139.024 [2024-12-29 16:31:03] pool-1-thread-4 - 105000 records committed, current elapsed time = 139.453 [2024-12-29 16:31:07] pool-1-thread-5 - 110000 records committed, current elapsed time = 143.632 [2024-12-29 16:31:09] pool-1-thread-1 - 110000 records committed, current elapsed time = 145.328 [2024-12-29 16:31:09] pool-1-thread-3 - 110000 records committed, current elapsed time = 145.587 [2024-12-29 16:31:10] pool-1-thread-9 - 110000 records committed, current elapsed time = 146.203 [2024-12-29 16:31:10] pool-1-thread-10 - 110000 records committed, current elapsed time = 146.482 [2024-12-29 16:31:10] pool-1-thread-6 - 110000 records committed, current elapsed time = 146.574 [2024-12-29 16:31:13] pool-1-thread-8 - 110000 records committed, current elapsed time = 148.721 [2024-12-29 16:31:13] pool-1-thread-4 - 110000 records committed, current elapsed time = 148.917 [2024-12-29 16:31:13] pool-1-thread-2 - 110000 records committed, current elapsed time = 148.956 [2024-12-29 16:31:13] pool-1-thread-7 - 110000 records committed, current elapsed time = 149.003 [2024-12-29 16:31:15] pool-1-thread-5 - 115000 records committed, current elapsed time = 150.793 [2024-12-29 16:31:15] pool-1-thread-1 - 115000 records committed, current elapsed time = 151.641 [2024-12-29 16:31:16] pool-1-thread-3 - 115000 records committed, current elapsed time = 152.340 [2024-12-29 16:31:17] pool-1-thread-9 - 115000 records committed, current elapsed time = 152.914 [2024-12-29 16:31:17] pool-1-thread-10 - 115000 records committed, current elapsed time = 153.336 [2024-12-29 16:31:17] pool-1-thread-6 - 115000 records committed, current elapsed time = 153.442 [2024-12-29 16:31:19] pool-1-thread-8 - 115000 records committed, current elapsed time = 154.994 [2024-12-29 16:31:20] pool-1-thread-2 - 115000 records committed, current elapsed time = 155.904 [2024-12-29 16:31:20] pool-1-thread-4 - 115000 records committed, current elapsed time = 155.907 [2024-12-29 16:31:20] pool-1-thread-7 - 115000 records committed, current elapsed time = 155.938 [2024-12-29 16:31:20] pool-1-thread-5 - 120000 records committed, current elapsed time = 156.437 [2024-12-29 16:31:22] pool-1-thread-1 - 120000 records committed, current elapsed time = 157.987 [2024-12-29 16:31:22] pool-1-thread-3 - 120000 records committed, current elapsed time = 158.216 [2024-12-29 16:31:23] pool-1-thread-9 - 120000 records committed, current elapsed time = 158.944 [2024-12-29 16:31:23] pool-1-thread-10 - 120000 records committed, current elapsed time = 158.973 [2024-12-29 16:31:24] pool-1-thread-6 - 120000 records committed, current elapsed time = 159.888 [2024-12-29 16:31:25] pool-1-thread-8 - 120000 records committed, current elapsed time = 161.369 [2024-12-29 16:31:25] pool-1-thread-7 - 120000 records committed, current elapsed time = 161.595 [2024-12-29 16:31:25] pool-1-thread-4 - 120000 records committed, current elapsed time = 161.675 [2024-12-29 16:31:26] pool-1-thread-2 - 120000 records committed, current elapsed time = 162.425 [2024-12-29 16:31:26] pool-1-thread-5 - 125000 records committed, current elapsed time = 162.447 [2024-12-29 16:31:28] pool-1-thread-1 - 125000 records committed, current elapsed time = 163.783 [2024-12-29 16:31:28] pool-1-thread-3 - 125000 records committed, current elapsed time = 164.014 [2024-12-29 16:31:29] pool-1-thread-10 - 125000 records committed, current elapsed time = 165.620 [2024-12-29 16:31:30] pool-1-thread-9 - 125000 records committed, current elapsed time = 165.736 [2024-12-29 16:31:30] pool-1-thread-6 - 125000 records committed, current elapsed time = 166.018 [2024-12-29 16:31:31] pool-1-thread-4 - 125000 records committed, current elapsed time = 167.046 [2024-12-29 16:31:31] pool-1-thread-8 - 125000 records committed, current elapsed time = 167.630 [2024-12-29 16:31:32] pool-1-thread-7 - 125000 records committed, current elapsed time = 167.850 [2024-12-29 16:31:32] pool-1-thread-2 - 125000 records committed, current elapsed time = 167.862 [2024-12-29 16:31:32] pool-1-thread-5 - 130000 records committed, current elapsed time = 167.917 [2024-12-29 16:31:34] pool-1-thread-1 - 130000 records committed, current elapsed time = 170.002 [2024-12-29 16:31:34] pool-1-thread-3 - 130000 records committed, current elapsed time = 170.436 [2024-12-29 16:31:35] pool-1-thread-9 - 130000 records committed, current elapsed time = 171.366 [2024-12-29 16:31:35] pool-1-thread-10 - 130000 records committed, current elapsed time = 171.444 [2024-12-29 16:31:37] pool-1-thread-6 - 130000 records committed, current elapsed time = 172.683 [2024-12-29 16:31:37] pool-1-thread-4 - 130000 records committed, current elapsed time = 173.528 [2024-12-29 16:31:38] pool-1-thread-8 - 130000 records committed, current elapsed time = 174.064 [2024-12-29 16:31:38] pool-1-thread-2 - 130000 records committed, current elapsed time = 174.085 [2024-12-29 16:31:38] pool-1-thread-7 - 130000 records committed, current elapsed time = 174.137 [2024-12-29 16:31:39] pool-1-thread-5 - 135000 records committed, current elapsed time = 175.316 [2024-12-29 16:31:41] pool-1-thread-1 - 135000 records committed, current elapsed time = 177.080 [2024-12-29 16:31:41] pool-1-thread-3 - 135000 records committed, current elapsed time = 177.500 [2024-12-29 16:31:42] pool-1-thread-9 - 135000 records committed, current elapsed time = 178.366 [2024-12-29 16:31:43] pool-1-thread-10 - 135000 records committed, current elapsed time = 178.809 [2024-12-29 16:31:44] pool-1-thread-6 - 135000 records committed, current elapsed time = 180.604 [2024-12-29 16:31:45] pool-1-thread-2 - 135000 records committed, current elapsed time = 181.575 [2024-12-29 16:31:46] pool-1-thread-4 - 135000 records committed, current elapsed time = 182.230 [2024-12-29 16:31:47] pool-1-thread-8 - 135000 records committed, current elapsed time = 183.147 [2024-12-29 16:31:48] pool-1-thread-7 - 135000 records committed, current elapsed time = 184.128 [2024-12-29 16:31:48] pool-1-thread-5 - 140000 records committed, current elapsed time = 184.581 [2024-12-29 16:31:49] pool-1-thread-1 - 140000 records committed, current elapsed time = 185.555 [2024-12-29 16:31:50] pool-1-thread-3 - 140000 records committed, current elapsed time = 186.200 [2024-12-29 16:31:51] pool-1-thread-9 - 140000 records committed, current elapsed time = 186.792 [2024-12-29 16:31:52] pool-1-thread-10 - 140000 records committed, current elapsed time = 187.910 [2024-12-29 16:31:52] pool-1-thread-6 - 140000 records committed, current elapsed time = 188.271 [2024-12-29 16:31:59] pool-1-thread-4 - 140000 records committed, current elapsed time = 194.881 [2024-12-29 16:31:59] pool-1-thread-2 - 140000 records committed, current elapsed time = 195.181 [2024-12-29 16:31:59] pool-1-thread-8 - 140000 records committed, current elapsed time = 195.478 [2024-12-29 16:32:01] pool-1-thread-5 - 145000 records committed, current elapsed time = 197.022 [2024-12-29 16:32:01] pool-1-thread-7 - 140000 records committed, current elapsed time = 197.056 [2024-12-29 16:32:04] pool-1-thread-1 - 145000 records committed, current elapsed time = 199.840 [2024-12-29 16:32:06] pool-1-thread-3 - 145000 records committed, current elapsed time = 202.385 [2024-12-29 16:32:07] pool-1-thread-9 - 145000 records committed, current elapsed time = 203.140 [2024-12-29 16:32:09] pool-1-thread-6 - 145000 records committed, current elapsed time = 205.253 [2024-12-29 16:32:09] pool-1-thread-10 - 145000 records committed, current elapsed time = 205.377 [2024-12-29 16:32:11] pool-1-thread-4 - 145000 records committed, current elapsed time = 207.360 [2024-12-29 16:32:11] pool-1-thread-2 - 145000 records committed, current elapsed time = 207.428 [2024-12-29 16:32:12] pool-1-thread-8 - 145000 records committed, current elapsed time = 207.891 [2024-12-29 16:32:12] pool-1-thread-5 - 150000 records committed, current elapsed time = 208.135 [2024-12-29 16:32:12] pool-1-thread-7 - 145000 records committed, current elapsed time = 208.149 [2024-12-29 16:32:13] pool-1-thread-1 - 150000 records committed, current elapsed time = 208.781 [2024-12-29 16:32:23] pool-1-thread-9 - 150000 records committed, current elapsed time = 219.024 [2024-12-29 16:32:23] pool-1-thread-3 - 150000 records committed, current elapsed time = 219.365 [2024-12-29 16:32:25] pool-1-thread-6 - 150000 records committed, current elapsed time = 220.953 [2024-12-29 16:32:25] pool-1-thread-10 - 150000 records committed, current elapsed time = 221.098 [2024-12-29 16:32:27] pool-1-thread-2 - 150000 records committed, current elapsed time = 222.997 [2024-12-29 16:32:28] pool-1-thread-4 - 150000 records committed, current elapsed time = 223.908 [2024-12-29 16:32:29] pool-1-thread-8 - 150000 records committed, current elapsed time = 224.948 [2024-12-29 16:32:29] pool-1-thread-7 - 150000 records committed, current elapsed time = 225.281 [2024-12-29 16:32:29] pool-1-thread-5 - 155000 records committed, current elapsed time = 225.354 [2024-12-29 16:32:32] pool-1-thread-1 - 155000 records committed, current elapsed time = 228.071 [2024-12-29 16:32:35] pool-1-thread-9 - 155000 records committed, current elapsed time = 230.871 [2024-12-29 16:32:35] pool-1-thread-3 - 155000 records committed, current elapsed time = 230.931 [2024-12-29 16:32:36] pool-1-thread-6 - 155000 records committed, current elapsed time = 232.434 [2024-12-29 16:32:36] pool-1-thread-10 - 155000 records committed, current elapsed time = 232.652 [2024-12-29 16:32:38] pool-1-thread-8 - 155000 records committed, current elapsed time = 234.349 [2024-12-29 16:32:39] pool-1-thread-2 - 155000 records committed, current elapsed time = 235.041 [2024-12-29 16:32:39] pool-1-thread-4 - 155000 records committed, current elapsed time = 235.122 [2024-12-29 16:32:39] pool-1-thread-5 - 160000 records committed, current elapsed time = 235.205 [2024-12-29 16:32:40] pool-1-thread-7 - 155000 records committed, current elapsed time = 236.079 [2024-12-29 16:32:42] pool-1-thread-1 - 160000 records committed, current elapsed time = 237.856 [2024-12-29 16:32:43] pool-1-thread-3 - 160000 records committed, current elapsed time = 238.736 [2024-12-29 16:32:43] pool-1-thread-9 - 160000 records committed, current elapsed time = 238.810 [2024-12-29 16:32:47] pool-1-thread-6 - 160000 records committed, current elapsed time = 243.024 [2024-12-29 16:32:48] pool-1-thread-10 - 160000 records committed, current elapsed time = 243.693 [2024-12-29 16:32:51] pool-1-thread-8 - 160000 records committed, current elapsed time = 247.153 [2024-12-29 16:32:51] pool-1-thread-2 - 160000 records committed, current elapsed time = 247.679 [2024-12-29 16:32:52] pool-1-thread-5 - 165000 records committed, current elapsed time = 248.202 [2024-12-29 16:32:53] pool-1-thread-4 - 160000 records committed, current elapsed time = 249.294 [2024-12-29 16:32:54] pool-1-thread-7 - 160000 records committed, current elapsed time = 250.257 [2024-12-29 16:32:55] pool-1-thread-1 - 165000 records committed, current elapsed time = 250.881 [2024-12-29 16:32:56] pool-1-thread-3 - 165000 records committed, current elapsed time = 252.057 [2024-12-29 16:32:56] pool-1-thread-9 - 165000 records committed, current elapsed time = 252.416 [2024-12-29 16:32:57] pool-1-thread-6 - 165000 records committed, current elapsed time = 252.881 [2024-12-29 16:32:57] pool-1-thread-10 - 165000 records committed, current elapsed time = 253.302 [2024-12-29 16:32:59] pool-1-thread-8 - 165000 records committed, current elapsed time = 255.508 [2024-12-29 16:33:01] pool-1-thread-4 - 165000 records committed, current elapsed time = 257.087 [2024-12-29 16:33:01] pool-1-thread-2 - 165000 records committed, current elapsed time = 257.310 [2024-12-29 16:33:01] pool-1-thread-5 - 170000 records committed, current elapsed time = 257.347 [2024-12-29 16:33:01] pool-1-thread-1 - 170000 records committed, current elapsed time = 257.592 [2024-12-29 16:33:02] pool-1-thread-7 - 165000 records committed, current elapsed time = 257.881 [2024-12-29 16:33:02] pool-1-thread-3 - 170000 records committed, current elapsed time = 258.337 [2024-12-29 16:33:04] pool-1-thread-9 - 170000 records committed, current elapsed time = 260.071 [2024-12-29 16:33:04] pool-1-thread-6 - 170000 records committed, current elapsed time = 260.497 [2024-12-29 16:33:05] pool-1-thread-10 - 170000 records committed, current elapsed time = 261.471 [2024-12-29 16:33:08] pool-1-thread-8 - 170000 records committed, current elapsed time = 264.079 [2024-12-29 16:33:08] pool-1-thread-2 - 170000 records committed, current elapsed time = 264.611 [2024-12-29 16:33:08] pool-1-thread-4 - 170000 records committed, current elapsed time = 264.674 [2024-12-29 16:33:09] pool-1-thread-1 - 175000 records committed, current elapsed time = 264.839 [2024-12-29 16:33:09] pool-1-thread-5 - 175000 records committed, current elapsed time = 264.856 [2024-12-29 16:33:09] pool-1-thread-3 - 175000 records committed, current elapsed time = 265.343 [2024-12-29 16:33:09] pool-1-thread-7 - 170000 records committed, current elapsed time = 265.419 [2024-12-29 16:33:12] pool-1-thread-9 - 175000 records committed, current elapsed time = 267.925 [2024-12-29 16:33:12] pool-1-thread-6 - 175000 records committed, current elapsed time = 268.378 [2024-12-29 16:33:13] pool-1-thread-10 - 175000 records committed, current elapsed time = 269.200 [2024-12-29 16:33:16] pool-1-thread-8 - 175000 records committed, current elapsed time = 271.736 [2024-12-29 16:33:16] pool-1-thread-5 - 180000 records committed, current elapsed time = 272.064 [2024-12-29 16:33:16] pool-1-thread-2 - 175000 records committed, current elapsed time = 272.663 [2024-12-29 16:33:17] pool-1-thread-7 - 175000 records committed, current elapsed time = 272.716 [2024-12-29 16:33:17] pool-1-thread-4 - 175000 records committed, current elapsed time = 272.720 [2024-12-29 16:33:17] pool-1-thread-1 - 180000 records committed, current elapsed time = 272.766 [2024-12-29 16:33:17] pool-1-thread-3 - 180000 records committed, current elapsed time = 273.173 [2024-12-29 16:33:24] pool-1-thread-9 - 180000 records committed, current elapsed time = 279.786 [2024-12-29 16:33:24] pool-1-thread-6 - 180000 records committed, current elapsed time = 280.194 [2024-12-29 16:33:24] pool-1-thread-10 - 180000 records committed, current elapsed time = 280.658 [2024-12-29 16:33:26] pool-1-thread-8 - 180000 records committed, current elapsed time = 282.450 [2024-12-29 16:33:28] pool-1-thread-5 - 185000 records committed, current elapsed time = 283.882 [2024-12-29 16:33:28] pool-1-thread-1 - 185000 records committed, current elapsed time = 284.448 [2024-12-29 16:33:29] pool-1-thread-4 - 180000 records committed, current elapsed time = 284.995 [2024-12-29 16:33:29] pool-1-thread-3 - 185000 records committed, current elapsed time = 284.996 [2024-12-29 16:33:29] pool-1-thread-2 - 180000 records committed, current elapsed time = 285.042 [2024-12-29 16:33:29] pool-1-thread-7 - 180000 records committed, current elapsed time = 285.061 [2024-12-29 16:33:31] pool-1-thread-6 - 185000 records committed, current elapsed time = 287.342 [2024-12-29 16:33:33] pool-1-thread-9 - 185000 records committed, current elapsed time = 288.818 [2024-12-29 16:33:34] pool-1-thread-10 - 185000 records committed, current elapsed time = 290.006 [2024-12-29 16:33:37] pool-1-thread-8 - 185000 records committed, current elapsed time = 293.257 [2024-12-29 16:33:38] pool-1-thread-5 - 190000 records committed, current elapsed time = 294.584 [2024-12-29 16:33:39] pool-1-thread-3 - 190000 records committed, current elapsed time = 295.565 [2024-12-29 16:33:41] pool-1-thread-4 - 185000 records committed, current elapsed time = 296.690 [2024-12-29 16:33:41] pool-1-thread-2 - 185000 records committed, current elapsed time = 297.419 [2024-12-29 16:33:42] pool-1-thread-1 - 190000 records committed, current elapsed time = 297.837 [2024-12-29 16:33:42] pool-1-thread-7 - 185000 records committed, current elapsed time = 297.886 [2024-12-29 16:33:43] pool-1-thread-6 - 190000 records committed, current elapsed time = 299.082 [2024-12-29 16:33:43] pool-1-thread-9 - 190000 records committed, current elapsed time = 299.362 [2024-12-29 16:33:44] pool-1-thread-10 - 190000 records committed, current elapsed time = 299.970 [2024-12-29 16:33:45] pool-1-thread-8 - 190000 records committed, current elapsed time = 300.979 [2024-12-29 16:33:46] pool-1-thread-5 - 195000 records committed, current elapsed time = 302.634 [2024-12-29 16:33:48] pool-1-thread-3 - 195000 records committed, current elapsed time = 304.022 [2024-12-29 16:33:48] pool-1-thread-4 - 190000 records committed, current elapsed time = 304.146 [2024-12-29 16:33:48] pool-1-thread-2 - 190000 records committed, current elapsed time = 304.341 [2024-12-29 16:33:48] pool-1-thread-1 - 195000 records committed, current elapsed time = 304.610 [2024-12-29 16:33:48] pool-1-thread-7 - 190000 records committed, current elapsed time = 304.659 [2024-12-29 16:33:49] pool-1-thread-6 - 195000 records committed, current elapsed time = 305.664 [2024-12-29 16:33:50] pool-1-thread-9 - 195000 records committed, current elapsed time = 305.737 [2024-12-29 16:33:51] pool-1-thread-10 - 195000 records committed, current elapsed time = 307.609 [2024-12-29 16:33:54] pool-1-thread-8 - 195000 records committed, current elapsed time = 309.915 [2024-12-29 16:33:55] pool-1-thread-5 - 200000 records committed, current elapsed time = 310.943 [2024-12-29 16:33:55] pool-1-thread-4 - 195000 records committed, current elapsed time = 311.561 [2024-12-29 16:33:55] pool-1-thread-3 - 200000 records committed, current elapsed time = 311.664 [2024-12-29 16:33:56] pool-1-thread-7 - 195000 records committed, current elapsed time = 311.715 [2024-12-29 16:33:57] pool-1-thread-2 - 195000 records committed, current elapsed time = 313.015 [2024-12-29 16:33:57] pool-1-thread-1 - 200000 records committed, current elapsed time = 313.369 [2024-12-29 16:34:00] pool-1-thread-9 - 200000 records committed, current elapsed time = 316.093 [2024-12-29 16:34:00] pool-1-thread-6 - 200000 records committed, current elapsed time = 316.382 [2024-12-29 16:34:01] pool-1-thread-10 - 200000 records committed, current elapsed time = 317.280 [2024-12-29 16:34:04] pool-1-thread-8 - 200000 records committed, current elapsed time = 320.097 [2024-12-29 16:34:05] pool-1-thread-5 - 205000 records committed, current elapsed time = 320.952 [2024-12-29 16:34:05] pool-1-thread-3 - 205000 records committed, current elapsed time = 321.218 [2024-12-29 16:34:05] pool-1-thread-4 - 200000 records committed, current elapsed time = 321.225 [2024-12-29 16:34:06] pool-1-thread-7 - 200000 records committed, current elapsed time = 321.848 [2024-12-29 16:34:06] pool-1-thread-1 - 205000 records committed, current elapsed time = 321.918 [2024-12-29 16:34:06] pool-1-thread-2 - 200000 records committed, current elapsed time = 322.039 [2024-12-29 16:34:07] pool-1-thread-6 - 205000 records committed, current elapsed time = 323.221 [2024-12-29 16:34:08] pool-1-thread-9 - 205000 records committed, current elapsed time = 324.484 [2024-12-29 16:34:10] pool-1-thread-10 - 205000 records committed, current elapsed time = 325.917 [2024-12-29 16:34:13] pool-1-thread-8 - 205000 records committed, current elapsed time = 328.905 [2024-12-29 16:34:14] pool-1-thread-5 - 210000 records committed, current elapsed time = 330.087 [2024-12-29 16:34:14] pool-1-thread-3 - 210000 records committed, current elapsed time = 330.501 [2024-12-29 16:34:14] pool-1-thread-4 - 205000 records committed, current elapsed time = 330.511 [2024-12-29 16:34:15] pool-1-thread-7 - 205000 records committed, current elapsed time = 330.940 [2024-12-29 16:34:15] pool-1-thread-2 - 205000 records committed, current elapsed time = 331.647 [2024-12-29 16:34:16] pool-1-thread-1 - 210000 records committed, current elapsed time = 332.390 [2024-12-29 16:34:18] pool-1-thread-9 - 210000 records committed, current elapsed time = 334.104 [2024-12-29 16:34:18] pool-1-thread-6 - 210000 records committed, current elapsed time = 334.230 [2024-12-29 16:34:18] pool-1-thread-10 - 210000 records committed, current elapsed time = 334.647 [2024-12-29 16:34:21] pool-1-thread-8 - 210000 records committed, current elapsed time = 336.840 [2024-12-29 16:34:23] pool-1-thread-3 - 215000 records committed, current elapsed time = 338.818 [2024-12-29 16:34:23] pool-1-thread-5 - 215000 records committed, current elapsed time = 338.831 [2024-12-29 16:34:23] pool-1-thread-4 - 210000 records committed, current elapsed time = 339.131 [2024-12-29 16:34:29] pool-1-thread-7 - 210000 records committed, current elapsed time = 345.025 [2024-12-29 16:34:30] pool-1-thread-2 - 210000 records committed, current elapsed time = 346.144 [2024-12-29 16:34:31] pool-1-thread-1 - 215000 records committed, current elapsed time = 346.961 [2024-12-29 16:34:32] pool-1-thread-9 - 215000 records committed, current elapsed time = 347.884 [2024-12-29 16:34:32] pool-1-thread-6 - 215000 records committed, current elapsed time = 348.100 [2024-12-29 16:34:32] pool-1-thread-10 - 215000 records committed, current elapsed time = 348.347 [2024-12-29 16:34:34] pool-1-thread-8 - 215000 records committed, current elapsed time = 350.480 [2024-12-29 16:34:37] pool-1-thread-5 - 220000 records committed, current elapsed time = 353.172 [2024-12-29 16:34:37] pool-1-thread-4 - 215000 records committed, current elapsed time = 353.423 [2024-12-29 16:34:37] pool-1-thread-3 - 220000 records committed, current elapsed time = 353.435 [2024-12-29 16:34:38] pool-1-thread-7 - 215000 records committed, current elapsed time = 354.130 [2024-12-29 16:34:39] pool-1-thread-2 - 215000 records committed, current elapsed time = 355.071 [2024-12-29 16:34:40] pool-1-thread-1 - 220000 records committed, current elapsed time = 355.732 [2024-12-29 16:34:40] pool-1-thread-9 - 220000 records committed, current elapsed time = 356.158 [2024-12-29 16:34:41] pool-1-thread-6 - 220000 records committed, current elapsed time = 356.723 [2024-12-29 16:34:42] pool-1-thread-10 - 220000 records committed, current elapsed time = 357.846 [2024-12-29 16:34:43] pool-1-thread-8 - 220000 records committed, current elapsed time = 359.622 [2024-12-29 16:34:45] pool-1-thread-5 - 225000 records committed, current elapsed time = 361.217 [2024-12-29 16:34:46] pool-1-thread-3 - 225000 records committed, current elapsed time = 362.077 [2024-12-29 16:34:48] pool-1-thread-4 - 220000 records committed, current elapsed time = 363.971 [2024-12-29 16:34:48] pool-1-thread-7 - 220000 records committed, current elapsed time = 364.450 [2024-12-29 16:34:49] pool-1-thread-2 - 220000 records committed, current elapsed time = 365.011 [2024-12-29 16:34:49] pool-1-thread-1 - 225000 records committed, current elapsed time = 365.077 [2024-12-29 16:34:49] pool-1-thread-9 - 225000 records committed, current elapsed time = 365.201 [2024-12-29 16:34:50] pool-1-thread-10 - 225000 records committed, current elapsed time = 366.551 [2024-12-29 16:34:51] pool-1-thread-6 - 225000 records committed, current elapsed time = 367.566 [2024-12-29 16:34:53] pool-1-thread-8 - 225000 records committed, current elapsed time = 369.350 [2024-12-29 16:34:54] pool-1-thread-5 - 230000 records committed, current elapsed time = 370.565 [2024-12-29 16:34:55] pool-1-thread-3 - 230000 records committed, current elapsed time = 371.432 [2024-12-29 16:34:56] pool-1-thread-7 - 225000 records committed, current elapsed time = 372.194 [2024-12-29 16:34:56] pool-1-thread-4 - 225000 records committed, current elapsed time = 372.613 [2024-12-29 16:34:57] pool-1-thread-1 - 230000 records committed, current elapsed time = 372.698 [2024-12-29 16:34:57] pool-1-thread-2 - 225000 records committed, current elapsed time = 372.858 [2024-12-29 16:34:58] pool-1-thread-9 - 230000 records committed, current elapsed time = 374.011 [2024-12-29 16:34:58] pool-1-thread-10 - 230000 records committed, current elapsed time = 374.640 [2024-12-29 16:34:59] pool-1-thread-6 - 230000 records committed, current elapsed time = 374.958 [2024-12-29 16:35:02] pool-1-thread-8 - 230000 records committed, current elapsed time = 378.634 [2024-12-29 16:35:03] pool-1-thread-5 - 235000 records committed, current elapsed time = 379.258 [2024-12-29 16:35:03] pool-1-thread-3 - 235000 records committed, current elapsed time = 379.394 [2024-12-29 16:35:05] pool-1-thread-4 - 230000 records committed, current elapsed time = 381.241 [2024-12-29 16:35:06] pool-1-thread-10 - 235000 records committed, current elapsed time = 381.775 [2024-12-29 16:35:06] pool-1-thread-1 - 235000 records committed, current elapsed time = 381.780 [2024-12-29 16:35:06] pool-1-thread-7 - 230000 records committed, current elapsed time = 381.974 [2024-12-29 16:35:06] pool-1-thread-9 - 235000 records committed, current elapsed time = 382.289 [2024-12-29 16:35:07] pool-1-thread-2 - 230000 records committed, current elapsed time = 382.832 [2024-12-29 16:35:09] pool-1-thread-6 - 235000 records committed, current elapsed time = 385.209 [2024-12-29 16:35:15] pool-1-thread-8 - 235000 records committed, current elapsed time = 391.099 [2024-12-29 16:35:15] pool-1-thread-3 - 240000 records committed, current elapsed time = 391.241 [2024-12-29 16:35:15] pool-1-thread-5 - 240000 records committed, current elapsed time = 391.539 [2024-12-29 16:35:16] pool-1-thread-4 - 235000 records committed, current elapsed time = 392.572 [2024-12-29 16:35:18] pool-1-thread-7 - 235000 records committed, current elapsed time = 394.198 [2024-12-29 16:35:19] pool-1-thread-10 - 240000 records committed, current elapsed time = 394.813 [2024-12-29 16:35:19] pool-1-thread-2 - 235000 records committed, current elapsed time = 395.500 [2024-12-29 16:35:20] pool-1-thread-1 - 240000 records committed, current elapsed time = 396.255 [2024-12-29 16:35:20] pool-1-thread-9 - 240000 records committed, current elapsed time = 396.560 [2024-12-29 16:35:21] pool-1-thread-6 - 240000 records committed, current elapsed time = 397.261 [2024-12-29 16:35:32] pool-1-thread-8 - 240000 records committed, current elapsed time = 408.600 [2024-12-29 16:35:33] pool-1-thread-3 - 245000 records committed, current elapsed time = 408.755 [2024-12-29 16:35:33] pool-1-thread-5 - 245000 records committed, current elapsed time = 409.001 [2024-12-29 16:35:34] pool-1-thread-4 - 240000 records committed, current elapsed time = 410.394 [2024-12-29 16:35:35] pool-1-thread-7 - 240000 records committed, current elapsed time = 410.978 [2024-12-29 16:35:38] pool-1-thread-2 - 240000 records committed, current elapsed time = 414.194 [2024-12-29 16:35:39] pool-1-thread-1 - 245000 records committed, current elapsed time = 414.964 [2024-12-29 16:35:39] pool-1-thread-10 - 245000 records committed, current elapsed time = 414.974 [2024-12-29 16:35:41] pool-1-thread-6 - 245000 records committed, current elapsed time = 417.273 [2024-12-29 16:35:42] pool-1-thread-9 - 245000 records committed, current elapsed time = 417.946 [2024-12-29 16:35:47] pool-1-thread-8 - 245000 records committed, current elapsed time = 423.047 [2024-12-29 16:35:49] pool-1-thread-3 - 250000 records committed, current elapsed time = 425.119 [2024-12-29 16:35:51] pool-1-thread-2 - 245000 records committed, current elapsed time = 426.947 [2024-12-29 16:35:51] pool-1-thread-5 - 250000 records committed, current elapsed time = 427.266 [2024-12-29 16:35:57] pool-1-thread-7 - 245000 records committed, current elapsed time = 433.678 [2024-12-29 16:35:58] pool-1-thread-4 - 245000 records committed, current elapsed time = 433.751 [2024-12-29 16:35:59] pool-1-thread-1 - 250000 records committed, current elapsed time = 434.992 [2024-12-29 16:36:00] pool-1-thread-6 - 250000 records committed, current elapsed time = 435.972 [2024-12-29 16:36:00] pool-1-thread-10 - 250000 records committed, current elapsed time = 436.433 [2024-12-29 16:36:02] pool-1-thread-9 - 250000 records committed, current elapsed time = 437.860 [2024-12-29 16:36:03] pool-1-thread-8 - 250000 records committed, current elapsed time = 438.867 [2024-12-29 16:36:03] pool-1-thread-3 - 255000 records committed, current elapsed time = 439.416 [2024-12-29 16:36:04] pool-1-thread-2 - 250000 records committed, current elapsed time = 440.598 [2024-12-29 16:36:05] pool-1-thread-5 - 255000 records committed, current elapsed time = 441.068 [2024-12-29 16:36:05] pool-1-thread-7 - 250000 records committed, current elapsed time = 441.340 [2024-12-29 16:36:06] pool-1-thread-4 - 250000 records committed, current elapsed time = 442.222 [2024-12-29 16:36:09] pool-1-thread-1 - 255000 records committed, current elapsed time = 444.886 [2024-12-29 16:36:09] pool-1-thread-6 - 255000 records committed, current elapsed time = 445.145 [2024-12-29 16:36:10] pool-1-thread-9 - 255000 records committed, current elapsed time = 445.858 [2024-12-29 16:36:10] pool-1-thread-10 - 255000 records committed, current elapsed time = 446.463 [2024-12-29 16:36:12] pool-1-thread-8 - 255000 records committed, current elapsed time = 447.957 [2024-12-29 16:36:12] pool-1-thread-3 - 260000 records committed, current elapsed time = 448.368 [2024-12-29 16:36:13] pool-1-thread-2 - 255000 records committed, current elapsed time = 449.130 [2024-12-29 16:36:14] pool-1-thread-5 - 260000 records committed, current elapsed time = 450.654 [2024-12-29 16:36:16] pool-1-thread-4 - 255000 records committed, current elapsed time = 452.073 [2024-12-29 16:36:16] pool-1-thread-7 - 255000 records committed, current elapsed time = 452.378 [2024-12-29 16:36:17] pool-1-thread-1 - 260000 records committed, current elapsed time = 452.833 [2024-12-29 16:36:17] pool-1-thread-6 - 260000 records committed, current elapsed time = 453.199 [2024-12-29 16:36:18] pool-1-thread-10 - 260000 records committed, current elapsed time = 453.819 [2024-12-29 16:36:18] pool-1-thread-9 - 260000 records committed, current elapsed time = 454.588 [2024-12-29 16:36:22] pool-1-thread-8 - 260000 records committed, current elapsed time = 458.020 [2024-12-29 16:36:22] pool-1-thread-3 - 265000 records committed, current elapsed time = 458.370 [2024-12-29 16:36:26] pool-1-thread-2 - 260000 records committed, current elapsed time = 461.988 [2024-12-29 16:36:27] pool-1-thread-5 - 265000 records committed, current elapsed time = 463.329 [2024-12-29 16:36:28] pool-1-thread-4 - 260000 records committed, current elapsed time = 464.553 [2024-12-29 16:36:29] pool-1-thread-1 - 265000 records committed, current elapsed time = 465.185 [2024-12-29 16:36:29] pool-1-thread-7 - 260000 records committed, current elapsed time = 465.559 [2024-12-29 16:36:29] pool-1-thread-6 - 265000 records committed, current elapsed time = 465.653 [2024-12-29 16:36:33] pool-1-thread-9 - 265000 records committed, current elapsed time = 469.378 [2024-12-29 16:36:33] pool-1-thread-10 - 265000 records committed, current elapsed time = 469.477 [2024-12-29 16:36:34] pool-1-thread-3 - 270000 records committed, current elapsed time = 469.848 [2024-12-29 16:36:34] pool-1-thread-8 - 265000 records committed, current elapsed time = 470.666 [2024-12-29 16:36:41] pool-1-thread-2 - 265000 records committed, current elapsed time = 477.380 [2024-12-29 16:36:42] pool-1-thread-5 - 270000 records committed, current elapsed time = 478.445 [2024-12-29 16:36:44] pool-1-thread-6 - 270000 records committed, current elapsed time = 480.202 [2024-12-29 16:36:44] pool-1-thread-4 - 265000 records committed, current elapsed time = 480.212 [2024-12-29 16:36:45] pool-1-thread-1 - 270000 records committed, current elapsed time = 480.753 [2024-12-29 16:36:45] pool-1-thread-7 - 265000 records committed, current elapsed time = 481.624 [2024-12-29 16:36:47] pool-1-thread-10 - 270000 records committed, current elapsed time = 483.225 [2024-12-29 16:36:47] pool-1-thread-9 - 270000 records committed, current elapsed time = 483.332 [2024-12-29 16:36:48] pool-1-thread-3 - 275000 records committed, current elapsed time = 484.235 [2024-12-29 16:36:50] pool-1-thread-8 - 270000 records committed, current elapsed time = 486.200 [2024-12-29 16:36:53] pool-1-thread-2 - 270000 records committed, current elapsed time = 488.738 [2024-12-29 16:37:02] pool-1-thread-5 - 275000 records committed, current elapsed time = 498.254 [2024-12-29 16:37:05] pool-1-thread-6 - 275000 records committed, current elapsed time = 501.144 [2024-12-29 16:37:08] pool-1-thread-1 - 275000 records committed, current elapsed time = 503.792 [2024-12-29 16:37:09] pool-1-thread-4 - 270000 records committed, current elapsed time = 504.998 [2024-12-29 16:37:13] pool-1-thread-7 - 270000 records committed, current elapsed time = 508.759 [2024-12-29 16:37:14] pool-1-thread-10 - 275000 records committed, current elapsed time = 510.327 [2024-12-29 16:37:19] pool-1-thread-9 - 275000 records committed, current elapsed time = 515.015 [2024-12-29 16:37:20] pool-1-thread-3 - 280000 records committed, current elapsed time = 516.449 [2024-12-29 16:37:24] pool-1-thread-8 - 275000 records committed, current elapsed time = 520.462 [2024-12-29 16:37:27] pool-1-thread-2 - 275000 records committed, current elapsed time = 523.421 [2024-12-29 16:37:29] pool-1-thread-5 - 280000 records committed, current elapsed time = 524.917 [2024-12-29 16:37:29] pool-1-thread-1 - 280000 records committed, current elapsed time = 525.181 [2024-12-29 16:37:30] pool-1-thread-4 - 275000 records committed, current elapsed time = 526.321 [2024-12-29 16:37:31] pool-1-thread-6 - 280000 records committed, current elapsed time = 526.690 [2024-12-29 16:37:31] pool-1-thread-7 - 275000 records committed, current elapsed time = 527.032 [2024-12-29 16:37:32] pool-1-thread-10 - 280000 records committed, current elapsed time = 528.476 [2024-12-29 16:37:35] pool-1-thread-9 - 280000 records committed, current elapsed time = 531.507 [2024-12-29 16:37:35] pool-1-thread-3 - 285000 records committed, current elapsed time = 531.578 [2024-12-29 16:37:38] pool-1-thread-8 - 280000 records committed, current elapsed time = 534.258 [2024-12-29 16:37:40] pool-1-thread-2 - 280000 records committed, current elapsed time = 536.636 [2024-12-29 16:37:44] pool-1-thread-5 - 285000 records committed, current elapsed time = 540.238 [2024-12-29 16:37:47] pool-1-thread-1 - 285000 records committed, current elapsed time = 543.161 [2024-12-29 16:37:53] pool-1-thread-4 - 280000 records committed, current elapsed time = 548.781 [2024-12-29 16:37:54] pool-1-thread-7 - 280000 records committed, current elapsed time = 549.990 [2024-12-29 16:37:55] pool-1-thread-6 - 285000 records committed, current elapsed time = 551.013 [2024-12-29 16:38:01] pool-1-thread-10 - 285000 records committed, current elapsed time = 557.582 [2024-12-29 16:38:04] pool-1-thread-3 - 290000 records committed, current elapsed time = 560.317 [2024-12-29 16:38:05] pool-1-thread-9 - 285000 records committed, current elapsed time = 561.038 [2024-12-29 16:38:31] pool-1-thread-8 - 285000 records committed, current elapsed time = 587.341 [2024-12-29 16:38:46] pool-1-thread-2 - 285000 records committed, current elapsed time = 602.104 [2024-12-29 16:39:01] pool-1-thread-5 - 290000 records committed, current elapsed time = 616.938 [2024-12-29 16:39:02] pool-1-thread-1 - 290000 records committed, current elapsed time = 617.684 [2024-12-29 16:39:03] pool-1-thread-4 - 285000 records committed, current elapsed time = 618.969 [2024-12-29 16:39:03] pool-1-thread-6 - 290000 records committed, current elapsed time = 619.564 [2024-12-29 16:39:04] pool-1-thread-7 - 285000 records committed, current elapsed time = 620.271 [2024-12-29 16:39:06] pool-1-thread-10 - 290000 records committed, current elapsed time = 622.199 [2024-12-29 16:39:07] pool-1-thread-9 - 290000 records committed, current elapsed time = 623.525 [2024-12-29 16:39:07] pool-1-thread-3 - 295000 records committed, current elapsed time = 623.608 [2024-12-29 16:39:08] pool-1-thread-8 - 290000 records committed, current elapsed time = 624.546 [2024-12-29 16:39:10] pool-1-thread-2 - 290000 records committed, current elapsed time = 626.330 [2024-12-29 16:39:13] pool-1-thread-5 - 295000 records committed, current elapsed time = 628.889 [2024-12-29 16:39:13] pool-1-thread-1 - 295000 records committed, current elapsed time = 629.676 [2024-12-29 16:39:15] pool-1-thread-4 - 290000 records committed, current elapsed time = 631.583 [2024-12-29 16:39:17] pool-1-thread-6 - 295000 records committed, current elapsed time = 632.726 [2024-12-29 16:39:18] pool-1-thread-7 - 290000 records committed, current elapsed time = 633.814 [2024-12-29 16:39:20] pool-1-thread-10 - 295000 records committed, current elapsed time = 636.517 [2024-12-29 16:39:21] pool-1-thread-3 - 300000 records committed, current elapsed time = 637.451 [2024-12-29 16:39:22] pool-1-thread-8 - 295000 records committed, current elapsed time = 637.697 [2024-12-29 16:39:23] pool-1-thread-9 - 295000 records committed, current elapsed time = 638.887 [2024-12-29 16:39:24] pool-1-thread-2 - 295000 records committed, current elapsed time = 640.595 [2024-12-29 16:39:28] pool-1-thread-1 - 300000 records committed, current elapsed time = 644.206 [2024-12-29 16:39:28] pool-1-thread-5 - 300000 records committed, current elapsed time = 644.298 [2024-12-29 16:39:28] pool-1-thread-4 - 295000 records committed, current elapsed time = 644.559 [2024-12-29 16:39:30] pool-1-thread-6 - 300000 records committed, current elapsed time = 646.191 [2024-12-29 16:39:30] pool-1-thread-7 - 295000 records committed, current elapsed time = 646.254 [2024-12-29 16:39:31] pool-1-thread-10 - 300000 records committed, current elapsed time = 646.825 [2024-12-29 16:39:31] pool-1-thread-3 - 305000 records committed, current elapsed time = 647.082 [2024-12-29 16:39:32] pool-1-thread-8 - 300000 records committed, current elapsed time = 648.119 [2024-12-29 16:39:33] pool-1-thread-2 - 300000 records committed, current elapsed time = 649.429 [2024-12-29 16:39:34] pool-1-thread-9 - 300000 records committed, current elapsed time = 649.695 [2024-12-29 16:39:36] pool-1-thread-4 - 300000 records committed, current elapsed time = 652.099 [2024-12-29 16:39:36] pool-1-thread-5 - 305000 records committed, current elapsed time = 652.371 [2024-12-29 16:39:37] pool-1-thread-1 - 305000 records committed, current elapsed time = 652.825 [2024-12-29 16:39:37] pool-1-thread-6 - 305000 records committed, current elapsed time = 653.216 [2024-12-29 16:39:38] pool-1-thread-7 - 300000 records committed, current elapsed time = 654.534 [2024-12-29 16:39:39] pool-1-thread-8 - 305000 records committed, current elapsed time = 654.809 [2024-12-29 16:39:40] pool-1-thread-10 - 305000 records committed, current elapsed time = 656.257 [2024-12-29 16:39:41] pool-1-thread-3 - 310000 records committed, current elapsed time = 656.929 [2024-12-29 16:39:42] pool-1-thread-2 - 305000 records committed, current elapsed time = 657.889 [2024-12-29 16:39:43] pool-1-thread-9 - 305000 records committed, current elapsed time = 658.911 [2024-12-29 16:39:46] pool-1-thread-5 - 310000 records committed, current elapsed time = 662.055 [2024-12-29 16:39:46] pool-1-thread-4 - 305000 records committed, current elapsed time = 662.434 [2024-12-29 16:39:47] pool-1-thread-1 - 310000 records committed, current elapsed time = 662.883 [2024-12-29 16:39:48] pool-1-thread-7 - 305000 records committed, current elapsed time = 663.911 [2024-12-29 16:39:50] pool-1-thread-6 - 310000 records committed, current elapsed time = 666.281 [2024-12-29 16:39:51] pool-1-thread-8 - 310000 records committed, current elapsed time = 667.377 [2024-12-29 16:39:52] pool-1-thread-2 - 310000 records committed, current elapsed time = 668.203 [2024-12-29 16:39:53] pool-1-thread-10 - 310000 records committed, current elapsed time = 668.787 [2024-12-29 16:39:53] pool-1-thread-3 - 315000 records committed, current elapsed time = 669.315 [2024-12-29 16:39:54] pool-1-thread-9 - 310000 records committed, current elapsed time = 670.463 [2024-12-29 16:39:57] pool-1-thread-7 - 310000 records committed, current elapsed time = 672.688 [2024-12-29 16:39:57] pool-1-thread-5 - 315000 records committed, current elapsed time = 672.936 [2024-12-29 16:39:57] pool-1-thread-1 - 315000 records committed, current elapsed time = 673.379 [2024-12-29 16:39:57] pool-1-thread-4 - 310000 records committed, current elapsed time = 673.445 [2024-12-29 16:39:59] pool-1-thread-6 - 315000 records committed, current elapsed time = 674.858 [2024-12-29 16:40:01] pool-1-thread-8 - 315000 records committed, current elapsed time = 677.493 [2024-12-29 16:40:02] pool-1-thread-2 - 315000 records committed, current elapsed time = 677.843 [2024-12-29 16:40:03] pool-1-thread-10 - 315000 records committed, current elapsed time = 678.754 [2024-12-29 16:40:04] pool-1-thread-3 - 320000 records committed, current elapsed time = 679.920 [2024-12-29 16:40:06] pool-1-thread-9 - 315000 records committed, current elapsed time = 681.865 [2024-12-29 16:40:06] pool-1-thread-7 - 315000 records committed, current elapsed time = 682.145 [2024-12-29 16:40:11] pool-1-thread-5 - 320000 records committed, current elapsed time = 687.625 [2024-12-29 16:40:12] pool-1-thread-1 - 320000 records committed, current elapsed time = 688.130 [2024-12-29 16:40:13] pool-1-thread-4 - 315000 records committed, current elapsed time = 689.138 [2024-12-29 16:40:13] pool-1-thread-6 - 320000 records committed, current elapsed time = 689.652 [2024-12-29 16:40:15] pool-1-thread-8 - 320000 records committed, current elapsed time = 690.856 [2024-12-29 16:40:16] pool-1-thread-2 - 320000 records committed, current elapsed time = 691.722 [2024-12-29 16:40:16] pool-1-thread-10 - 320000 records committed, current elapsed time = 692.178 [2024-12-29 16:40:17] pool-1-thread-3 - 325000 records committed, current elapsed time = 692.696 [2024-12-29 16:40:18] pool-1-thread-9 - 320000 records committed, current elapsed time = 694.290 [2024-12-29 16:40:20] pool-1-thread-7 - 320000 records committed, current elapsed time = 696.006 [2024-12-29 16:40:23] pool-1-thread-5 - 325000 records committed, current elapsed time = 699.394 [2024-12-29 16:40:24] pool-1-thread-1 - 325000 records committed, current elapsed time = 699.798 [2024-12-29 16:40:28] pool-1-thread-6 - 325000 records committed, current elapsed time = 704.339 [2024-12-29 16:40:28] pool-1-thread-4 - 320000 records committed, current elapsed time = 704.419 [2024-12-29 16:40:30] pool-1-thread-8 - 325000 records committed, current elapsed time = 706.393 [2024-12-29 16:40:30] pool-1-thread-2 - 325000 records committed, current elapsed time = 706.656 [2024-12-29 16:40:33] pool-1-thread-10 - 325000 records committed, current elapsed time = 708.798 [2024-12-29 16:40:36] pool-1-thread-3 - 330000 records committed, current elapsed time = 711.761 [2024-12-29 16:40:37] pool-1-thread-5 - 330000 records committed, current elapsed time = 713.251 [2024-12-29 16:40:37] pool-1-thread-9 - 325000 records committed, current elapsed time = 713.549 [2024-12-29 16:40:39] pool-1-thread-7 - 325000 records committed, current elapsed time = 715.439 [2024-12-29 16:40:41] pool-1-thread-1 - 330000 records committed, current elapsed time = 717.056 [2024-12-29 16:40:44] pool-1-thread-4 - 325000 records committed, current elapsed time = 720.100 [2024-12-29 16:40:45] pool-1-thread-6 - 330000 records committed, current elapsed time = 720.878 [2024-12-29 16:40:45] pool-1-thread-8 - 330000 records committed, current elapsed time = 721.503 [2024-12-29 16:40:46] pool-1-thread-2 - 330000 records committed, current elapsed time = 722.216 [2024-12-29 16:40:46] pool-1-thread-10 - 330000 records committed, current elapsed time = 722.629 [2024-12-29 16:40:47] pool-1-thread-3 - 335000 records committed, current elapsed time = 723.396 [2024-12-29 16:40:48] pool-1-thread-9 - 330000 records committed, current elapsed time = 723.802 [2024-12-29 16:40:49] pool-1-thread-5 - 335000 records committed, current elapsed time = 725.166 [2024-12-29 16:40:50] pool-1-thread-7 - 330000 records committed, current elapsed time = 726.498 [2024-12-29 16:40:57] pool-1-thread-1 - 335000 records committed, current elapsed time = 733.362 [2024-12-29 16:41:00] pool-1-thread-4 - 330000 records committed, current elapsed time = 735.817 [2024-12-29 16:41:00] pool-1-thread-6 - 335000 records committed, current elapsed time = 735.942 [2024-12-29 16:41:00] pool-1-thread-8 - 335000 records committed, current elapsed time = 736.206 [2024-12-29 16:41:02] pool-1-thread-2 - 335000 records committed, current elapsed time = 738.192 [2024-12-29 16:41:04] pool-1-thread-10 - 335000 records committed, current elapsed time = 740.171 [2024-12-29 16:41:04] pool-1-thread-3 - 340000 records committed, current elapsed time = 740.308 [2024-12-29 16:41:05] pool-1-thread-9 - 335000 records committed, current elapsed time = 740.937 [2024-12-29 16:41:05] pool-1-thread-5 - 340000 records committed, current elapsed time = 741.341 [2024-12-29 16:41:07] pool-1-thread-7 - 335000 records committed, current elapsed time = 743.538 [2024-12-29 16:41:17] pool-1-thread-1 - 340000 records committed, current elapsed time = 753.515 [2024-12-29 16:41:18] pool-1-thread-4 - 335000 records committed, current elapsed time = 754.362 [2024-12-29 16:41:19] pool-1-thread-6 - 340000 records committed, current elapsed time = 755.475 [2024-12-29 16:41:20] pool-1-thread-8 - 340000 records committed, current elapsed time = 755.729 [2024-12-29 16:41:20] pool-1-thread-10 - 340000 records committed, current elapsed time = 756.458 [2024-12-29 16:41:22] pool-1-thread-9 - 340000 records committed, current elapsed time = 757.908 [2024-12-29 16:41:22] pool-1-thread-2 - 340000 records committed, current elapsed time = 757.969 [2024-12-29 16:41:22] pool-1-thread-3 - 345000 records committed, current elapsed time = 758.004 [2024-12-29 16:41:23] pool-1-thread-5 - 345000 records committed, current elapsed time = 759.379 [2024-12-29 16:41:25] pool-1-thread-7 - 340000 records committed, current elapsed time = 760.845 [2024-12-29 16:41:28] pool-1-thread-4 - 340000 records committed, current elapsed time = 763.843 [2024-12-29 16:41:29] pool-1-thread-1 - 345000 records committed, current elapsed time = 765.173 [2024-12-29 16:41:30] pool-1-thread-8 - 345000 records committed, current elapsed time = 766.085 [2024-12-29 16:41:30] pool-1-thread-6 - 345000 records committed, current elapsed time = 766.600 [2024-12-29 16:41:31] pool-1-thread-2 - 345000 records committed, current elapsed time = 766.897 [2024-12-29 16:41:33] pool-1-thread-9 - 345000 records committed, current elapsed time = 768.879 [2024-12-29 16:41:33] pool-1-thread-10 - 345000 records committed, current elapsed time = 769.414 [2024-12-29 16:41:33] pool-1-thread-3 - 350000 records committed, current elapsed time = 769.468 [2024-12-29 16:41:35] pool-1-thread-5 - 350000 records committed, current elapsed time = 770.842 [2024-12-29 16:41:35] pool-1-thread-7 - 345000 records committed, current elapsed time = 771.277 [2024-12-29 16:41:37] pool-1-thread-4 - 345000 records committed, current elapsed time = 773.082 [2024-12-29 16:41:38] pool-1-thread-1 - 350000 records committed, current elapsed time = 774.399 [2024-12-29 16:41:40] pool-1-thread-6 - 350000 records committed, current elapsed time = 775.724 [2024-12-29 16:41:40] pool-1-thread-3 - 355000 records committed, current elapsed time = 776.216 [2024-12-29 16:41:40] pool-1-thread-8 - 350000 records committed, current elapsed time = 776.306 [2024-12-29 16:41:42] pool-1-thread-10 - 350000 records committed, current elapsed time = 778.165 [2024-12-29 16:41:43] pool-1-thread-2 - 350000 records committed, current elapsed time = 779.470 [2024-12-29 16:41:43] pool-1-thread-5 - 355000 records committed, current elapsed time = 779.602 [2024-12-29 16:41:45] pool-1-thread-9 - 350000 records committed, current elapsed time = 780.731 [2024-12-29 16:41:51] pool-1-thread-7 - 350000 records committed, current elapsed time = 786.738 [2024-12-29 16:41:54] pool-1-thread-4 - 350000 records committed, current elapsed time = 789.690 [2024-12-29 16:41:54] pool-1-thread-6 - 355000 records committed, current elapsed time = 790.073 [2024-12-29 16:41:55] pool-1-thread-1 - 355000 records committed, current elapsed time = 791.022 [2024-12-29 16:41:55] pool-1-thread-3 - 360000 records committed, current elapsed time = 791.111 [2024-12-29 16:41:56] pool-1-thread-8 - 355000 records committed, current elapsed time = 792.587 [2024-12-29 16:41:58] pool-1-thread-10 - 355000 records committed, current elapsed time = 794.022 [2024-12-29 16:42:03] pool-1-thread-2 - 355000 records committed, current elapsed time = 799.389 [2024-12-29 16:42:04] pool-1-thread-5 - 360000 records committed, current elapsed time = 800.380 [2024-12-29 16:42:06] pool-1-thread-9 - 355000 records committed, current elapsed time = 801.898 [2024-12-29 16:42:08] pool-1-thread-7 - 355000 records committed, current elapsed time = 804.581 [2024-12-29 16:42:11] pool-1-thread-1 - 360000 records committed, current elapsed time = 806.724 [2024-12-29 16:42:11] pool-1-thread-4 - 355000 records committed, current elapsed time = 807.440 [2024-12-29 16:42:12] pool-1-thread-6 - 360000 records committed, current elapsed time = 807.855 [2024-12-29 16:42:13] pool-1-thread-2 - 360000 records committed, current elapsed time = 809.103 [2024-12-29 16:42:13] pool-1-thread-10 - 360000 records committed, current elapsed time = 809.470 [2024-12-29 16:42:14] pool-1-thread-3 - 365000 records committed, current elapsed time = 809.744 [2024-12-29 16:42:15] pool-1-thread-5 - 365000 records committed, current elapsed time = 811.196 [2024-12-29 16:42:15] pool-1-thread-8 - 360000 records committed, current elapsed time = 811.265 [2024-12-29 16:42:16] pool-1-thread-9 - 360000 records committed, current elapsed time = 812.323 [2024-12-29 16:42:20] pool-1-thread-7 - 360000 records committed, current elapsed time = 816.094 [2024-12-29 16:42:23] pool-1-thread-4 - 360000 records committed, current elapsed time = 819.658 [2024-12-29 16:42:25] pool-1-thread-1 - 365000 records committed, current elapsed time = 821.067 [2024-12-29 16:42:25] pool-1-thread-6 - 365000 records committed, current elapsed time = 821.082 [2024-12-29 16:42:25] pool-1-thread-2 - 365000 records committed, current elapsed time = 821.411 [2024-12-29 16:42:26] pool-1-thread-3 - 370000 records committed, current elapsed time = 821.826 [2024-12-29 16:42:27] pool-1-thread-10 - 365000 records committed, current elapsed time = 823.562 [2024-12-29 16:42:28] pool-1-thread-5 - 370000 records committed, current elapsed time = 823.789 [2024-12-29 16:42:28] pool-1-thread-8 - 365000 records committed, current elapsed time = 824.424 [2024-12-29 16:42:29] pool-1-thread-9 - 365000 records committed, current elapsed time = 824.771 [2024-12-29 16:42:34] pool-1-thread-7 - 365000 records committed, current elapsed time = 830.040 [2024-12-29 16:42:38] pool-1-thread-4 - 365000 records committed, current elapsed time = 834.135 [2024-12-29 16:42:42] pool-1-thread-6 - 370000 records committed, current elapsed time = 838.590 [2024-12-29 16:42:43] pool-1-thread-1 - 370000 records committed, current elapsed time = 838.950 [2024-12-29 16:42:43] pool-1-thread-3 - 375000 records committed, current elapsed time = 839.639 [2024-12-29 16:42:44] pool-1-thread-2 - 370000 records committed, current elapsed time = 840.061 [2024-12-29 16:42:46] pool-1-thread-9 - 370000 records committed, current elapsed time = 842.340 [2024-12-29 16:42:47] pool-1-thread-10 - 370000 records committed, current elapsed time = 842.723 [2024-12-29 16:42:47] pool-1-thread-5 - 375000 records committed, current elapsed time = 843.084 [2024-12-29 16:42:49] pool-1-thread-8 - 370000 records committed, current elapsed time = 844.957 [2024-12-29 16:42:51] pool-1-thread-7 - 370000 records committed, current elapsed time = 846.711 [2024-12-29 16:42:54] pool-1-thread-4 - 370000 records committed, current elapsed time = 850.130 [2024-12-29 16:42:56] pool-1-thread-1 - 375000 records committed, current elapsed time = 852.011 [2024-12-29 16:42:58] pool-1-thread-6 - 375000 records committed, current elapsed time = 854.073 [2024-12-29 16:42:59] pool-1-thread-3 - 380000 records committed, current elapsed time = 854.713 [2024-12-29 16:42:59] pool-1-thread-2 - 375000 records committed, current elapsed time = 855.095 [2024-12-29 16:42:59] pool-1-thread-10 - 375000 records committed, current elapsed time = 855.109 [2024-12-29 16:43:00] pool-1-thread-9 - 375000 records committed, current elapsed time = 856.190 [2024-12-29 16:43:02] pool-1-thread-7 - 375000 records committed, current elapsed time = 857.698 [2024-12-29 16:43:02] pool-1-thread-5 - 380000 records committed, current elapsed time = 858.279 [2024-12-29 16:43:04] pool-1-thread-8 - 375000 records committed, current elapsed time = 860.257 [2024-12-29 16:43:09] pool-1-thread-4 - 375000 records committed, current elapsed time = 864.970 [2024-12-29 16:43:10] pool-1-thread-1 - 380000 records committed, current elapsed time = 866.218 [2024-12-29 16:43:12] pool-1-thread-6 - 380000 records committed, current elapsed time = 867.813 [2024-12-29 16:43:12] pool-1-thread-3 - 385000 records committed, current elapsed time = 868.360 [2024-12-29 16:43:13] pool-1-thread-2 - 380000 records committed, current elapsed time = 868.820 [2024-12-29 16:43:15] pool-1-thread-9 - 380000 records committed, current elapsed time = 871.270 [2024-12-29 16:43:15] pool-1-thread-10 - 380000 records committed, current elapsed time = 871.424 [2024-12-29 16:43:17] pool-1-thread-7 - 380000 records committed, current elapsed time = 873.385 [2024-12-29 16:43:19] pool-1-thread-5 - 385000 records committed, current elapsed time = 874.868 [2024-12-29 16:43:19] pool-1-thread-8 - 380000 records committed, current elapsed time = 874.914 [2024-12-29 16:43:22] pool-1-thread-4 - 380000 records committed, current elapsed time = 878.343 [2024-12-29 16:43:23] pool-1-thread-1 - 385000 records committed, current elapsed time = 878.999 [2024-12-29 16:43:27] pool-1-thread-3 - 390000 records committed, current elapsed time = 883.065 [2024-12-29 16:43:27] pool-1-thread-6 - 385000 records committed, current elapsed time = 883.495 [2024-12-29 16:43:28] pool-1-thread-10 - 385000 records committed, current elapsed time = 883.825 [2024-12-29 16:43:29] pool-1-thread-9 - 385000 records committed, current elapsed time = 884.936 [2024-12-29 16:43:30] pool-1-thread-2 - 385000 records committed, current elapsed time = 886.023 [2024-12-29 16:43:30] pool-1-thread-7 - 385000 records committed, current elapsed time = 886.114 [2024-12-29 16:43:39] pool-1-thread-5 - 390000 records committed, current elapsed time = 894.814 [2024-12-29 16:43:40] pool-1-thread-8 - 385000 records committed, current elapsed time = 895.683 [2024-12-29 16:43:40] pool-1-thread-3 - 395000 records committed, current elapsed time = 896.262 [2024-12-29 16:43:40] pool-1-thread-6 - 390000 records committed, current elapsed time = 896.590 [2024-12-29 16:43:42] pool-1-thread-1 - 390000 records committed, current elapsed time = 898.296 [2024-12-29 16:43:42] pool-1-thread-4 - 385000 records committed, current elapsed time = 898.353 [2024-12-29 16:43:43] pool-1-thread-10 - 390000 records committed, current elapsed time = 899.069 [2024-12-29 16:43:43] pool-1-thread-2 - 390000 records committed, current elapsed time = 899.234 [2024-12-29 16:43:44] pool-1-thread-9 - 390000 records committed, current elapsed time = 900.500 [2024-12-29 16:43:46] pool-1-thread-7 - 390000 records committed, current elapsed time = 902.010 [2024-12-29 16:43:48] pool-1-thread-5 - 395000 records committed, current elapsed time = 904.651 [2024-12-29 16:43:50] pool-1-thread-8 - 390000 records committed, current elapsed time = 906.157 [2024-12-29 16:43:52] pool-1-thread-3 - 400000 records committed, current elapsed time = 907.931 [2024-12-29 16:43:52] pool-1-thread-6 - 395000 records committed, current elapsed time = 908.227 [2024-12-29 16:43:54] pool-1-thread-1 - 395000 records committed, current elapsed time = 910.601 [2024-12-29 16:43:57] pool-1-thread-4 - 390000 records committed, current elapsed time = 913.506 [2024-12-29 16:43:59] pool-1-thread-10 - 395000 records committed, current elapsed time = 915.332 [2024-12-29 16:44:00] pool-1-thread-9 - 395000 records committed, current elapsed time = 916.064 [2024-12-29 16:44:02] pool-1-thread-7 - 395000 records committed, current elapsed time = 918.022 [2024-12-29 16:44:04] pool-1-thread-2 - 395000 records committed, current elapsed time = 920.103 [2024-12-29 16:44:05] pool-1-thread-5 - 400000 records committed, current elapsed time = 921.063 [2024-12-29 16:44:05] pool-1-thread-8 - 395000 records committed, current elapsed time = 921.459 [2024-12-29 16:44:10] pool-1-thread-3 - 405000 records committed, current elapsed time = 926.357 [2024-12-29 16:44:10] pool-1-thread-6 - 400000 records committed, current elapsed time = 926.471 [2024-12-29 16:44:12] pool-1-thread-1 - 400000 records committed, current elapsed time = 928.674 [2024-12-29 16:44:13] pool-1-thread-10 - 400000 records committed, current elapsed time = 929.240 [2024-12-29 16:44:17] pool-1-thread-4 - 395000 records committed, current elapsed time = 932.685 [2024-12-29 16:44:19] pool-1-thread-5 - 405000 records committed, current elapsed time = 935.001 [2024-12-29 16:44:19] pool-1-thread-9 - 400000 records committed, current elapsed time = 935.413 [2024-12-29 16:44:20] pool-1-thread-7 - 400000 records committed, current elapsed time = 935.873 [2024-12-29 16:44:20] pool-1-thread-2 - 400000 records committed, current elapsed time = 936.013 [2024-12-29 16:44:21] pool-1-thread-8 - 400000 records committed, current elapsed time = 937.096 [2024-12-29 16:44:22] pool-1-thread-3 - 410000 records committed, current elapsed time = 938.475 [2024-12-29 16:44:24] pool-1-thread-6 - 405000 records committed, current elapsed time = 940.581 [2024-12-29 16:44:28] pool-1-thread-10 - 405000 records committed, current elapsed time = 943.740 [2024-12-29 16:44:30] pool-1-thread-1 - 405000 records committed, current elapsed time = 946.194 [2024-12-29 16:44:32] pool-1-thread-4 - 400000 records committed, current elapsed time = 948.223 [2024-12-29 16:44:34] pool-1-thread-5 - 410000 records committed, current elapsed time = 949.722 [2024-12-29 16:44:35] pool-1-thread-9 - 405000 records committed, current elapsed time = 951.476 [2024-12-29 16:44:36] pool-1-thread-3 - 415000 records committed, current elapsed time = 952.180 [2024-12-29 16:44:39] pool-1-thread-7 - 405000 records committed, current elapsed time = 955.324 [2024-12-29 16:44:39] pool-1-thread-8 - 405000 records committed, current elapsed time = 955.367 [2024-12-29 16:44:40] pool-1-thread-2 - 405000 records committed, current elapsed time = 955.740 [2024-12-29 16:44:40] pool-1-thread-6 - 410000 records committed, current elapsed time = 956.632 [2024-12-29 16:44:46] pool-1-thread-10 - 410000 records committed, current elapsed time = 962.515 [2024-12-29 16:44:47] pool-1-thread-1 - 410000 records committed, current elapsed time = 962.910 [2024-12-29 16:44:54] pool-1-thread-4 - 405000 records committed, current elapsed time = 970.116 [2024-12-29 16:44:56] pool-1-thread-5 - 415000 records committed, current elapsed time = 972.472 [2024-12-29 16:44:57] pool-1-thread-8 - 410000 records committed, current elapsed time = 973.395 [2024-12-29 16:44:59] pool-1-thread-7 - 410000 records committed, current elapsed time = 975.640 [2024-12-29 16:45:00] pool-1-thread-9 - 410000 records committed, current elapsed time = 976.258 [2024-12-29 16:45:01] pool-1-thread-3 - 420000 records committed, current elapsed time = 977.040 [2024-12-29 16:45:01] pool-1-thread-6 - 415000 records committed, current elapsed time = 977.469 [2024-12-29 16:45:02] pool-1-thread-2 - 410000 records committed, current elapsed time = 978.153 [2024-12-29 16:45:04] pool-1-thread-1 - 415000 records committed, current elapsed time = 980.285 [2024-12-29 16:45:04] pool-1-thread-10 - 415000 records committed, current elapsed time = 980.602 [2024-12-29 16:45:09] pool-1-thread-4 - 410000 records committed, current elapsed time = 985.128 [2024-12-29 16:45:16] pool-1-thread-5 - 420000 records committed, current elapsed time = 991.952 [2024-12-29 16:45:17] pool-1-thread-8 - 415000 records committed, current elapsed time = 993.216 [2024-12-29 16:45:18] pool-1-thread-7 - 415000 records committed, current elapsed time = 993.924 [2024-12-29 16:45:19] pool-1-thread-9 - 415000 records committed, current elapsed time = 995.034 [2024-12-29 16:45:19] pool-1-thread-3 - 425000 records committed, current elapsed time = 995.256 [2024-12-29 16:45:20] pool-1-thread-2 - 415000 records committed, current elapsed time = 996.011 [2024-12-29 16:45:23] pool-1-thread-6 - 420000 records committed, current elapsed time = 998.939 [2024-12-29 16:45:24] pool-1-thread-1 - 420000 records committed, current elapsed time = 1000.568 [2024-12-29 16:45:27] pool-1-thread-4 - 415000 records committed, current elapsed time = 1003.097 [2024-12-29 16:45:27] pool-1-thread-10 - 420000 records committed, current elapsed time = 1003.381 [2024-12-29 16:45:31] pool-1-thread-5 - 425000 records committed, current elapsed time = 1006.723 [2024-12-29 16:45:31] pool-1-thread-8 - 420000 records committed, current elapsed time = 1007.577 [2024-12-29 16:45:32] pool-1-thread-7 - 420000 records committed, current elapsed time = 1008.215 [2024-12-29 16:45:44] pool-1-thread-3 - 430000 records committed, current elapsed time = 1020.417 [2024-12-29 16:45:45] pool-1-thread-1 - 425000 records committed, current elapsed time = 1021.263 [2024-12-29 16:45:45] pool-1-thread-2 - 420000 records committed, current elapsed time = 1021.513 [2024-12-29 16:45:49] pool-1-thread-4 - 420000 records committed, current elapsed time = 1025.514 [2024-12-29 16:45:50] pool-1-thread-6 - 425000 records committed, current elapsed time = 1026.484 [2024-12-29 16:45:51] pool-1-thread-9 - 420000 records committed, current elapsed time = 1026.867 [2024-12-29 16:45:51] pool-1-thread-10 - 425000 records committed, current elapsed time = 1027.226 [2024-12-29 16:46:18] pool-1-thread-8 - 425000 records committed, current elapsed time = 1054.325 [2024-12-29 16:46:19] pool-1-thread-5 - 430000 records committed, current elapsed time = 1055.352 [2024-12-29 16:46:19] pool-1-thread-3 - 435000 records committed, current elapsed time = 1055.391 [2024-12-29 16:46:22] pool-1-thread-7 - 425000 records committed, current elapsed time = 1057.721 [2024-12-29 16:46:22] pool-1-thread-2 - 425000 records committed, current elapsed time = 1058.354 [2024-12-29 16:46:29] pool-1-thread-4 - 425000 records committed, current elapsed time = 1064.900 [2024-12-29 16:46:31] pool-1-thread-1 - 430000 records committed, current elapsed time = 1067.536 [2024-12-29 16:46:32] pool-1-thread-6 - 430000 records committed, current elapsed time = 1068.229 [2024-12-29 16:46:33] pool-1-thread-9 - 425000 records committed, current elapsed time = 1068.880 [2024-12-29 16:46:34] pool-1-thread-10 - 430000 records committed, current elapsed time = 1070.163 [2024-12-29 16:46:45] pool-1-thread-7 - 430000 records committed, current elapsed time = 1080.988 [2024-12-29 16:46:46] pool-1-thread-5 - 435000 records committed, current elapsed time = 1082.491 [2024-12-29 16:46:46] pool-1-thread-3 - 440000 records committed, current elapsed time = 1082.495 [2024-12-29 16:46:46] pool-1-thread-8 - 430000 records committed, current elapsed time = 1082.536 [2024-12-29 16:46:50] pool-1-thread-2 - 430000 records committed, current elapsed time = 1086.336 [2024-12-29 16:46:58] pool-1-thread-4 - 430000 records committed, current elapsed time = 1094.346 [2024-12-29 16:47:03] pool-1-thread-1 - 435000 records committed, current elapsed time = 1098.725 [2024-12-29 16:47:04] pool-1-thread-9 - 430000 records committed, current elapsed time = 1099.736 [2024-12-29 16:47:04] pool-1-thread-6 - 435000 records committed, current elapsed time = 1099.740 [2024-12-29 16:47:04] pool-1-thread-7 - 435000 records committed, current elapsed time = 1099.754 [2024-12-29 16:47:06] pool-1-thread-10 - 435000 records committed, current elapsed time = 1101.873 [2024-12-29 16:47:14] pool-1-thread-8 - 435000 records committed, current elapsed time = 1110.196 [2024-12-29 16:47:21] pool-1-thread-5 - 440000 records committed, current elapsed time = 1116.823 [2024-12-29 16:47:22] pool-1-thread-3 - 445000 records committed, current elapsed time = 1117.908 [2024-12-29 16:47:25] pool-1-thread-2 - 435000 records committed, current elapsed time = 1120.962 [2024-12-29 16:47:31] pool-1-thread-4 - 435000 records committed, current elapsed time = 1127.148 [2024-12-29 16:47:32] pool-1-thread-1 - 440000 records committed, current elapsed time = 1128.656 [2024-12-29 16:47:33] pool-1-thread-6 - 440000 records committed, current elapsed time = 1128.696 [2024-12-29 16:47:33] pool-1-thread-9 - 435000 records committed, current elapsed time = 1129.304 [2024-12-29 16:47:34] pool-1-thread-7 - 440000 records committed, current elapsed time = 1130.348 [2024-12-29 16:47:37] pool-1-thread-10 - 440000 records committed, current elapsed time = 1132.779 [2024-12-29 16:47:39] pool-1-thread-8 - 440000 records committed, current elapsed time = 1135.044 [2024-12-29 16:47:47] pool-1-thread-5 - 445000 records committed, current elapsed time = 1142.911 [2024-12-29 16:47:50] pool-1-thread-3 - 450000 records committed, current elapsed time = 1145.914 [2024-12-29 16:47:52] pool-1-thread-2 - 440000 records committed, current elapsed time = 1148.244 [2024-12-29 16:47:54] pool-1-thread-1 - 445000 records committed, current elapsed time = 1150.607 [2024-12-29 16:47:55] pool-1-thread-4 - 440000 records committed, current elapsed time = 1151.340 [2024-12-29 16:47:56] pool-1-thread-6 - 445000 records committed, current elapsed time = 1151.902 [2024-12-29 16:47:59] pool-1-thread-7 - 445000 records committed, current elapsed time = 1154.715 [2024-12-29 16:48:02] pool-1-thread-9 - 440000 records committed, current elapsed time = 1158.045 [2024-12-29 16:48:03] pool-1-thread-10 - 445000 records committed, current elapsed time = 1159.418 [2024-12-29 16:48:03] pool-1-thread-8 - 445000 records committed, current elapsed time = 1159.615 [2024-12-29 16:48:08] pool-1-thread-5 - 450000 records committed, current elapsed time = 1164.235 [2024-12-29 16:48:09] pool-1-thread-3 - 455000 records committed, current elapsed time = 1165.333 [2024-12-29 16:48:11] pool-1-thread-4 - 445000 records committed, current elapsed time = 1167.297 [2024-12-29 16:48:12] pool-1-thread-2 - 445000 records committed, current elapsed time = 1167.869 [2024-12-29 16:48:15] pool-1-thread-1 - 450000 records committed, current elapsed time = 1171.294 [2024-12-29 16:48:15] pool-1-thread-7 - 450000 records committed, current elapsed time = 1171.410 [2024-12-29 16:48:16] pool-1-thread-6 - 450000 records committed, current elapsed time = 1172.044 [2024-12-29 16:48:19] pool-1-thread-9 - 445000 records committed, current elapsed time = 1174.785 [2024-12-29 16:48:19] pool-1-thread-10 - 450000 records committed, current elapsed time = 1175.050 [2024-12-29 16:48:21] pool-1-thread-8 - 450000 records committed, current elapsed time = 1176.779 [2024-12-29 16:48:22] pool-1-thread-4 - 450000 records committed, current elapsed time = 1178.606 [2024-12-29 16:48:28] pool-1-thread-2 - 450000 records committed, current elapsed time = 1183.731 [2024-12-29 16:48:28] pool-1-thread-5 - 455000 records committed, current elapsed time = 1184.094 [2024-12-29 16:48:30] pool-1-thread-3 - 460000 records committed, current elapsed time = 1185.891 [2024-12-29 16:48:34] pool-1-thread-7 - 455000 records committed, current elapsed time = 1190.088 [2024-12-29 16:48:34] pool-1-thread-1 - 455000 records committed, current elapsed time = 1190.095 [2024-12-29 16:48:34] pool-1-thread-9 - 450000 records committed, current elapsed time = 1190.405 [2024-12-29 16:48:36] pool-1-thread-6 - 455000 records committed, current elapsed time = 1191.812 [2024-12-29 16:48:38] pool-1-thread-10 - 455000 records committed, current elapsed time = 1193.981 [2024-12-29 16:48:41] pool-1-thread-8 - 455000 records committed, current elapsed time = 1196.700 [2024-12-29 16:48:42] pool-1-thread-2 - 455000 records committed, current elapsed time = 1198.465 [2024-12-29 16:48:44] pool-1-thread-4 - 455000 records committed, current elapsed time = 1199.757 [2024-12-29 16:48:44] pool-1-thread-3 - 465000 records committed, current elapsed time = 1199.964 [2024-12-29 16:48:50] pool-1-thread-5 - 460000 records committed, current elapsed time = 1205.724 [2024-12-29 16:48:52] pool-1-thread-7 - 460000 records committed, current elapsed time = 1208.201 [2024-12-29 16:48:54] pool-1-thread-9 - 455000 records committed, current elapsed time = 1209.889 [2024-12-29 16:48:54] pool-1-thread-1 - 460000 records committed, current elapsed time = 1210.123 [2024-12-29 16:48:54] pool-1-thread-6 - 460000 records committed, current elapsed time = 1210.553 [2024-12-29 16:48:56] pool-1-thread-10 - 460000 records committed, current elapsed time = 1212.042 [2024-12-29 16:48:58] pool-1-thread-8 - 460000 records committed, current elapsed time = 1214.497 [2024-12-29 16:48:58] pool-1-thread-3 - 470000 records committed, current elapsed time = 1214.535 [2024-12-29 16:48:59] pool-1-thread-2 - 460000 records committed, current elapsed time = 1215.265 [2024-12-29 16:49:01] pool-1-thread-4 - 460000 records committed, current elapsed time = 1216.891 [2024-12-29 16:49:02] pool-1-thread-5 - 465000 records committed, current elapsed time = 1217.755 [2024-12-29 16:49:02] pool-1-thread-7 - 465000 records committed, current elapsed time = 1218.166 [2024-12-29 16:49:05] pool-1-thread-1 - 465000 records committed, current elapsed time = 1221.413 [2024-12-29 16:49:06] pool-1-thread-9 - 460000 records committed, current elapsed time = 1221.796 [2024-12-29 16:49:06] pool-1-thread-6 - 465000 records committed, current elapsed time = 1222.110 [2024-12-29 16:49:08] pool-1-thread-8 - 465000 records committed, current elapsed time = 1224.138 [2024-12-29 16:49:08] pool-1-thread-10 - 465000 records committed, current elapsed time = 1224.398 [2024-12-29 16:49:13] pool-1-thread-3 - 475000 records committed, current elapsed time = 1229.147 [2024-12-29 16:49:13] pool-1-thread-4 - 465000 records committed, current elapsed time = 1229.667 [2024-12-29 16:49:14] pool-1-thread-2 - 465000 records committed, current elapsed time = 1230.166 [2024-12-29 16:49:15] pool-1-thread-5 - 470000 records committed, current elapsed time = 1231.009 [2024-12-29 16:49:15] pool-1-thread-7 - 470000 records committed, current elapsed time = 1231.661 [2024-12-29 16:49:16] pool-1-thread-6 - 470000 records committed, current elapsed time = 1232.313 [2024-12-29 16:49:16] pool-1-thread-1 - 470000 records committed, current elapsed time = 1232.544 [2024-12-29 16:49:16] pool-1-thread-9 - 465000 records committed, current elapsed time = 1232.679 [2024-12-29 16:49:18] pool-1-thread-8 - 470000 records committed, current elapsed time = 1234.651 [2024-12-29 16:49:20] pool-1-thread-10 - 470000 records committed, current elapsed time = 1236.485 [2024-12-29 16:49:23] pool-1-thread-2 - 470000 records committed, current elapsed time = 1239.207 [2024-12-29 16:49:24] pool-1-thread-3 - 480000 records committed, current elapsed time = 1239.734 [2024-12-29 16:49:24] pool-1-thread-5 - 475000 records committed, current elapsed time = 1239.963 [2024-12-29 16:49:24] pool-1-thread-4 - 470000 records committed, current elapsed time = 1239.975 [2024-12-29 16:49:25] pool-1-thread-7 - 475000 records committed, current elapsed time = 1241.546 [2024-12-29 16:49:27] pool-1-thread-1 - 475000 records committed, current elapsed time = 1243.296 [2024-12-29 16:49:27] pool-1-thread-6 - 475000 records committed, current elapsed time = 1243.468 [2024-12-29 16:49:30] pool-1-thread-9 - 470000 records committed, current elapsed time = 1245.825 [2024-12-29 16:49:31] pool-1-thread-8 - 475000 records committed, current elapsed time = 1247.465 [2024-12-29 16:49:33] pool-1-thread-10 - 475000 records committed, current elapsed time = 1248.706 [2024-12-29 16:49:33] pool-1-thread-5 - 480000 records committed, current elapsed time = 1248.895 [2024-12-29 16:49:33] pool-1-thread-3 - 485000 records committed, current elapsed time = 1249.082 [2024-12-29 16:49:33] pool-1-thread-4 - 475000 records committed, current elapsed time = 1249.147 [2024-12-29 16:49:33] pool-1-thread-2 - 475000 records committed, current elapsed time = 1249.229 [2024-12-29 16:49:34] pool-1-thread-7 - 480000 records committed, current elapsed time = 1249.837 [2024-12-29 16:49:34] pool-1-thread-6 - 480000 records committed, current elapsed time = 1250.285 [2024-12-29 16:49:34] pool-1-thread-1 - 480000 records committed, current elapsed time = 1250.481 [2024-12-29 16:49:34] pool-1-thread-9 - 475000 records committed, current elapsed time = 1250.560 [2024-12-29 16:49:37] pool-1-thread-8 - 480000 records committed, current elapsed time = 1252.742 [2024-12-29 16:49:38] pool-1-thread-10 - 480000 records committed, current elapsed time = 1254.599 [2024-12-29 16:49:39] pool-1-thread-2 - 480000 records committed, current elapsed time = 1255.119 [2024-12-29 16:49:39] pool-1-thread-5 - 485000 records committed, current elapsed time = 1255.508 [2024-12-29 16:49:39] pool-1-thread-3 - 490000 records committed, current elapsed time = 1255.527 [2024-12-29 16:49:40] pool-1-thread-4 - 480000 records committed, current elapsed time = 1255.784 [2024-12-29 16:49:40] pool-1-thread-7 - 485000 records committed, current elapsed time = 1256.442 [2024-12-29 16:49:42] pool-1-thread-6 - 485000 records committed, current elapsed time = 1258.037 [2024-12-29 16:49:42] pool-1-thread-1 - 485000 records committed, current elapsed time = 1258.112 [2024-12-29 16:49:43] pool-1-thread-9 - 480000 records committed, current elapsed time = 1258.991 [2024-12-29 16:49:44] pool-1-thread-8 - 485000 records committed, current elapsed time = 1259.983 [2024-12-29 16:49:45] pool-1-thread-2 - 485000 records committed, current elapsed time = 1261.110 [2024-12-29 16:49:45] pool-1-thread-10 - 485000 records committed, current elapsed time = 1261.131 [2024-12-29 16:49:45] pool-1-thread-5 - 490000 records committed, current elapsed time = 1261.233 [2024-12-29 16:49:45] pool-1-thread-3 - 495000 records committed, current elapsed time = 1261.332 [2024-12-29 16:49:45] pool-1-thread-4 - 485000 records committed, current elapsed time = 1261.581 [2024-12-29 16:49:47] pool-1-thread-7 - 490000 records committed, current elapsed time = 1263.302 [2024-12-29 16:49:47] pool-1-thread-6 - 490000 records committed, current elapsed time = 1263.376 [2024-12-29 16:49:48] pool-1-thread-1 - 490000 records committed, current elapsed time = 1263.917 [2024-12-29 16:49:49] pool-1-thread-9 - 485000 records committed, current elapsed time = 1265.176 [2024-12-29 16:49:49] pool-1-thread-8 - 490000 records committed, current elapsed time = 1265.436 [2024-12-29 16:49:50] pool-1-thread-10 - 490000 records committed, current elapsed time = 1266.536 [2024-12-29 16:49:52] pool-1-thread-2 - 490000 records committed, current elapsed time = 1267.720 [2024-12-29 16:49:52] pool-1-thread-3 - 500000 records committed, current elapsed time = 1267.829 [2024-12-29 16:49:56] pool-1-thread-5 - 495000 records committed, current elapsed time = 1272.141 [2024-12-29 16:49:59] pool-1-thread-4 - 490000 records committed, current elapsed time = 1275.141 [2024-12-29 16:50:00] pool-1-thread-7 - 495000 records committed, current elapsed time = 1275.880 [2024-12-29 16:50:00] pool-1-thread-9 - 490000 records committed, current elapsed time = 1276.065 [2024-12-29 16:50:01] pool-1-thread-6 - 495000 records committed, current elapsed time = 1277.403 [2024-12-29 16:50:02] pool-1-thread-8 - 495000 records committed, current elapsed time = 1278.066 [2024-12-29 16:50:03] pool-1-thread-1 - 495000 records committed, current elapsed time = 1279.535 [2024-12-29 16:50:05] pool-1-thread-10 - 495000 records committed, current elapsed time = 1280.704 [2024-12-29 16:50:05] pool-1-thread-2 - 495000 records committed, current elapsed time = 1281.022 [2024-12-29 16:50:06] pool-1-thread-6 - 500000 records committed, current elapsed time = 1282.020 [2024-12-29 16:50:06] pool-1-thread-5 - 500000 records committed, current elapsed time = 1282.195 [2024-12-29 16:50:06] pool-1-thread-4 - 495000 records committed, current elapsed time = 1282.605 [2024-12-29 16:50:06] pool-1-thread-7 - 500000 records committed, current elapsed time = 1282.654 [2024-12-29 16:50:07] pool-1-thread-8 - 500000 records committed, current elapsed time = 1282.944 [2024-12-29 16:50:07] pool-1-thread-9 - 495000 records committed, current elapsed time = 1282.973 [2024-12-29 16:50:09] pool-1-thread-1 - 500000 records committed, current elapsed time = 1285.240 [2024-12-29 16:50:10] pool-1-thread-10 - 500000 records committed, current elapsed time = 1285.956 [2024-12-29 16:50:10] pool-1-thread-2 - 500000 records committed, current elapsed time = 1286.282 [2024-12-29 16:50:10] pool-1-thread-4 - 500000 records committed, current elapsed time = 1286.447 [2024-12-29 16:50:11] pool-1-thread-9 - 500000 records committed, current elapsed time = 1286.733 [2024-12-29 16:50:11] org.littlewings.tidb.UuidV4StringRunner.main() - UuidV4StringRunner: 5000000 records inserted, total elapsed time = 1287.717
TiDBの外でUUIDを生成してデータを登録した時の実行ログ(UUID バージョン7)
[INFO] --- exec:3.5.0:java (default-cli) @ uuid-hotspot-test --- [2024-12-29 17:01:49] pool-1-thread-5 - 5000 records committed, current elapsed time = 2.969 [2024-12-29 17:01:49] pool-1-thread-8 - 5000 records committed, current elapsed time = 3.000 [2024-12-29 17:01:50] pool-1-thread-2 - 5000 records committed, current elapsed time = 3.254 [2024-12-29 17:01:50] pool-1-thread-6 - 5000 records committed, current elapsed time = 3.827 [2024-12-29 17:01:50] pool-1-thread-1 - 5000 records committed, current elapsed time = 3.907 [2024-12-29 17:01:50] pool-1-thread-7 - 5000 records committed, current elapsed time = 3.918 [2024-12-29 17:01:50] pool-1-thread-3 - 5000 records committed, current elapsed time = 3.922 [2024-12-29 17:01:50] pool-1-thread-10 - 5000 records committed, current elapsed time = 3.923 [2024-12-29 17:01:50] pool-1-thread-4 - 5000 records committed, current elapsed time = 3.924 [2024-12-29 17:01:50] pool-1-thread-9 - 5000 records committed, current elapsed time = 3.928 [2024-12-29 17:01:54] pool-1-thread-2 - 10000 records committed, current elapsed time = 7.278 [2024-12-29 17:01:54] pool-1-thread-5 - 10000 records committed, current elapsed time = 7.522 [2024-12-29 17:01:54] pool-1-thread-8 - 10000 records committed, current elapsed time = 7.701 [2024-12-29 17:01:54] pool-1-thread-4 - 10000 records committed, current elapsed time = 7.957 [2024-12-29 17:01:55] pool-1-thread-1 - 10000 records committed, current elapsed time = 8.572 [2024-12-29 17:01:55] pool-1-thread-6 - 10000 records committed, current elapsed time = 8.868 [2024-12-29 17:01:55] pool-1-thread-7 - 10000 records committed, current elapsed time = 8.881 [2024-12-29 17:01:55] pool-1-thread-10 - 10000 records committed, current elapsed time = 9.002 [2024-12-29 17:01:55] pool-1-thread-3 - 10000 records committed, current elapsed time = 9.082 [2024-12-29 17:01:56] pool-1-thread-9 - 10000 records committed, current elapsed time = 9.318 [2024-12-29 17:01:58] pool-1-thread-5 - 15000 records committed, current elapsed time = 11.514 [2024-12-29 17:01:58] pool-1-thread-2 - 15000 records committed, current elapsed time = 11.534 [2024-12-29 17:01:58] pool-1-thread-1 - 15000 records committed, current elapsed time = 11.784 [2024-12-29 17:01:59] pool-1-thread-8 - 15000 records committed, current elapsed time = 12.508 [2024-12-29 17:02:00] pool-1-thread-4 - 15000 records committed, current elapsed time = 13.337 [2024-12-29 17:02:00] pool-1-thread-6 - 15000 records committed, current elapsed time = 13.671 [2024-12-29 17:02:00] pool-1-thread-3 - 15000 records committed, current elapsed time = 13.750 [2024-12-29 17:02:00] pool-1-thread-9 - 15000 records committed, current elapsed time = 13.757 [2024-12-29 17:02:00] pool-1-thread-7 - 15000 records committed, current elapsed time = 13.779 [2024-12-29 17:02:00] pool-1-thread-10 - 15000 records committed, current elapsed time = 13.832 [2024-12-29 17:02:03] pool-1-thread-2 - 20000 records committed, current elapsed time = 16.683 [2024-12-29 17:02:03] pool-1-thread-5 - 20000 records committed, current elapsed time = 16.948 [2024-12-29 17:02:04] pool-1-thread-1 - 20000 records committed, current elapsed time = 17.314 [2024-12-29 17:02:04] pool-1-thread-8 - 20000 records committed, current elapsed time = 17.850 [2024-12-29 17:02:04] pool-1-thread-9 - 20000 records committed, current elapsed time = 18.065 [2024-12-29 17:02:05] pool-1-thread-3 - 20000 records committed, current elapsed time = 18.291 [2024-12-29 17:02:05] pool-1-thread-4 - 20000 records committed, current elapsed time = 18.295 [2024-12-29 17:02:05] pool-1-thread-6 - 20000 records committed, current elapsed time = 18.392 [2024-12-29 17:02:05] pool-1-thread-10 - 20000 records committed, current elapsed time = 18.478 [2024-12-29 17:02:05] pool-1-thread-7 - 20000 records committed, current elapsed time = 18.706 [2024-12-29 17:02:08] pool-1-thread-2 - 25000 records committed, current elapsed time = 22.085 [2024-12-29 17:02:09] pool-1-thread-5 - 25000 records committed, current elapsed time = 22.758 [2024-12-29 17:02:09] pool-1-thread-1 - 25000 records committed, current elapsed time = 23.105 [2024-12-29 17:02:10] pool-1-thread-8 - 25000 records committed, current elapsed time = 23.345 [2024-12-29 17:02:10] pool-1-thread-6 - 25000 records committed, current elapsed time = 23.387 [2024-12-29 17:02:10] pool-1-thread-4 - 25000 records committed, current elapsed time = 23.684 [2024-12-29 17:02:10] pool-1-thread-3 - 25000 records committed, current elapsed time = 23.835 [2024-12-29 17:02:11] pool-1-thread-9 - 25000 records committed, current elapsed time = 24.504 [2024-12-29 17:02:11] pool-1-thread-10 - 25000 records committed, current elapsed time = 24.515 [2024-12-29 17:02:11] pool-1-thread-7 - 25000 records committed, current elapsed time = 24.564 [2024-12-29 17:02:14] pool-1-thread-2 - 30000 records committed, current elapsed time = 27.536 [2024-12-29 17:02:14] pool-1-thread-5 - 30000 records committed, current elapsed time = 28.032 [2024-12-29 17:02:15] pool-1-thread-1 - 30000 records committed, current elapsed time = 28.357 [2024-12-29 17:02:15] pool-1-thread-6 - 30000 records committed, current elapsed time = 28.467 [2024-12-29 17:02:15] pool-1-thread-8 - 30000 records committed, current elapsed time = 28.481 [2024-12-29 17:02:16] pool-1-thread-3 - 30000 records committed, current elapsed time = 29.366 [2024-12-29 17:02:16] pool-1-thread-7 - 30000 records committed, current elapsed time = 29.824 [2024-12-29 17:02:16] pool-1-thread-10 - 30000 records committed, current elapsed time = 29.845 [2024-12-29 17:02:16] pool-1-thread-9 - 30000 records committed, current elapsed time = 29.856 [2024-12-29 17:02:16] pool-1-thread-4 - 30000 records committed, current elapsed time = 30.186 [2024-12-29 17:02:19] pool-1-thread-2 - 35000 records committed, current elapsed time = 32.367 [2024-12-29 17:02:19] pool-1-thread-1 - 35000 records committed, current elapsed time = 32.577 [2024-12-29 17:02:19] pool-1-thread-5 - 35000 records committed, current elapsed time = 32.688 [2024-12-29 17:02:19] pool-1-thread-8 - 35000 records committed, current elapsed time = 33.050 [2024-12-29 17:02:20] pool-1-thread-6 - 35000 records committed, current elapsed time = 33.936 [2024-12-29 17:02:21] pool-1-thread-9 - 35000 records committed, current elapsed time = 34.302 [2024-12-29 17:02:21] pool-1-thread-10 - 35000 records committed, current elapsed time = 34.375 [2024-12-29 17:02:21] pool-1-thread-3 - 35000 records committed, current elapsed time = 34.551 [2024-12-29 17:02:21] pool-1-thread-7 - 35000 records committed, current elapsed time = 34.577 [2024-12-29 17:02:21] pool-1-thread-4 - 35000 records committed, current elapsed time = 34.817 [2024-12-29 17:02:26] pool-1-thread-2 - 40000 records committed, current elapsed time = 39.301 [2024-12-29 17:02:26] pool-1-thread-5 - 40000 records committed, current elapsed time = 39.898 [2024-12-29 17:02:26] pool-1-thread-1 - 40000 records committed, current elapsed time = 39.912 [2024-12-29 17:02:27] pool-1-thread-8 - 40000 records committed, current elapsed time = 40.468 [2024-12-29 17:02:27] pool-1-thread-6 - 40000 records committed, current elapsed time = 40.623 [2024-12-29 17:02:27] pool-1-thread-10 - 40000 records committed, current elapsed time = 40.846 [2024-12-29 17:02:27] pool-1-thread-9 - 40000 records committed, current elapsed time = 40.936 [2024-12-29 17:02:28] pool-1-thread-7 - 40000 records committed, current elapsed time = 41.270 [2024-12-29 17:02:28] pool-1-thread-3 - 40000 records committed, current elapsed time = 41.319 [2024-12-29 17:02:28] pool-1-thread-4 - 40000 records committed, current elapsed time = 41.564 [2024-12-29 17:02:31] pool-1-thread-2 - 45000 records committed, current elapsed time = 44.459 [2024-12-29 17:02:31] pool-1-thread-1 - 45000 records committed, current elapsed time = 44.742 [2024-12-29 17:02:31] pool-1-thread-5 - 45000 records committed, current elapsed time = 44.816 [2024-12-29 17:02:31] pool-1-thread-8 - 45000 records committed, current elapsed time = 45.091 [2024-12-29 17:02:32] pool-1-thread-6 - 45000 records committed, current elapsed time = 45.374 [2024-12-29 17:02:32] pool-1-thread-9 - 45000 records committed, current elapsed time = 45.567 [2024-12-29 17:02:32] pool-1-thread-10 - 45000 records committed, current elapsed time = 45.634 [2024-12-29 17:02:32] pool-1-thread-7 - 45000 records committed, current elapsed time = 46.002 [2024-12-29 17:02:33] pool-1-thread-3 - 45000 records committed, current elapsed time = 46.225 [2024-12-29 17:02:33] pool-1-thread-4 - 45000 records committed, current elapsed time = 47.042 [2024-12-29 17:02:36] pool-1-thread-2 - 50000 records committed, current elapsed time = 49.517 [2024-12-29 17:02:36] pool-1-thread-1 - 50000 records committed, current elapsed time = 49.705 [2024-12-29 17:02:36] pool-1-thread-5 - 50000 records committed, current elapsed time = 49.947 [2024-12-29 17:02:37] pool-1-thread-8 - 50000 records committed, current elapsed time = 50.332 [2024-12-29 17:02:37] pool-1-thread-6 - 50000 records committed, current elapsed time = 50.410 [2024-12-29 17:02:38] pool-1-thread-9 - 50000 records committed, current elapsed time = 51.240 [2024-12-29 17:02:38] pool-1-thread-10 - 50000 records committed, current elapsed time = 51.727 [2024-12-29 17:02:39] pool-1-thread-3 - 50000 records committed, current elapsed time = 52.703 [2024-12-29 17:02:39] pool-1-thread-7 - 50000 records committed, current elapsed time = 52.843 [2024-12-29 17:02:40] pool-1-thread-4 - 50000 records committed, current elapsed time = 53.231 [2024-12-29 17:02:42] pool-1-thread-2 - 55000 records committed, current elapsed time = 55.388 [2024-12-29 17:02:42] pool-1-thread-1 - 55000 records committed, current elapsed time = 55.651 [2024-12-29 17:02:42] pool-1-thread-5 - 55000 records committed, current elapsed time = 55.851 [2024-12-29 17:02:43] pool-1-thread-8 - 55000 records committed, current elapsed time = 56.259 [2024-12-29 17:02:43] pool-1-thread-9 - 55000 records committed, current elapsed time = 56.819 [2024-12-29 17:02:44] pool-1-thread-6 - 55000 records committed, current elapsed time = 57.255 [2024-12-29 17:02:44] pool-1-thread-10 - 55000 records committed, current elapsed time = 57.645 [2024-12-29 17:02:45] pool-1-thread-3 - 55000 records committed, current elapsed time = 58.746 [2024-12-29 17:02:45] pool-1-thread-4 - 55000 records committed, current elapsed time = 58.933 [2024-12-29 17:02:45] pool-1-thread-7 - 55000 records committed, current elapsed time = 59.134 [2024-12-29 17:02:48] pool-1-thread-5 - 60000 records committed, current elapsed time = 61.411 [2024-12-29 17:02:48] pool-1-thread-2 - 60000 records committed, current elapsed time = 61.496 [2024-12-29 17:02:48] pool-1-thread-1 - 60000 records committed, current elapsed time = 61.524 [2024-12-29 17:02:49] pool-1-thread-6 - 60000 records committed, current elapsed time = 63.194 [2024-12-29 17:02:50] pool-1-thread-8 - 60000 records committed, current elapsed time = 63.462 [2024-12-29 17:02:50] pool-1-thread-9 - 60000 records committed, current elapsed time = 63.484 [2024-12-29 17:02:50] pool-1-thread-10 - 60000 records committed, current elapsed time = 63.718 [2024-12-29 17:02:50] pool-1-thread-3 - 60000 records committed, current elapsed time = 63.951 [2024-12-29 17:02:51] pool-1-thread-4 - 60000 records committed, current elapsed time = 64.438 [2024-12-29 17:02:51] pool-1-thread-7 - 60000 records committed, current elapsed time = 64.559 [2024-12-29 17:02:53] pool-1-thread-5 - 65000 records committed, current elapsed time = 66.677 [2024-12-29 17:02:53] pool-1-thread-2 - 65000 records committed, current elapsed time = 67.079 [2024-12-29 17:02:54] pool-1-thread-1 - 65000 records committed, current elapsed time = 67.327 [2024-12-29 17:02:54] pool-1-thread-6 - 65000 records committed, current elapsed time = 67.831 [2024-12-29 17:02:54] pool-1-thread-8 - 65000 records committed, current elapsed time = 67.850 [2024-12-29 17:02:54] pool-1-thread-10 - 65000 records committed, current elapsed time = 68.041 [2024-12-29 17:02:54] pool-1-thread-9 - 65000 records committed, current elapsed time = 68.103 [2024-12-29 17:02:55] pool-1-thread-3 - 65000 records committed, current elapsed time = 68.236 [2024-12-29 17:02:55] pool-1-thread-4 - 65000 records committed, current elapsed time = 68.562 [2024-12-29 17:02:55] pool-1-thread-7 - 65000 records committed, current elapsed time = 68.843 [2024-12-29 17:02:58] pool-1-thread-5 - 70000 records committed, current elapsed time = 71.612 [2024-12-29 17:02:58] pool-1-thread-1 - 70000 records committed, current elapsed time = 71.837 [2024-12-29 17:02:58] pool-1-thread-2 - 70000 records committed, current elapsed time = 72.136 [2024-12-29 17:02:59] pool-1-thread-6 - 70000 records committed, current elapsed time = 72.676 [2024-12-29 17:02:59] pool-1-thread-8 - 70000 records committed, current elapsed time = 72.858 [2024-12-29 17:02:59] pool-1-thread-10 - 70000 records committed, current elapsed time = 73.035 [2024-12-29 17:02:59] pool-1-thread-3 - 70000 records committed, current elapsed time = 73.054 [2024-12-29 17:03:00] pool-1-thread-9 - 70000 records committed, current elapsed time = 73.259 [2024-12-29 17:03:00] pool-1-thread-4 - 70000 records committed, current elapsed time = 73.861 [2024-12-29 17:03:01] pool-1-thread-7 - 70000 records committed, current elapsed time = 74.775 [2024-12-29 17:03:07] pool-1-thread-5 - 75000 records committed, current elapsed time = 80.887 [2024-12-29 17:03:07] pool-1-thread-1 - 75000 records committed, current elapsed time = 81.141 [2024-12-29 17:03:08] pool-1-thread-2 - 75000 records committed, current elapsed time = 81.463 [2024-12-29 17:03:08] pool-1-thread-8 - 75000 records committed, current elapsed time = 81.815 [2024-12-29 17:03:08] pool-1-thread-6 - 75000 records committed, current elapsed time = 81.968 [2024-12-29 17:03:08] pool-1-thread-3 - 75000 records committed, current elapsed time = 81.986 [2024-12-29 17:03:09] pool-1-thread-10 - 75000 records committed, current elapsed time = 82.995 [2024-12-29 17:03:10] pool-1-thread-9 - 75000 records committed, current elapsed time = 83.488 [2024-12-29 17:03:10] pool-1-thread-4 - 75000 records committed, current elapsed time = 83.522 [2024-12-29 17:03:10] pool-1-thread-7 - 75000 records committed, current elapsed time = 83.953 [2024-12-29 17:03:17] pool-1-thread-5 - 80000 records committed, current elapsed time = 90.564 [2024-12-29 17:03:18] pool-1-thread-1 - 80000 records committed, current elapsed time = 91.210 [2024-12-29 17:03:18] pool-1-thread-8 - 80000 records committed, current elapsed time = 92.151 [2024-12-29 17:03:19] pool-1-thread-2 - 80000 records committed, current elapsed time = 93.146 [2024-12-29 17:03:21] pool-1-thread-3 - 80000 records committed, current elapsed time = 94.623 [2024-12-29 17:03:21] pool-1-thread-6 - 80000 records committed, current elapsed time = 94.924 [2024-12-29 17:03:23] pool-1-thread-10 - 80000 records committed, current elapsed time = 96.881 [2024-12-29 17:03:24] pool-1-thread-4 - 80000 records committed, current elapsed time = 97.556 [2024-12-29 17:03:24] pool-1-thread-9 - 80000 records committed, current elapsed time = 97.568 [2024-12-29 17:03:24] pool-1-thread-7 - 80000 records committed, current elapsed time = 97.683 [2024-12-29 17:03:31] pool-1-thread-5 - 85000 records committed, current elapsed time = 105.077 [2024-12-29 17:03:33] pool-1-thread-1 - 85000 records committed, current elapsed time = 107.031 [2024-12-29 17:03:35] pool-1-thread-8 - 85000 records committed, current elapsed time = 109.153 [2024-12-29 17:03:36] pool-1-thread-2 - 85000 records committed, current elapsed time = 109.665 [2024-12-29 17:03:37] pool-1-thread-6 - 85000 records committed, current elapsed time = 110.539 [2024-12-29 17:03:37] pool-1-thread-3 - 85000 records committed, current elapsed time = 111.070 [2024-12-29 17:03:38] pool-1-thread-7 - 85000 records committed, current elapsed time = 111.444 [2024-12-29 17:03:38] pool-1-thread-10 - 85000 records committed, current elapsed time = 111.530 [2024-12-29 17:03:38] pool-1-thread-4 - 85000 records committed, current elapsed time = 111.608 [2024-12-29 17:03:38] pool-1-thread-9 - 85000 records committed, current elapsed time = 111.806 [2024-12-29 17:03:41] pool-1-thread-5 - 90000 records committed, current elapsed time = 114.421 [2024-12-29 17:03:42] pool-1-thread-1 - 90000 records committed, current elapsed time = 115.539 [2024-12-29 17:03:43] pool-1-thread-8 - 90000 records committed, current elapsed time = 116.666 [2024-12-29 17:03:44] pool-1-thread-2 - 90000 records committed, current elapsed time = 117.359 [2024-12-29 17:03:44] pool-1-thread-6 - 90000 records committed, current elapsed time = 118.111 [2024-12-29 17:03:45] pool-1-thread-3 - 90000 records committed, current elapsed time = 118.613 [2024-12-29 17:03:45] pool-1-thread-4 - 90000 records committed, current elapsed time = 118.668 [2024-12-29 17:03:45] pool-1-thread-7 - 90000 records committed, current elapsed time = 118.788 [2024-12-29 17:03:46] pool-1-thread-10 - 90000 records committed, current elapsed time = 119.642 [2024-12-29 17:03:47] pool-1-thread-9 - 90000 records committed, current elapsed time = 120.688 [2024-12-29 17:03:49] pool-1-thread-5 - 95000 records committed, current elapsed time = 122.583 [2024-12-29 17:03:49] pool-1-thread-1 - 95000 records committed, current elapsed time = 122.671 [2024-12-29 17:03:50] pool-1-thread-8 - 95000 records committed, current elapsed time = 123.357 [2024-12-29 17:03:50] pool-1-thread-2 - 95000 records committed, current elapsed time = 123.377 [2024-12-29 17:03:50] pool-1-thread-6 - 95000 records committed, current elapsed time = 124.149 [2024-12-29 17:03:51] pool-1-thread-3 - 95000 records committed, current elapsed time = 124.466 [2024-12-29 17:03:51] pool-1-thread-4 - 95000 records committed, current elapsed time = 125.064 [2024-12-29 17:03:52] pool-1-thread-7 - 95000 records committed, current elapsed time = 125.235 [2024-12-29 17:03:52] pool-1-thread-10 - 95000 records committed, current elapsed time = 125.684 [2024-12-29 17:03:52] pool-1-thread-9 - 95000 records committed, current elapsed time = 125.771 [2024-12-29 17:03:54] pool-1-thread-5 - 100000 records committed, current elapsed time = 127.476 [2024-12-29 17:03:54] pool-1-thread-1 - 100000 records committed, current elapsed time = 127.663 [2024-12-29 17:03:54] pool-1-thread-2 - 100000 records committed, current elapsed time = 128.048 [2024-12-29 17:03:55] pool-1-thread-8 - 100000 records committed, current elapsed time = 128.623 [2024-12-29 17:03:55] pool-1-thread-6 - 100000 records committed, current elapsed time = 129.074 [2024-12-29 17:03:55] pool-1-thread-3 - 100000 records committed, current elapsed time = 129.182 [2024-12-29 17:03:56] pool-1-thread-4 - 100000 records committed, current elapsed time = 129.720 [2024-12-29 17:03:56] pool-1-thread-9 - 100000 records committed, current elapsed time = 129.955 [2024-12-29 17:03:56] pool-1-thread-10 - 100000 records committed, current elapsed time = 130.026 [2024-12-29 17:03:56] pool-1-thread-7 - 100000 records committed, current elapsed time = 130.152 [2024-12-29 17:03:59] pool-1-thread-5 - 105000 records committed, current elapsed time = 132.382 [2024-12-29 17:04:01] pool-1-thread-1 - 105000 records committed, current elapsed time = 134.444 [2024-12-29 17:04:01] pool-1-thread-2 - 105000 records committed, current elapsed time = 134.988 [2024-12-29 17:04:02] pool-1-thread-6 - 105000 records committed, current elapsed time = 135.686 [2024-12-29 17:04:02] pool-1-thread-8 - 105000 records committed, current elapsed time = 135.893 [2024-12-29 17:04:02] pool-1-thread-3 - 105000 records committed, current elapsed time = 135.915 [2024-12-29 17:04:02] pool-1-thread-4 - 105000 records committed, current elapsed time = 136.121 [2024-12-29 17:04:03] pool-1-thread-9 - 105000 records committed, current elapsed time = 136.854 [2024-12-29 17:04:03] pool-1-thread-7 - 105000 records committed, current elapsed time = 137.071 [2024-12-29 17:04:04] pool-1-thread-10 - 105000 records committed, current elapsed time = 137.241 [2024-12-29 17:04:07] pool-1-thread-5 - 110000 records committed, current elapsed time = 140.699 [2024-12-29 17:04:08] pool-1-thread-1 - 110000 records committed, current elapsed time = 141.534 [2024-12-29 17:04:08] pool-1-thread-2 - 110000 records committed, current elapsed time = 141.718 [2024-12-29 17:04:09] pool-1-thread-8 - 110000 records committed, current elapsed time = 142.343 [2024-12-29 17:04:09] pool-1-thread-6 - 110000 records committed, current elapsed time = 142.455 [2024-12-29 17:04:09] pool-1-thread-4 - 110000 records committed, current elapsed time = 142.726 [2024-12-29 17:04:09] pool-1-thread-3 - 110000 records committed, current elapsed time = 142.778 [2024-12-29 17:04:10] pool-1-thread-9 - 110000 records committed, current elapsed time = 143.218 [2024-12-29 17:04:10] pool-1-thread-7 - 110000 records committed, current elapsed time = 143.519 [2024-12-29 17:04:10] pool-1-thread-10 - 110000 records committed, current elapsed time = 143.876 [2024-12-29 17:04:12] pool-1-thread-5 - 115000 records committed, current elapsed time = 145.911 [2024-12-29 17:04:13] pool-1-thread-1 - 115000 records committed, current elapsed time = 146.226 [2024-12-29 17:04:13] pool-1-thread-2 - 115000 records committed, current elapsed time = 146.677 [2024-12-29 17:04:14] pool-1-thread-6 - 115000 records committed, current elapsed time = 147.319 [2024-12-29 17:04:14] pool-1-thread-4 - 115000 records committed, current elapsed time = 147.520 [2024-12-29 17:04:14] pool-1-thread-8 - 115000 records committed, current elapsed time = 147.642 [2024-12-29 17:04:14] pool-1-thread-3 - 115000 records committed, current elapsed time = 147.712 [2024-12-29 17:04:14] pool-1-thread-9 - 115000 records committed, current elapsed time = 147.987 [2024-12-29 17:04:15] pool-1-thread-7 - 115000 records committed, current elapsed time = 149.199 [2024-12-29 17:04:16] pool-1-thread-10 - 115000 records committed, current elapsed time = 149.215 [2024-12-29 17:04:17] pool-1-thread-5 - 120000 records committed, current elapsed time = 150.912 [2024-12-29 17:04:18] pool-1-thread-2 - 120000 records committed, current elapsed time = 151.274 [2024-12-29 17:04:18] pool-1-thread-1 - 120000 records committed, current elapsed time = 151.449 [2024-12-29 17:04:19] pool-1-thread-6 - 120000 records committed, current elapsed time = 152.378 [2024-12-29 17:04:19] pool-1-thread-8 - 120000 records committed, current elapsed time = 152.479 [2024-12-29 17:04:19] pool-1-thread-4 - 120000 records committed, current elapsed time = 152.931 [2024-12-29 17:04:20] pool-1-thread-3 - 120000 records committed, current elapsed time = 153.530 [2024-12-29 17:04:21] pool-1-thread-9 - 120000 records committed, current elapsed time = 154.569 [2024-12-29 17:04:21] pool-1-thread-10 - 120000 records committed, current elapsed time = 155.189 [2024-12-29 17:04:22] pool-1-thread-7 - 120000 records committed, current elapsed time = 155.362 [2024-12-29 17:04:24] pool-1-thread-5 - 125000 records committed, current elapsed time = 158.022 [2024-12-29 17:04:24] pool-1-thread-2 - 125000 records committed, current elapsed time = 158.187 [2024-12-29 17:04:25] pool-1-thread-1 - 125000 records committed, current elapsed time = 158.321 [2024-12-29 17:04:26] pool-1-thread-8 - 125000 records committed, current elapsed time = 159.803 [2024-12-29 17:04:29] pool-1-thread-6 - 125000 records committed, current elapsed time = 162.292 [2024-12-29 17:04:29] pool-1-thread-3 - 125000 records committed, current elapsed time = 162.660 [2024-12-29 17:04:29] pool-1-thread-4 - 125000 records committed, current elapsed time = 162.885 [2024-12-29 17:04:29] pool-1-thread-9 - 125000 records committed, current elapsed time = 162.985 [2024-12-29 17:04:31] pool-1-thread-7 - 125000 records committed, current elapsed time = 164.477 [2024-12-29 17:04:31] pool-1-thread-10 - 125000 records committed, current elapsed time = 164.770 [2024-12-29 17:04:33] pool-1-thread-2 - 130000 records committed, current elapsed time = 166.454 [2024-12-29 17:04:33] pool-1-thread-5 - 130000 records committed, current elapsed time = 167.116 [2024-12-29 17:04:34] pool-1-thread-1 - 130000 records committed, current elapsed time = 167.407 [2024-12-29 17:04:35] pool-1-thread-8 - 130000 records committed, current elapsed time = 169.055 [2024-12-29 17:04:36] pool-1-thread-6 - 130000 records committed, current elapsed time = 170.139 [2024-12-29 17:04:37] pool-1-thread-4 - 130000 records committed, current elapsed time = 170.323 [2024-12-29 17:04:37] pool-1-thread-9 - 130000 records committed, current elapsed time = 170.336 [2024-12-29 17:04:37] pool-1-thread-3 - 130000 records committed, current elapsed time = 170.337 [2024-12-29 17:04:37] pool-1-thread-10 - 130000 records committed, current elapsed time = 171.087 [2024-12-29 17:04:37] pool-1-thread-7 - 130000 records committed, current elapsed time = 171.148 [2024-12-29 17:04:41] pool-1-thread-5 - 135000 records committed, current elapsed time = 174.728 [2024-12-29 17:04:41] pool-1-thread-1 - 135000 records committed, current elapsed time = 174.756 [2024-12-29 17:04:41] pool-1-thread-2 - 135000 records committed, current elapsed time = 174.793 [2024-12-29 17:04:43] pool-1-thread-8 - 135000 records committed, current elapsed time = 176.401 [2024-12-29 17:04:43] pool-1-thread-6 - 135000 records committed, current elapsed time = 176.716 [2024-12-29 17:04:43] pool-1-thread-4 - 135000 records committed, current elapsed time = 176.935 [2024-12-29 17:04:43] pool-1-thread-3 - 135000 records committed, current elapsed time = 177.175 [2024-12-29 17:04:44] pool-1-thread-10 - 135000 records committed, current elapsed time = 177.209 [2024-12-29 17:04:44] pool-1-thread-9 - 135000 records committed, current elapsed time = 177.249 [2024-12-29 17:04:45] pool-1-thread-7 - 135000 records committed, current elapsed time = 178.910 [2024-12-29 17:04:48] pool-1-thread-1 - 140000 records committed, current elapsed time = 181.856 [2024-12-29 17:04:49] pool-1-thread-2 - 140000 records committed, current elapsed time = 182.206 [2024-12-29 17:04:49] pool-1-thread-5 - 140000 records committed, current elapsed time = 182.571 [2024-12-29 17:04:51] pool-1-thread-8 - 140000 records committed, current elapsed time = 184.487 [2024-12-29 17:04:51] pool-1-thread-6 - 140000 records committed, current elapsed time = 185.038 [2024-12-29 17:04:52] pool-1-thread-4 - 140000 records committed, current elapsed time = 185.428 [2024-12-29 17:04:52] pool-1-thread-3 - 140000 records committed, current elapsed time = 185.613 [2024-12-29 17:04:54] pool-1-thread-10 - 140000 records committed, current elapsed time = 187.217 [2024-12-29 17:04:54] pool-1-thread-9 - 140000 records committed, current elapsed time = 187.406 [2024-12-29 17:04:54] pool-1-thread-7 - 140000 records committed, current elapsed time = 187.999 [2024-12-29 17:04:59] pool-1-thread-1 - 145000 records committed, current elapsed time = 192.866 [2024-12-29 17:05:00] pool-1-thread-2 - 145000 records committed, current elapsed time = 193.201 [2024-12-29 17:05:00] pool-1-thread-5 - 145000 records committed, current elapsed time = 193.992 [2024-12-29 17:05:00] pool-1-thread-8 - 145000 records committed, current elapsed time = 194.021 [2024-12-29 17:05:00] pool-1-thread-6 - 145000 records committed, current elapsed time = 194.188 [2024-12-29 17:05:02] pool-1-thread-4 - 145000 records committed, current elapsed time = 195.659 [2024-12-29 17:05:02] pool-1-thread-3 - 145000 records committed, current elapsed time = 195.690 [2024-12-29 17:05:03] pool-1-thread-10 - 145000 records committed, current elapsed time = 196.236 [2024-12-29 17:05:03] pool-1-thread-9 - 145000 records committed, current elapsed time = 196.365 [2024-12-29 17:05:09] pool-1-thread-7 - 145000 records committed, current elapsed time = 203.197 [2024-12-29 17:05:10] pool-1-thread-1 - 150000 records committed, current elapsed time = 204.044 [2024-12-29 17:05:11] pool-1-thread-2 - 150000 records committed, current elapsed time = 204.206 [2024-12-29 17:05:12] pool-1-thread-6 - 150000 records committed, current elapsed time = 205.879 [2024-12-29 17:05:12] pool-1-thread-8 - 150000 records committed, current elapsed time = 205.898 [2024-12-29 17:05:12] pool-1-thread-5 - 150000 records committed, current elapsed time = 205.915 [2024-12-29 17:05:14] pool-1-thread-3 - 150000 records committed, current elapsed time = 207.240 [2024-12-29 17:05:14] pool-1-thread-4 - 150000 records committed, current elapsed time = 207.242 [2024-12-29 17:05:14] pool-1-thread-10 - 150000 records committed, current elapsed time = 207.256 [2024-12-29 17:05:14] pool-1-thread-9 - 150000 records committed, current elapsed time = 207.628 [2024-12-29 17:05:15] pool-1-thread-7 - 150000 records committed, current elapsed time = 208.327 [2024-12-29 17:05:17] pool-1-thread-2 - 155000 records committed, current elapsed time = 211.087 [2024-12-29 17:05:18] pool-1-thread-1 - 155000 records committed, current elapsed time = 211.212 [2024-12-29 17:05:19] pool-1-thread-6 - 155000 records committed, current elapsed time = 212.541 [2024-12-29 17:05:19] pool-1-thread-8 - 155000 records committed, current elapsed time = 213.135 [2024-12-29 17:05:19] pool-1-thread-5 - 155000 records committed, current elapsed time = 213.143 [2024-12-29 17:05:20] pool-1-thread-3 - 155000 records committed, current elapsed time = 213.776 [2024-12-29 17:05:20] pool-1-thread-4 - 155000 records committed, current elapsed time = 213.886 [2024-12-29 17:05:21] pool-1-thread-10 - 155000 records committed, current elapsed time = 214.245 [2024-12-29 17:05:21] pool-1-thread-9 - 155000 records committed, current elapsed time = 214.909 [2024-12-29 17:05:24] pool-1-thread-7 - 155000 records committed, current elapsed time = 217.598 [2024-12-29 17:05:26] pool-1-thread-1 - 160000 records committed, current elapsed time = 219.409 [2024-12-29 17:05:26] pool-1-thread-2 - 160000 records committed, current elapsed time = 219.610 [2024-12-29 17:05:27] pool-1-thread-8 - 160000 records committed, current elapsed time = 220.237 [2024-12-29 17:05:27] pool-1-thread-6 - 160000 records committed, current elapsed time = 220.249 [2024-12-29 17:05:27] pool-1-thread-5 - 160000 records committed, current elapsed time = 220.525 [2024-12-29 17:05:27] pool-1-thread-4 - 160000 records committed, current elapsed time = 220.910 [2024-12-29 17:05:27] pool-1-thread-3 - 160000 records committed, current elapsed time = 221.197 [2024-12-29 17:05:28] pool-1-thread-10 - 160000 records committed, current elapsed time = 221.299 [2024-12-29 17:05:28] pool-1-thread-9 - 160000 records committed, current elapsed time = 221.817 [2024-12-29 17:05:31] pool-1-thread-7 - 160000 records committed, current elapsed time = 225.135 [2024-12-29 17:05:32] pool-1-thread-1 - 165000 records committed, current elapsed time = 226.102 [2024-12-29 17:05:33] pool-1-thread-2 - 165000 records committed, current elapsed time = 227.022 [2024-12-29 17:05:34] pool-1-thread-8 - 165000 records committed, current elapsed time = 227.299 [2024-12-29 17:05:34] pool-1-thread-6 - 165000 records committed, current elapsed time = 227.477 [2024-12-29 17:05:34] pool-1-thread-5 - 165000 records committed, current elapsed time = 227.737 [2024-12-29 17:05:34] pool-1-thread-4 - 165000 records committed, current elapsed time = 227.760 [2024-12-29 17:05:35] pool-1-thread-3 - 165000 records committed, current elapsed time = 228.834 [2024-12-29 17:05:36] pool-1-thread-10 - 165000 records committed, current elapsed time = 229.650 [2024-12-29 17:05:36] pool-1-thread-9 - 165000 records committed, current elapsed time = 229.956 [2024-12-29 17:05:37] pool-1-thread-7 - 165000 records committed, current elapsed time = 230.314 [2024-12-29 17:05:38] pool-1-thread-1 - 170000 records committed, current elapsed time = 232.115 [2024-12-29 17:05:39] pool-1-thread-2 - 170000 records committed, current elapsed time = 232.286 [2024-12-29 17:05:39] pool-1-thread-8 - 170000 records committed, current elapsed time = 232.660 [2024-12-29 17:05:39] pool-1-thread-6 - 170000 records committed, current elapsed time = 232.807 [2024-12-29 17:05:40] pool-1-thread-5 - 170000 records committed, current elapsed time = 233.725 [2024-12-29 17:05:41] pool-1-thread-4 - 170000 records committed, current elapsed time = 234.375 [2024-12-29 17:05:41] pool-1-thread-3 - 170000 records committed, current elapsed time = 234.894 [2024-12-29 17:05:41] pool-1-thread-10 - 170000 records committed, current elapsed time = 235.094 [2024-12-29 17:05:42] pool-1-thread-9 - 170000 records committed, current elapsed time = 235.865 [2024-12-29 17:05:43] pool-1-thread-7 - 170000 records committed, current elapsed time = 237.034 [2024-12-29 17:05:44] pool-1-thread-1 - 175000 records committed, current elapsed time = 237.824 [2024-12-29 17:05:44] pool-1-thread-2 - 175000 records committed, current elapsed time = 238.070 [2024-12-29 17:05:46] pool-1-thread-8 - 175000 records committed, current elapsed time = 239.736 [2024-12-29 17:05:47] pool-1-thread-6 - 175000 records committed, current elapsed time = 240.520 [2024-12-29 17:05:47] pool-1-thread-5 - 175000 records committed, current elapsed time = 240.536 [2024-12-29 17:05:48] pool-1-thread-3 - 175000 records committed, current elapsed time = 241.569 [2024-12-29 17:05:48] pool-1-thread-4 - 175000 records committed, current elapsed time = 241.750 [2024-12-29 17:05:48] pool-1-thread-10 - 175000 records committed, current elapsed time = 241.890 [2024-12-29 17:05:49] pool-1-thread-9 - 175000 records committed, current elapsed time = 242.358 [2024-12-29 17:05:49] pool-1-thread-7 - 175000 records committed, current elapsed time = 242.791 [2024-12-29 17:05:54] pool-1-thread-1 - 180000 records committed, current elapsed time = 248.071 [2024-12-29 17:05:55] pool-1-thread-2 - 180000 records committed, current elapsed time = 249.039 [2024-12-29 17:05:57] pool-1-thread-8 - 180000 records committed, current elapsed time = 250.215 [2024-12-29 17:05:57] pool-1-thread-5 - 180000 records committed, current elapsed time = 250.218 [2024-12-29 17:05:57] pool-1-thread-6 - 180000 records committed, current elapsed time = 250.400 [2024-12-29 17:05:57] pool-1-thread-3 - 180000 records committed, current elapsed time = 250.796 [2024-12-29 17:05:58] pool-1-thread-10 - 180000 records committed, current elapsed time = 251.322 [2024-12-29 17:05:58] pool-1-thread-4 - 180000 records committed, current elapsed time = 251.382 [2024-12-29 17:05:58] pool-1-thread-9 - 180000 records committed, current elapsed time = 251.978 [2024-12-29 17:06:00] pool-1-thread-7 - 180000 records committed, current elapsed time = 254.071 [2024-12-29 17:06:01] pool-1-thread-1 - 185000 records committed, current elapsed time = 255.004 [2024-12-29 17:06:01] pool-1-thread-2 - 185000 records committed, current elapsed time = 255.165 [2024-12-29 17:06:03] pool-1-thread-8 - 185000 records committed, current elapsed time = 256.776 [2024-12-29 17:06:03] pool-1-thread-6 - 185000 records committed, current elapsed time = 256.857 [2024-12-29 17:06:03] pool-1-thread-5 - 185000 records committed, current elapsed time = 257.086 [2024-12-29 17:06:04] pool-1-thread-3 - 185000 records committed, current elapsed time = 257.267 [2024-12-29 17:06:04] pool-1-thread-10 - 185000 records committed, current elapsed time = 257.708 [2024-12-29 17:06:04] pool-1-thread-4 - 185000 records committed, current elapsed time = 258.069 [2024-12-29 17:06:06] pool-1-thread-9 - 185000 records committed, current elapsed time = 260.015 [2024-12-29 17:06:07] pool-1-thread-7 - 185000 records committed, current elapsed time = 260.253 [2024-12-29 17:06:08] pool-1-thread-2 - 190000 records committed, current elapsed time = 261.259 [2024-12-29 17:06:08] pool-1-thread-1 - 190000 records committed, current elapsed time = 261.874 [2024-12-29 17:06:09] pool-1-thread-6 - 190000 records committed, current elapsed time = 262.301 [2024-12-29 17:06:09] pool-1-thread-8 - 190000 records committed, current elapsed time = 262.315 [2024-12-29 17:06:09] pool-1-thread-5 - 190000 records committed, current elapsed time = 262.721 [2024-12-29 17:06:09] pool-1-thread-3 - 190000 records committed, current elapsed time = 262.743 [2024-12-29 17:06:11] pool-1-thread-10 - 190000 records committed, current elapsed time = 264.602 [2024-12-29 17:06:11] pool-1-thread-4 - 190000 records committed, current elapsed time = 264.677 [2024-12-29 17:06:11] pool-1-thread-9 - 190000 records committed, current elapsed time = 265.029 [2024-12-29 17:06:11] pool-1-thread-7 - 190000 records committed, current elapsed time = 265.157 [2024-12-29 17:06:13] pool-1-thread-2 - 195000 records committed, current elapsed time = 266.626 [2024-12-29 17:06:13] pool-1-thread-1 - 195000 records committed, current elapsed time = 267.046 [2024-12-29 17:06:14] pool-1-thread-8 - 195000 records committed, current elapsed time = 267.340 [2024-12-29 17:06:14] pool-1-thread-6 - 195000 records committed, current elapsed time = 267.555 [2024-12-29 17:06:16] pool-1-thread-3 - 195000 records committed, current elapsed time = 269.269 [2024-12-29 17:06:16] pool-1-thread-5 - 195000 records committed, current elapsed time = 269.275 [2024-12-29 17:06:16] pool-1-thread-10 - 195000 records committed, current elapsed time = 269.914 [2024-12-29 17:06:16] pool-1-thread-4 - 195000 records committed, current elapsed time = 270.046 [2024-12-29 17:06:17] pool-1-thread-9 - 195000 records committed, current elapsed time = 270.212 [2024-12-29 17:06:17] pool-1-thread-7 - 195000 records committed, current elapsed time = 270.372 [2024-12-29 17:06:19] pool-1-thread-1 - 200000 records committed, current elapsed time = 272.364 [2024-12-29 17:06:19] pool-1-thread-2 - 200000 records committed, current elapsed time = 272.675 [2024-12-29 17:06:21] pool-1-thread-8 - 200000 records committed, current elapsed time = 274.589 [2024-12-29 17:06:21] pool-1-thread-6 - 200000 records committed, current elapsed time = 274.702 [2024-12-29 17:06:21] pool-1-thread-3 - 200000 records committed, current elapsed time = 275.102 [2024-12-29 17:06:21] pool-1-thread-5 - 200000 records committed, current elapsed time = 275.179 [2024-12-29 17:06:22] pool-1-thread-10 - 200000 records committed, current elapsed time = 275.740 [2024-12-29 17:06:22] pool-1-thread-4 - 200000 records committed, current elapsed time = 275.797 [2024-12-29 17:06:22] pool-1-thread-9 - 200000 records committed, current elapsed time = 275.886 [2024-12-29 17:06:23] pool-1-thread-7 - 200000 records committed, current elapsed time = 276.978 [2024-12-29 17:06:25] pool-1-thread-1 - 205000 records committed, current elapsed time = 278.546 [2024-12-29 17:06:26] pool-1-thread-2 - 205000 records committed, current elapsed time = 279.271 [2024-12-29 17:06:26] pool-1-thread-8 - 205000 records committed, current elapsed time = 279.873 [2024-12-29 17:06:26] pool-1-thread-6 - 205000 records committed, current elapsed time = 280.172 [2024-12-29 17:06:27] pool-1-thread-5 - 205000 records committed, current elapsed time = 280.741 [2024-12-29 17:06:27] pool-1-thread-3 - 205000 records committed, current elapsed time = 281.028 [2024-12-29 17:06:29] pool-1-thread-10 - 205000 records committed, current elapsed time = 282.271 [2024-12-29 17:06:29] pool-1-thread-9 - 205000 records committed, current elapsed time = 282.656 [2024-12-29 17:06:30] pool-1-thread-4 - 205000 records committed, current elapsed time = 283.223 [2024-12-29 17:06:30] pool-1-thread-7 - 205000 records committed, current elapsed time = 283.637 [2024-12-29 17:06:32] pool-1-thread-1 - 210000 records committed, current elapsed time = 285.323 [2024-12-29 17:06:32] pool-1-thread-2 - 210000 records committed, current elapsed time = 285.336 [2024-12-29 17:06:32] pool-1-thread-8 - 210000 records committed, current elapsed time = 286.165 [2024-12-29 17:06:33] pool-1-thread-6 - 210000 records committed, current elapsed time = 286.248 [2024-12-29 17:06:33] pool-1-thread-3 - 210000 records committed, current elapsed time = 287.035 [2024-12-29 17:06:33] pool-1-thread-5 - 210000 records committed, current elapsed time = 287.151 [2024-12-29 17:06:36] pool-1-thread-10 - 210000 records committed, current elapsed time = 289.221 [2024-12-29 17:06:36] pool-1-thread-9 - 210000 records committed, current elapsed time = 289.323 [2024-12-29 17:06:37] pool-1-thread-4 - 210000 records committed, current elapsed time = 290.321 [2024-12-29 17:06:37] pool-1-thread-7 - 210000 records committed, current elapsed time = 291.010 [2024-12-29 17:06:42] pool-1-thread-2 - 215000 records committed, current elapsed time = 296.170 [2024-12-29 17:06:42] pool-1-thread-1 - 215000 records committed, current elapsed time = 296.180 [2024-12-29 17:06:43] pool-1-thread-6 - 215000 records committed, current elapsed time = 296.682 [2024-12-29 17:06:43] pool-1-thread-8 - 215000 records committed, current elapsed time = 296.745 [2024-12-29 17:06:44] pool-1-thread-3 - 215000 records committed, current elapsed time = 298.074 [2024-12-29 17:06:45] pool-1-thread-5 - 215000 records committed, current elapsed time = 298.695 [2024-12-29 17:06:46] pool-1-thread-10 - 215000 records committed, current elapsed time = 299.684 [2024-12-29 17:06:46] pool-1-thread-9 - 215000 records committed, current elapsed time = 299.844 [2024-12-29 17:06:47] pool-1-thread-4 - 215000 records committed, current elapsed time = 300.394 [2024-12-29 17:06:48] pool-1-thread-7 - 215000 records committed, current elapsed time = 301.595 [2024-12-29 17:06:49] pool-1-thread-2 - 220000 records committed, current elapsed time = 302.203 [2024-12-29 17:06:49] pool-1-thread-1 - 220000 records committed, current elapsed time = 302.486 [2024-12-29 17:06:49] pool-1-thread-6 - 220000 records committed, current elapsed time = 302.790 [2024-12-29 17:06:51] pool-1-thread-8 - 220000 records committed, current elapsed time = 304.690 [2024-12-29 17:06:51] pool-1-thread-5 - 220000 records committed, current elapsed time = 305.002 [2024-12-29 17:06:51] pool-1-thread-3 - 220000 records committed, current elapsed time = 305.067 [2024-12-29 17:06:52] pool-1-thread-10 - 220000 records committed, current elapsed time = 305.891 [2024-12-29 17:06:52] pool-1-thread-9 - 220000 records committed, current elapsed time = 305.912 [2024-12-29 17:06:53] pool-1-thread-4 - 220000 records committed, current elapsed time = 306.952 [2024-12-29 17:06:54] pool-1-thread-7 - 220000 records committed, current elapsed time = 307.715 [2024-12-29 17:06:55] pool-1-thread-2 - 225000 records committed, current elapsed time = 308.607 [2024-12-29 17:06:56] pool-1-thread-1 - 225000 records committed, current elapsed time = 309.527 [2024-12-29 17:06:57] pool-1-thread-6 - 225000 records committed, current elapsed time = 310.460 [2024-12-29 17:06:57] pool-1-thread-8 - 225000 records committed, current elapsed time = 310.466 [2024-12-29 17:06:58] pool-1-thread-3 - 225000 records committed, current elapsed time = 311.910 [2024-12-29 17:06:59] pool-1-thread-5 - 225000 records committed, current elapsed time = 312.332 [2024-12-29 17:06:59] pool-1-thread-9 - 225000 records committed, current elapsed time = 313.027 [2024-12-29 17:07:00] pool-1-thread-10 - 225000 records committed, current elapsed time = 314.077 [2024-12-29 17:07:00] pool-1-thread-4 - 225000 records committed, current elapsed time = 314.201 [2024-12-29 17:07:01] pool-1-thread-7 - 225000 records committed, current elapsed time = 315.056 [2024-12-29 17:07:03] pool-1-thread-1 - 230000 records committed, current elapsed time = 316.671 [2024-12-29 17:07:03] pool-1-thread-2 - 230000 records committed, current elapsed time = 316.714 [2024-12-29 17:07:03] pool-1-thread-6 - 230000 records committed, current elapsed time = 317.119 [2024-12-29 17:07:04] pool-1-thread-8 - 230000 records committed, current elapsed time = 317.216 [2024-12-29 17:07:04] pool-1-thread-3 - 230000 records committed, current elapsed time = 317.644 [2024-12-29 17:07:04] pool-1-thread-5 - 230000 records committed, current elapsed time = 317.911 [2024-12-29 17:07:05] pool-1-thread-9 - 230000 records committed, current elapsed time = 318.221 [2024-12-29 17:07:06] pool-1-thread-10 - 230000 records committed, current elapsed time = 319.821 [2024-12-29 17:07:07] pool-1-thread-4 - 230000 records committed, current elapsed time = 320.308 [2024-12-29 17:07:08] pool-1-thread-7 - 230000 records committed, current elapsed time = 321.555 [2024-12-29 17:07:12] pool-1-thread-1 - 235000 records committed, current elapsed time = 325.498 [2024-12-29 17:07:12] pool-1-thread-2 - 235000 records committed, current elapsed time = 325.723 [2024-12-29 17:07:13] pool-1-thread-6 - 235000 records committed, current elapsed time = 326.861 [2024-12-29 17:07:14] pool-1-thread-8 - 235000 records committed, current elapsed time = 327.253 [2024-12-29 17:07:14] pool-1-thread-3 - 235000 records committed, current elapsed time = 327.638 [2024-12-29 17:07:15] pool-1-thread-5 - 235000 records committed, current elapsed time = 328.691 [2024-12-29 17:07:16] pool-1-thread-9 - 235000 records committed, current elapsed time = 329.466 [2024-12-29 17:07:16] pool-1-thread-10 - 235000 records committed, current elapsed time = 329.705 [2024-12-29 17:07:16] pool-1-thread-4 - 235000 records committed, current elapsed time = 330.065 [2024-12-29 17:07:17] pool-1-thread-7 - 235000 records committed, current elapsed time = 330.579 [2024-12-29 17:07:18] pool-1-thread-1 - 240000 records committed, current elapsed time = 332.080 [2024-12-29 17:07:19] pool-1-thread-2 - 240000 records committed, current elapsed time = 332.317 [2024-12-29 17:07:19] pool-1-thread-6 - 240000 records committed, current elapsed time = 332.522 [2024-12-29 17:07:19] pool-1-thread-8 - 240000 records committed, current elapsed time = 332.636 [2024-12-29 17:07:21] pool-1-thread-3 - 240000 records committed, current elapsed time = 334.241 [2024-12-29 17:07:21] pool-1-thread-5 - 240000 records committed, current elapsed time = 334.575 [2024-12-29 17:07:21] pool-1-thread-9 - 240000 records committed, current elapsed time = 334.885 [2024-12-29 17:07:22] pool-1-thread-10 - 240000 records committed, current elapsed time = 335.232 [2024-12-29 17:07:22] pool-1-thread-4 - 240000 records committed, current elapsed time = 335.451 [2024-12-29 17:07:22] pool-1-thread-7 - 240000 records committed, current elapsed time = 335.679 [2024-12-29 17:07:24] pool-1-thread-1 - 245000 records committed, current elapsed time = 337.319 [2024-12-29 17:07:25] pool-1-thread-2 - 245000 records committed, current elapsed time = 338.472 [2024-12-29 17:07:26] pool-1-thread-8 - 245000 records committed, current elapsed time = 339.550 [2024-12-29 17:07:26] pool-1-thread-6 - 245000 records committed, current elapsed time = 339.795 [2024-12-29 17:07:27] pool-1-thread-3 - 245000 records committed, current elapsed time = 340.421 [2024-12-29 17:07:27] pool-1-thread-5 - 245000 records committed, current elapsed time = 340.632 [2024-12-29 17:07:27] pool-1-thread-9 - 245000 records committed, current elapsed time = 340.976 [2024-12-29 17:07:28] pool-1-thread-10 - 245000 records committed, current elapsed time = 341.409 [2024-12-29 17:07:28] pool-1-thread-4 - 245000 records committed, current elapsed time = 341.431 [2024-12-29 17:07:29] pool-1-thread-7 - 245000 records committed, current elapsed time = 343.116 [2024-12-29 17:07:35] pool-1-thread-1 - 250000 records committed, current elapsed time = 348.830 [2024-12-29 17:07:35] pool-1-thread-2 - 250000 records committed, current elapsed time = 349.019 [2024-12-29 17:07:36] pool-1-thread-6 - 250000 records committed, current elapsed time = 349.492 [2024-12-29 17:07:36] pool-1-thread-8 - 250000 records committed, current elapsed time = 349.509 [2024-12-29 17:07:37] pool-1-thread-3 - 250000 records committed, current elapsed time = 350.205 [2024-12-29 17:07:37] pool-1-thread-5 - 250000 records committed, current elapsed time = 351.020 [2024-12-29 17:07:39] pool-1-thread-9 - 250000 records committed, current elapsed time = 353.015 [2024-12-29 17:07:39] pool-1-thread-4 - 250000 records committed, current elapsed time = 353.033 [2024-12-29 17:07:40] pool-1-thread-10 - 250000 records committed, current elapsed time = 353.842 [2024-12-29 17:07:41] pool-1-thread-7 - 250000 records committed, current elapsed time = 354.684 [2024-12-29 17:07:42] pool-1-thread-1 - 255000 records committed, current elapsed time = 355.910 [2024-12-29 17:07:43] pool-1-thread-2 - 255000 records committed, current elapsed time = 356.256 [2024-12-29 17:07:43] pool-1-thread-6 - 255000 records committed, current elapsed time = 356.600 [2024-12-29 17:07:43] pool-1-thread-8 - 255000 records committed, current elapsed time = 356.762 [2024-12-29 17:07:45] pool-1-thread-3 - 255000 records committed, current elapsed time = 358.547 [2024-12-29 17:07:45] pool-1-thread-5 - 255000 records committed, current elapsed time = 358.787 [2024-12-29 17:07:46] pool-1-thread-10 - 255000 records committed, current elapsed time = 359.717 [2024-12-29 17:07:46] pool-1-thread-9 - 255000 records committed, current elapsed time = 359.759 [2024-12-29 17:07:47] pool-1-thread-4 - 255000 records committed, current elapsed time = 360.207 [2024-12-29 17:07:47] pool-1-thread-7 - 255000 records committed, current elapsed time = 361.160 [2024-12-29 17:07:48] pool-1-thread-1 - 260000 records committed, current elapsed time = 362.016 [2024-12-29 17:07:49] pool-1-thread-6 - 260000 records committed, current elapsed time = 362.453 [2024-12-29 17:07:49] pool-1-thread-2 - 260000 records committed, current elapsed time = 362.736 [2024-12-29 17:07:50] pool-1-thread-8 - 260000 records committed, current elapsed time = 364.031 [2024-12-29 17:07:52] pool-1-thread-3 - 260000 records committed, current elapsed time = 365.251 [2024-12-29 17:07:52] pool-1-thread-5 - 260000 records committed, current elapsed time = 366.058 [2024-12-29 17:07:53] pool-1-thread-9 - 260000 records committed, current elapsed time = 366.216 [2024-12-29 17:07:53] pool-1-thread-10 - 260000 records committed, current elapsed time = 366.589 [2024-12-29 17:07:54] pool-1-thread-4 - 260000 records committed, current elapsed time = 367.205 [2024-12-29 17:07:54] pool-1-thread-7 - 260000 records committed, current elapsed time = 367.606 [2024-12-29 17:07:56] pool-1-thread-1 - 265000 records committed, current elapsed time = 369.573 [2024-12-29 17:07:56] pool-1-thread-6 - 265000 records committed, current elapsed time = 370.009 [2024-12-29 17:07:57] pool-1-thread-2 - 265000 records committed, current elapsed time = 370.461 [2024-12-29 17:07:58] pool-1-thread-8 - 265000 records committed, current elapsed time = 371.362 [2024-12-29 17:07:59] pool-1-thread-3 - 265000 records committed, current elapsed time = 372.563 [2024-12-29 17:07:59] pool-1-thread-5 - 265000 records committed, current elapsed time = 372.853 [2024-12-29 17:08:00] pool-1-thread-10 - 265000 records committed, current elapsed time = 373.733 [2024-12-29 17:08:00] pool-1-thread-4 - 265000 records committed, current elapsed time = 374.052 [2024-12-29 17:08:00] pool-1-thread-9 - 265000 records committed, current elapsed time = 374.168 [2024-12-29 17:08:01] pool-1-thread-7 - 265000 records committed, current elapsed time = 375.071 [2024-12-29 17:08:04] pool-1-thread-1 - 270000 records committed, current elapsed time = 377.617 [2024-12-29 17:08:05] pool-1-thread-6 - 270000 records committed, current elapsed time = 378.554 [2024-12-29 17:08:05] pool-1-thread-2 - 270000 records committed, current elapsed time = 379.034 [2024-12-29 17:08:06] pool-1-thread-8 - 270000 records committed, current elapsed time = 379.470 [2024-12-29 17:08:07] pool-1-thread-3 - 270000 records committed, current elapsed time = 380.674 [2024-12-29 17:08:08] pool-1-thread-4 - 270000 records committed, current elapsed time = 381.563 [2024-12-29 17:08:08] pool-1-thread-5 - 270000 records committed, current elapsed time = 381.676 [2024-12-29 17:08:08] pool-1-thread-10 - 270000 records committed, current elapsed time = 382.029 [2024-12-29 17:08:09] pool-1-thread-9 - 270000 records committed, current elapsed time = 382.388 [2024-12-29 17:08:10] pool-1-thread-7 - 270000 records committed, current elapsed time = 383.847 [2024-12-29 17:08:11] pool-1-thread-1 - 275000 records committed, current elapsed time = 385.038 [2024-12-29 17:08:12] pool-1-thread-6 - 275000 records committed, current elapsed time = 385.940 [2024-12-29 17:08:12] pool-1-thread-2 - 275000 records committed, current elapsed time = 385.963 [2024-12-29 17:08:13] pool-1-thread-8 - 275000 records committed, current elapsed time = 386.694 [2024-12-29 17:08:14] pool-1-thread-3 - 275000 records committed, current elapsed time = 387.332 [2024-12-29 17:08:15] pool-1-thread-4 - 275000 records committed, current elapsed time = 389.048 [2024-12-29 17:08:15] pool-1-thread-10 - 275000 records committed, current elapsed time = 389.190 [2024-12-29 17:08:16] pool-1-thread-5 - 275000 records committed, current elapsed time = 389.550 [2024-12-29 17:08:17] pool-1-thread-9 - 275000 records committed, current elapsed time = 390.395 [2024-12-29 17:08:18] pool-1-thread-7 - 275000 records committed, current elapsed time = 391.648 [2024-12-29 17:08:19] pool-1-thread-1 - 280000 records committed, current elapsed time = 392.250 [2024-12-29 17:08:19] pool-1-thread-6 - 280000 records committed, current elapsed time = 392.649 [2024-12-29 17:08:19] pool-1-thread-2 - 280000 records committed, current elapsed time = 392.962 [2024-12-29 17:08:21] pool-1-thread-8 - 280000 records committed, current elapsed time = 394.850 [2024-12-29 17:08:22] pool-1-thread-3 - 280000 records committed, current elapsed time = 395.813 [2024-12-29 17:08:23] pool-1-thread-4 - 280000 records committed, current elapsed time = 397.195 [2024-12-29 17:08:24] pool-1-thread-10 - 280000 records committed, current elapsed time = 397.226 [2024-12-29 17:08:24] pool-1-thread-9 - 280000 records committed, current elapsed time = 397.719 [2024-12-29 17:08:24] pool-1-thread-5 - 280000 records committed, current elapsed time = 398.190 [2024-12-29 17:08:27] pool-1-thread-7 - 280000 records committed, current elapsed time = 400.391 [2024-12-29 17:08:32] pool-1-thread-1 - 285000 records committed, current elapsed time = 406.200 [2024-12-29 17:08:33] pool-1-thread-6 - 285000 records committed, current elapsed time = 406.419 [2024-12-29 17:08:33] pool-1-thread-2 - 285000 records committed, current elapsed time = 407.163 [2024-12-29 17:08:35] pool-1-thread-8 - 285000 records committed, current elapsed time = 408.675 [2024-12-29 17:08:37] pool-1-thread-3 - 285000 records committed, current elapsed time = 410.238 [2024-12-29 17:08:37] pool-1-thread-4 - 285000 records committed, current elapsed time = 410.984 [2024-12-29 17:08:46] pool-1-thread-10 - 285000 records committed, current elapsed time = 419.850 [2024-12-29 17:08:46] pool-1-thread-9 - 285000 records committed, current elapsed time = 419.883 [2024-12-29 17:08:47] pool-1-thread-5 - 285000 records committed, current elapsed time = 420.311 [2024-12-29 17:08:48] pool-1-thread-7 - 285000 records committed, current elapsed time = 421.709 [2024-12-29 17:08:53] pool-1-thread-1 - 290000 records committed, current elapsed time = 426.237 [2024-12-29 17:08:53] pool-1-thread-6 - 290000 records committed, current elapsed time = 426.831 [2024-12-29 17:08:54] pool-1-thread-2 - 290000 records committed, current elapsed time = 427.895 [2024-12-29 17:08:55] pool-1-thread-8 - 290000 records committed, current elapsed time = 428.708 [2024-12-29 17:08:56] pool-1-thread-3 - 290000 records committed, current elapsed time = 429.370 [2024-12-29 17:08:57] pool-1-thread-4 - 290000 records committed, current elapsed time = 431.049 [2024-12-29 17:08:58] pool-1-thread-9 - 290000 records committed, current elapsed time = 431.215 [2024-12-29 17:08:58] pool-1-thread-10 - 290000 records committed, current elapsed time = 431.491 [2024-12-29 17:08:58] pool-1-thread-5 - 290000 records committed, current elapsed time = 431.921 [2024-12-29 17:09:00] pool-1-thread-7 - 290000 records committed, current elapsed time = 433.829 [2024-12-29 17:09:01] pool-1-thread-6 - 295000 records committed, current elapsed time = 434.615 [2024-12-29 17:09:02] pool-1-thread-1 - 295000 records committed, current elapsed time = 435.454 [2024-12-29 17:09:02] pool-1-thread-2 - 295000 records committed, current elapsed time = 436.128 [2024-12-29 17:09:03] pool-1-thread-8 - 295000 records committed, current elapsed time = 436.432 [2024-12-29 17:09:03] pool-1-thread-3 - 295000 records committed, current elapsed time = 436.670 [2024-12-29 17:09:04] pool-1-thread-4 - 295000 records committed, current elapsed time = 437.420 [2024-12-29 17:09:04] pool-1-thread-10 - 295000 records committed, current elapsed time = 437.801 [2024-12-29 17:09:06] pool-1-thread-9 - 295000 records committed, current elapsed time = 440.014 [2024-12-29 17:09:08] pool-1-thread-5 - 295000 records committed, current elapsed time = 441.677 [2024-12-29 17:09:10] pool-1-thread-7 - 295000 records committed, current elapsed time = 443.359 [2024-12-29 17:09:11] pool-1-thread-6 - 300000 records committed, current elapsed time = 445.059 [2024-12-29 17:09:12] pool-1-thread-1 - 300000 records committed, current elapsed time = 446.136 [2024-12-29 17:09:13] pool-1-thread-2 - 300000 records committed, current elapsed time = 446.613 [2024-12-29 17:09:14] pool-1-thread-8 - 300000 records committed, current elapsed time = 447.659 [2024-12-29 17:09:14] pool-1-thread-3 - 300000 records committed, current elapsed time = 448.014 [2024-12-29 17:09:15] pool-1-thread-4 - 300000 records committed, current elapsed time = 449.000 [2024-12-29 17:09:17] pool-1-thread-10 - 300000 records committed, current elapsed time = 450.502 [2024-12-29 17:09:17] pool-1-thread-9 - 300000 records committed, current elapsed time = 450.767 [2024-12-29 17:09:18] pool-1-thread-5 - 300000 records committed, current elapsed time = 452.017 [2024-12-29 17:09:19] pool-1-thread-7 - 300000 records committed, current elapsed time = 453.053 [2024-12-29 17:09:20] pool-1-thread-6 - 305000 records committed, current elapsed time = 453.979 [2024-12-29 17:09:22] pool-1-thread-1 - 305000 records committed, current elapsed time = 455.653 [2024-12-29 17:09:23] pool-1-thread-2 - 305000 records committed, current elapsed time = 456.455 [2024-12-29 17:09:24] pool-1-thread-8 - 305000 records committed, current elapsed time = 457.543 [2024-12-29 17:09:25] pool-1-thread-3 - 305000 records committed, current elapsed time = 458.619 [2024-12-29 17:09:27] pool-1-thread-4 - 305000 records committed, current elapsed time = 460.326 [2024-12-29 17:09:28] pool-1-thread-9 - 305000 records committed, current elapsed time = 461.579 [2024-12-29 17:09:28] pool-1-thread-10 - 305000 records committed, current elapsed time = 461.581 [2024-12-29 17:09:30] pool-1-thread-5 - 305000 records committed, current elapsed time = 463.339 [2024-12-29 17:09:31] pool-1-thread-7 - 305000 records committed, current elapsed time = 464.586 [2024-12-29 17:09:32] pool-1-thread-6 - 310000 records committed, current elapsed time = 465.781 [2024-12-29 17:09:32] pool-1-thread-2 - 310000 records committed, current elapsed time = 466.166 [2024-12-29 17:09:33] pool-1-thread-1 - 310000 records committed, current elapsed time = 466.697 [2024-12-29 17:09:34] pool-1-thread-8 - 310000 records committed, current elapsed time = 467.832 [2024-12-29 17:09:36] pool-1-thread-3 - 310000 records committed, current elapsed time = 469.684 [2024-12-29 17:09:37] pool-1-thread-4 - 310000 records committed, current elapsed time = 470.310 [2024-12-29 17:09:38] pool-1-thread-10 - 310000 records committed, current elapsed time = 471.540 [2024-12-29 17:09:38] pool-1-thread-9 - 310000 records committed, current elapsed time = 471.637 [2024-12-29 17:09:38] pool-1-thread-5 - 310000 records committed, current elapsed time = 471.785 [2024-12-29 17:09:38] pool-1-thread-7 - 310000 records committed, current elapsed time = 472.171 [2024-12-29 17:09:39] pool-1-thread-6 - 315000 records committed, current elapsed time = 472.775 [2024-12-29 17:09:40] pool-1-thread-2 - 315000 records committed, current elapsed time = 473.994 [2024-12-29 17:09:41] pool-1-thread-1 - 315000 records committed, current elapsed time = 474.466 [2024-12-29 17:09:43] pool-1-thread-8 - 315000 records committed, current elapsed time = 476.210 [2024-12-29 17:09:44] pool-1-thread-3 - 315000 records committed, current elapsed time = 477.852 [2024-12-29 17:09:45] pool-1-thread-4 - 315000 records committed, current elapsed time = 478.957 [2024-12-29 17:09:47] pool-1-thread-10 - 315000 records committed, current elapsed time = 480.364 [2024-12-29 17:09:47] pool-1-thread-9 - 315000 records committed, current elapsed time = 480.986 [2024-12-29 17:09:48] pool-1-thread-5 - 315000 records committed, current elapsed time = 481.504 [2024-12-29 17:09:48] pool-1-thread-7 - 315000 records committed, current elapsed time = 482.183 [2024-12-29 17:09:55] pool-1-thread-1 - 320000 records committed, current elapsed time = 488.872 [2024-12-29 17:09:55] pool-1-thread-2 - 320000 records committed, current elapsed time = 489.067 [2024-12-29 17:09:55] pool-1-thread-6 - 320000 records committed, current elapsed time = 489.083 [2024-12-29 17:09:56] pool-1-thread-8 - 320000 records committed, current elapsed time = 490.046 [2024-12-29 17:09:57] pool-1-thread-3 - 320000 records committed, current elapsed time = 490.737 [2024-12-29 17:09:58] pool-1-thread-4 - 320000 records committed, current elapsed time = 491.540 [2024-12-29 17:10:01] pool-1-thread-10 - 320000 records committed, current elapsed time = 494.231 [2024-12-29 17:10:02] pool-1-thread-9 - 320000 records committed, current elapsed time = 495.527 [2024-12-29 17:10:03] pool-1-thread-5 - 320000 records committed, current elapsed time = 496.596 [2024-12-29 17:10:03] pool-1-thread-7 - 320000 records committed, current elapsed time = 497.048 [2024-12-29 17:10:04] pool-1-thread-1 - 325000 records committed, current elapsed time = 498.046 [2024-12-29 17:10:05] pool-1-thread-2 - 325000 records committed, current elapsed time = 499.107 [2024-12-29 17:10:06] pool-1-thread-6 - 325000 records committed, current elapsed time = 499.482 [2024-12-29 17:10:08] pool-1-thread-8 - 325000 records committed, current elapsed time = 501.684 [2024-12-29 17:10:09] pool-1-thread-3 - 325000 records committed, current elapsed time = 503.107 [2024-12-29 17:10:10] pool-1-thread-4 - 325000 records committed, current elapsed time = 503.485 [2024-12-29 17:10:12] pool-1-thread-10 - 325000 records committed, current elapsed time = 505.424 [2024-12-29 17:10:13] pool-1-thread-9 - 325000 records committed, current elapsed time = 507.167 [2024-12-29 17:10:14] pool-1-thread-7 - 325000 records committed, current elapsed time = 507.623 [2024-12-29 17:10:14] pool-1-thread-5 - 325000 records committed, current elapsed time = 507.963 [2024-12-29 17:10:16] pool-1-thread-1 - 330000 records committed, current elapsed time = 509.201 [2024-12-29 17:10:16] pool-1-thread-2 - 330000 records committed, current elapsed time = 509.620 [2024-12-29 17:10:18] pool-1-thread-6 - 330000 records committed, current elapsed time = 511.268 [2024-12-29 17:10:18] pool-1-thread-8 - 330000 records committed, current elapsed time = 511.682 [2024-12-29 17:10:19] pool-1-thread-3 - 330000 records committed, current elapsed time = 512.784 [2024-12-29 17:10:20] pool-1-thread-4 - 330000 records committed, current elapsed time = 513.587 [2024-12-29 17:10:20] pool-1-thread-10 - 330000 records committed, current elapsed time = 513.932 [2024-12-29 17:10:22] pool-1-thread-9 - 330000 records committed, current elapsed time = 515.807 [2024-12-29 17:10:22] pool-1-thread-7 - 330000 records committed, current elapsed time = 516.132 [2024-12-29 17:10:22] pool-1-thread-5 - 330000 records committed, current elapsed time = 516.196 [2024-12-29 17:10:25] pool-1-thread-1 - 335000 records committed, current elapsed time = 519.184 [2024-12-29 17:10:27] pool-1-thread-2 - 335000 records committed, current elapsed time = 520.264 [2024-12-29 17:10:27] pool-1-thread-6 - 335000 records committed, current elapsed time = 521.146 [2024-12-29 17:10:29] pool-1-thread-8 - 335000 records committed, current elapsed time = 522.913 [2024-12-29 17:10:31] pool-1-thread-3 - 335000 records committed, current elapsed time = 524.987 [2024-12-29 17:10:32] pool-1-thread-4 - 335000 records committed, current elapsed time = 525.654 [2024-12-29 17:10:32] pool-1-thread-10 - 335000 records committed, current elapsed time = 526.011 [2024-12-29 17:10:33] pool-1-thread-9 - 335000 records committed, current elapsed time = 526.528 [2024-12-29 17:10:33] pool-1-thread-7 - 335000 records committed, current elapsed time = 526.598 [2024-12-29 17:10:35] pool-1-thread-5 - 335000 records committed, current elapsed time = 528.860 [2024-12-29 17:10:37] pool-1-thread-2 - 340000 records committed, current elapsed time = 530.808 [2024-12-29 17:10:38] pool-1-thread-1 - 340000 records committed, current elapsed time = 531.443 [2024-12-29 17:10:39] pool-1-thread-6 - 340000 records committed, current elapsed time = 532.647 [2024-12-29 17:10:41] pool-1-thread-8 - 340000 records committed, current elapsed time = 535.173 [2024-12-29 17:10:43] pool-1-thread-3 - 340000 records committed, current elapsed time = 536.207 [2024-12-29 17:10:44] pool-1-thread-4 - 340000 records committed, current elapsed time = 537.589 [2024-12-29 17:10:45] pool-1-thread-10 - 340000 records committed, current elapsed time = 538.803 [2024-12-29 17:10:45] pool-1-thread-9 - 340000 records committed, current elapsed time = 539.031 [2024-12-29 17:10:47] pool-1-thread-7 - 340000 records committed, current elapsed time = 540.659 [2024-12-29 17:10:47] pool-1-thread-5 - 340000 records committed, current elapsed time = 541.092 [2024-12-29 17:10:48] pool-1-thread-2 - 345000 records committed, current elapsed time = 541.921 [2024-12-29 17:10:49] pool-1-thread-6 - 345000 records committed, current elapsed time = 542.911 [2024-12-29 17:10:50] pool-1-thread-1 - 345000 records committed, current elapsed time = 543.253 [2024-12-29 17:10:51] pool-1-thread-8 - 345000 records committed, current elapsed time = 544.390 [2024-12-29 17:10:52] pool-1-thread-3 - 345000 records committed, current elapsed time = 546.179 [2024-12-29 17:10:54] pool-1-thread-4 - 345000 records committed, current elapsed time = 547.568 [2024-12-29 17:10:54] pool-1-thread-10 - 345000 records committed, current elapsed time = 547.794 [2024-12-29 17:10:54] pool-1-thread-9 - 345000 records committed, current elapsed time = 548.136 [2024-12-29 17:10:56] pool-1-thread-7 - 345000 records committed, current elapsed time = 549.398 [2024-12-29 17:10:56] pool-1-thread-5 - 345000 records committed, current elapsed time = 550.072 [2024-12-29 17:10:58] pool-1-thread-1 - 350000 records committed, current elapsed time = 551.983 [2024-12-29 17:10:59] pool-1-thread-2 - 350000 records committed, current elapsed time = 552.656 [2024-12-29 17:10:59] pool-1-thread-6 - 350000 records committed, current elapsed time = 552.700 [2024-12-29 17:11:00] pool-1-thread-8 - 350000 records committed, current elapsed time = 553.301 [2024-12-29 17:11:04] pool-1-thread-3 - 350000 records committed, current elapsed time = 557.226 [2024-12-29 17:11:04] pool-1-thread-10 - 350000 records committed, current elapsed time = 557.966 [2024-12-29 17:11:04] pool-1-thread-9 - 350000 records committed, current elapsed time = 557.998 [2024-12-29 17:11:05] pool-1-thread-4 - 350000 records committed, current elapsed time = 558.300 [2024-12-29 17:11:07] pool-1-thread-7 - 350000 records committed, current elapsed time = 560.617 [2024-12-29 17:11:07] pool-1-thread-5 - 350000 records committed, current elapsed time = 561.081 [2024-12-29 17:11:10] pool-1-thread-1 - 355000 records committed, current elapsed time = 564.036 [2024-12-29 17:11:12] pool-1-thread-8 - 355000 records committed, current elapsed time = 565.388 [2024-12-29 17:11:12] pool-1-thread-2 - 355000 records committed, current elapsed time = 565.480 [2024-12-29 17:11:12] pool-1-thread-6 - 355000 records committed, current elapsed time = 565.559 [2024-12-29 17:11:13] pool-1-thread-3 - 355000 records committed, current elapsed time = 567.019 [2024-12-29 17:11:14] pool-1-thread-4 - 355000 records committed, current elapsed time = 567.210 [2024-12-29 17:11:14] pool-1-thread-9 - 355000 records committed, current elapsed time = 567.818 [2024-12-29 17:11:15] pool-1-thread-10 - 355000 records committed, current elapsed time = 569.092 [2024-12-29 17:11:16] pool-1-thread-7 - 355000 records committed, current elapsed time = 569.440 [2024-12-29 17:11:17] pool-1-thread-5 - 355000 records committed, current elapsed time = 570.373 [2024-12-29 17:11:18] pool-1-thread-8 - 360000 records committed, current elapsed time = 571.915 [2024-12-29 17:11:18] pool-1-thread-1 - 360000 records committed, current elapsed time = 572.148 [2024-12-29 17:11:18] pool-1-thread-2 - 360000 records committed, current elapsed time = 572.179 [2024-12-29 17:11:19] pool-1-thread-6 - 360000 records committed, current elapsed time = 572.811 [2024-12-29 17:11:23] pool-1-thread-3 - 360000 records committed, current elapsed time = 576.996 [2024-12-29 17:11:24] pool-1-thread-9 - 360000 records committed, current elapsed time = 578.129 [2024-12-29 17:11:24] pool-1-thread-4 - 360000 records committed, current elapsed time = 578.190 [2024-12-29 17:11:26] pool-1-thread-10 - 360000 records committed, current elapsed time = 579.486 [2024-12-29 17:11:26] pool-1-thread-7 - 360000 records committed, current elapsed time = 580.010 [2024-12-29 17:11:27] pool-1-thread-5 - 360000 records committed, current elapsed time = 580.470 [2024-12-29 17:11:27] pool-1-thread-8 - 365000 records committed, current elapsed time = 581.179 [2024-12-29 17:11:29] pool-1-thread-2 - 365000 records committed, current elapsed time = 582.479 [2024-12-29 17:11:29] pool-1-thread-6 - 365000 records committed, current elapsed time = 582.488 [2024-12-29 17:11:30] pool-1-thread-1 - 365000 records committed, current elapsed time = 583.615 [2024-12-29 17:11:33] pool-1-thread-3 - 365000 records committed, current elapsed time = 586.216 [2024-12-29 17:11:33] pool-1-thread-9 - 365000 records committed, current elapsed time = 586.947 [2024-12-29 17:11:34] pool-1-thread-4 - 365000 records committed, current elapsed time = 587.643 [2024-12-29 17:11:34] pool-1-thread-10 - 365000 records committed, current elapsed time = 587.935 [2024-12-29 17:11:35] pool-1-thread-7 - 365000 records committed, current elapsed time = 588.430 [2024-12-29 17:11:36] pool-1-thread-5 - 365000 records committed, current elapsed time = 589.999 [2024-12-29 17:11:37] pool-1-thread-8 - 370000 records committed, current elapsed time = 590.395 [2024-12-29 17:11:38] pool-1-thread-2 - 370000 records committed, current elapsed time = 591.946 [2024-12-29 17:11:38] pool-1-thread-6 - 370000 records committed, current elapsed time = 592.030 [2024-12-29 17:11:39] pool-1-thread-1 - 370000 records committed, current elapsed time = 592.926 [2024-12-29 17:11:41] pool-1-thread-3 - 370000 records committed, current elapsed time = 594.753 [2024-12-29 17:11:41] pool-1-thread-9 - 370000 records committed, current elapsed time = 595.133 [2024-12-29 17:11:42] pool-1-thread-4 - 370000 records committed, current elapsed time = 596.119 [2024-12-29 17:11:43] pool-1-thread-10 - 370000 records committed, current elapsed time = 597.115 [2024-12-29 17:11:45] pool-1-thread-7 - 370000 records committed, current elapsed time = 599.003 [2024-12-29 17:11:48] pool-1-thread-5 - 370000 records committed, current elapsed time = 601.761 [2024-12-29 17:11:49] pool-1-thread-8 - 375000 records committed, current elapsed time = 602.245 [2024-12-29 17:11:49] pool-1-thread-2 - 375000 records committed, current elapsed time = 602.330 [2024-12-29 17:11:49] pool-1-thread-6 - 375000 records committed, current elapsed time = 603.025 [2024-12-29 17:11:50] pool-1-thread-1 - 375000 records committed, current elapsed time = 603.379 [2024-12-29 17:11:51] pool-1-thread-9 - 375000 records committed, current elapsed time = 604.904 [2024-12-29 17:11:51] pool-1-thread-3 - 375000 records committed, current elapsed time = 604.915 [2024-12-29 17:11:52] pool-1-thread-4 - 375000 records committed, current elapsed time = 605.557 [2024-12-29 17:11:54] pool-1-thread-10 - 375000 records committed, current elapsed time = 607.738 [2024-12-29 17:11:56] pool-1-thread-5 - 375000 records committed, current elapsed time = 609.761 [2024-12-29 17:11:56] pool-1-thread-7 - 375000 records committed, current elapsed time = 610.063 [2024-12-29 17:11:57] pool-1-thread-8 - 380000 records committed, current elapsed time = 611.099 [2024-12-29 17:11:57] pool-1-thread-2 - 380000 records committed, current elapsed time = 611.130 [2024-12-29 17:11:59] pool-1-thread-6 - 380000 records committed, current elapsed time = 612.466 [2024-12-29 17:11:59] pool-1-thread-1 - 380000 records committed, current elapsed time = 612.865 [2024-12-29 17:12:03] pool-1-thread-3 - 380000 records committed, current elapsed time = 617.057 [2024-12-29 17:12:04] pool-1-thread-9 - 380000 records committed, current elapsed time = 617.439 [2024-12-29 17:12:05] pool-1-thread-4 - 380000 records committed, current elapsed time = 618.453 [2024-12-29 17:12:06] pool-1-thread-10 - 380000 records committed, current elapsed time = 619.280 [2024-12-29 17:12:08] pool-1-thread-7 - 380000 records committed, current elapsed time = 622.045 [2024-12-29 17:12:09] pool-1-thread-5 - 380000 records committed, current elapsed time = 622.609 [2024-12-29 17:12:09] pool-1-thread-2 - 385000 records committed, current elapsed time = 623.169 [2024-12-29 17:12:09] pool-1-thread-8 - 385000 records committed, current elapsed time = 623.180 [2024-12-29 17:12:10] pool-1-thread-6 - 385000 records committed, current elapsed time = 623.718 [2024-12-29 17:12:11] pool-1-thread-1 - 385000 records committed, current elapsed time = 624.852 [2024-12-29 17:12:13] pool-1-thread-9 - 385000 records committed, current elapsed time = 626.350 [2024-12-29 17:12:13] pool-1-thread-3 - 385000 records committed, current elapsed time = 626.457 [2024-12-29 17:12:14] pool-1-thread-4 - 385000 records committed, current elapsed time = 627.230 [2024-12-29 17:12:14] pool-1-thread-10 - 385000 records committed, current elapsed time = 628.149 [2024-12-29 17:12:16] pool-1-thread-7 - 385000 records committed, current elapsed time = 630.134 [2024-12-29 17:12:17] pool-1-thread-5 - 385000 records committed, current elapsed time = 630.726 [2024-12-29 17:12:22] pool-1-thread-8 - 390000 records committed, current elapsed time = 635.773 [2024-12-29 17:12:23] pool-1-thread-6 - 390000 records committed, current elapsed time = 636.457 [2024-12-29 17:12:23] pool-1-thread-2 - 390000 records committed, current elapsed time = 636.536 [2024-12-29 17:12:24] pool-1-thread-1 - 390000 records committed, current elapsed time = 637.783 [2024-12-29 17:12:25] pool-1-thread-9 - 390000 records committed, current elapsed time = 638.730 [2024-12-29 17:12:25] pool-1-thread-3 - 390000 records committed, current elapsed time = 638.839 [2024-12-29 17:12:26] pool-1-thread-4 - 390000 records committed, current elapsed time = 640.129 [2024-12-29 17:12:27] pool-1-thread-10 - 390000 records committed, current elapsed time = 640.471 [2024-12-29 17:12:30] pool-1-thread-7 - 390000 records committed, current elapsed time = 643.976 [2024-12-29 17:12:32] pool-1-thread-5 - 390000 records committed, current elapsed time = 645.223 [2024-12-29 17:12:33] pool-1-thread-8 - 395000 records committed, current elapsed time = 646.576 [2024-12-29 17:12:34] pool-1-thread-6 - 395000 records committed, current elapsed time = 647.307 [2024-12-29 17:12:34] pool-1-thread-2 - 395000 records committed, current elapsed time = 647.683 [2024-12-29 17:12:34] pool-1-thread-1 - 395000 records committed, current elapsed time = 647.893 [2024-12-29 17:12:36] pool-1-thread-9 - 395000 records committed, current elapsed time = 650.099 [2024-12-29 17:12:37] pool-1-thread-3 - 395000 records committed, current elapsed time = 650.205 [2024-12-29 17:12:37] pool-1-thread-4 - 395000 records committed, current elapsed time = 650.559 [2024-12-29 17:12:38] pool-1-thread-10 - 395000 records committed, current elapsed time = 651.595 [2024-12-29 17:12:42] pool-1-thread-5 - 395000 records committed, current elapsed time = 655.338 [2024-12-29 17:12:42] pool-1-thread-7 - 395000 records committed, current elapsed time = 655.647 [2024-12-29 17:12:43] pool-1-thread-8 - 400000 records committed, current elapsed time = 656.857 [2024-12-29 17:12:44] pool-1-thread-6 - 400000 records committed, current elapsed time = 657.284 [2024-12-29 17:12:44] pool-1-thread-1 - 400000 records committed, current elapsed time = 657.629 [2024-12-29 17:12:45] pool-1-thread-2 - 400000 records committed, current elapsed time = 658.229 [2024-12-29 17:12:46] pool-1-thread-3 - 400000 records committed, current elapsed time = 659.817 [2024-12-29 17:12:46] pool-1-thread-9 - 400000 records committed, current elapsed time = 659.841 [2024-12-29 17:12:49] pool-1-thread-4 - 400000 records committed, current elapsed time = 662.434 [2024-12-29 17:12:50] pool-1-thread-10 - 400000 records committed, current elapsed time = 663.764 [2024-12-29 17:12:51] pool-1-thread-7 - 400000 records committed, current elapsed time = 665.170 [2024-12-29 17:12:53] pool-1-thread-5 - 400000 records committed, current elapsed time = 666.560 [2024-12-29 17:12:54] pool-1-thread-8 - 405000 records committed, current elapsed time = 667.540 [2024-12-29 17:12:55] pool-1-thread-6 - 405000 records committed, current elapsed time = 668.562 [2024-12-29 17:12:56] pool-1-thread-1 - 405000 records committed, current elapsed time = 669.680 [2024-12-29 17:12:56] pool-1-thread-2 - 405000 records committed, current elapsed time = 670.060 [2024-12-29 17:13:00] pool-1-thread-9 - 405000 records committed, current elapsed time = 673.459 [2024-12-29 17:13:00] pool-1-thread-3 - 405000 records committed, current elapsed time = 673.983 [2024-12-29 17:13:01] pool-1-thread-4 - 405000 records committed, current elapsed time = 674.491 [2024-12-29 17:13:01] pool-1-thread-10 - 405000 records committed, current elapsed time = 674.700 [2024-12-29 17:13:02] pool-1-thread-7 - 405000 records committed, current elapsed time = 675.340 [2024-12-29 17:13:02] pool-1-thread-5 - 405000 records committed, current elapsed time = 675.802 [2024-12-29 17:13:03] pool-1-thread-8 - 410000 records committed, current elapsed time = 677.109 [2024-12-29 17:13:04] pool-1-thread-2 - 410000 records committed, current elapsed time = 677.254 [2024-12-29 17:13:04] pool-1-thread-1 - 410000 records committed, current elapsed time = 677.693 [2024-12-29 17:13:04] pool-1-thread-6 - 410000 records committed, current elapsed time = 677.756 [2024-12-29 17:13:08] pool-1-thread-9 - 410000 records committed, current elapsed time = 681.651 [2024-12-29 17:13:09] pool-1-thread-3 - 410000 records committed, current elapsed time = 682.877 [2024-12-29 17:13:10] pool-1-thread-4 - 410000 records committed, current elapsed time = 684.066 [2024-12-29 17:13:11] pool-1-thread-10 - 410000 records committed, current elapsed time = 684.689 [2024-12-29 17:13:13] pool-1-thread-7 - 410000 records committed, current elapsed time = 686.328 [2024-12-29 17:13:13] pool-1-thread-8 - 415000 records committed, current elapsed time = 686.782 [2024-12-29 17:13:15] pool-1-thread-5 - 410000 records committed, current elapsed time = 688.462 [2024-12-29 17:13:16] pool-1-thread-1 - 415000 records committed, current elapsed time = 689.295 [2024-12-29 17:13:16] pool-1-thread-6 - 415000 records committed, current elapsed time = 689.305 [2024-12-29 17:13:16] pool-1-thread-2 - 415000 records committed, current elapsed time = 689.322 [2024-12-29 17:13:18] pool-1-thread-9 - 415000 records committed, current elapsed time = 691.639 [2024-12-29 17:13:18] pool-1-thread-3 - 415000 records committed, current elapsed time = 691.898 [2024-12-29 17:13:20] pool-1-thread-4 - 415000 records committed, current elapsed time = 693.731 [2024-12-29 17:13:21] pool-1-thread-10 - 415000 records committed, current elapsed time = 694.263 [2024-12-29 17:13:21] pool-1-thread-7 - 415000 records committed, current elapsed time = 695.046 [2024-12-29 17:13:23] pool-1-thread-8 - 420000 records committed, current elapsed time = 696.864 [2024-12-29 17:13:24] pool-1-thread-5 - 415000 records committed, current elapsed time = 697.269 [2024-12-29 17:13:24] pool-1-thread-6 - 420000 records committed, current elapsed time = 697.323 [2024-12-29 17:13:24] pool-1-thread-2 - 420000 records committed, current elapsed time = 697.600 [2024-12-29 17:13:24] pool-1-thread-1 - 420000 records committed, current elapsed time = 697.959 [2024-12-29 17:13:28] pool-1-thread-3 - 420000 records committed, current elapsed time = 701.236 [2024-12-29 17:13:28] pool-1-thread-9 - 420000 records committed, current elapsed time = 701.296 [2024-12-29 17:13:29] pool-1-thread-4 - 420000 records committed, current elapsed time = 702.695 [2024-12-29 17:13:30] pool-1-thread-10 - 420000 records committed, current elapsed time = 703.780 [2024-12-29 17:13:32] pool-1-thread-7 - 420000 records committed, current elapsed time = 705.311 [2024-12-29 17:13:33] pool-1-thread-8 - 425000 records committed, current elapsed time = 706.635 [2024-12-29 17:13:33] pool-1-thread-2 - 425000 records committed, current elapsed time = 706.668 [2024-12-29 17:13:34] pool-1-thread-1 - 425000 records committed, current elapsed time = 707.756 [2024-12-29 17:13:35] pool-1-thread-5 - 420000 records committed, current elapsed time = 708.296 [2024-12-29 17:13:37] pool-1-thread-6 - 425000 records committed, current elapsed time = 710.291 [2024-12-29 17:13:40] pool-1-thread-9 - 425000 records committed, current elapsed time = 713.852 [2024-12-29 17:13:41] pool-1-thread-3 - 425000 records committed, current elapsed time = 714.891 [2024-12-29 17:13:42] pool-1-thread-4 - 425000 records committed, current elapsed time = 715.657 [2024-12-29 17:13:42] pool-1-thread-10 - 425000 records committed, current elapsed time = 715.970 [2024-12-29 17:13:43] pool-1-thread-7 - 425000 records committed, current elapsed time = 716.631 [2024-12-29 17:13:47] pool-1-thread-8 - 430000 records committed, current elapsed time = 720.418 [2024-12-29 17:13:57] pool-1-thread-1 - 430000 records committed, current elapsed time = 730.479 [2024-12-29 17:13:57] pool-1-thread-6 - 430000 records committed, current elapsed time = 730.538 [2024-12-29 17:13:57] pool-1-thread-2 - 430000 records committed, current elapsed time = 730.614 [2024-12-29 17:13:57] pool-1-thread-5 - 425000 records committed, current elapsed time = 730.973 [2024-12-29 17:14:00] pool-1-thread-9 - 430000 records committed, current elapsed time = 734.083 [2024-12-29 17:14:01] pool-1-thread-3 - 430000 records committed, current elapsed time = 734.282 [2024-12-29 17:14:05] pool-1-thread-4 - 430000 records committed, current elapsed time = 738.646 [2024-12-29 17:14:05] pool-1-thread-10 - 430000 records committed, current elapsed time = 738.871 [2024-12-29 17:14:06] pool-1-thread-7 - 430000 records committed, current elapsed time = 739.841 [2024-12-29 17:14:06] pool-1-thread-8 - 435000 records committed, current elapsed time = 740.172 [2024-12-29 17:14:07] pool-1-thread-2 - 435000 records committed, current elapsed time = 740.967 [2024-12-29 17:14:11] pool-1-thread-1 - 435000 records committed, current elapsed time = 744.970 [2024-12-29 17:14:11] pool-1-thread-5 - 430000 records committed, current elapsed time = 744.981 [2024-12-29 17:14:11] pool-1-thread-6 - 435000 records committed, current elapsed time = 745.051 [2024-12-29 17:14:14] pool-1-thread-9 - 435000 records committed, current elapsed time = 747.883 [2024-12-29 17:14:14] pool-1-thread-3 - 435000 records committed, current elapsed time = 747.914 [2024-12-29 17:14:17] pool-1-thread-4 - 435000 records committed, current elapsed time = 750.533 [2024-12-29 17:14:17] pool-1-thread-10 - 435000 records committed, current elapsed time = 750.969 [2024-12-29 17:14:21] pool-1-thread-8 - 440000 records committed, current elapsed time = 754.339 [2024-12-29 17:14:21] pool-1-thread-7 - 435000 records committed, current elapsed time = 754.612 [2024-12-29 17:14:22] pool-1-thread-2 - 440000 records committed, current elapsed time = 755.395 [2024-12-29 17:14:22] pool-1-thread-1 - 440000 records committed, current elapsed time = 755.871 [2024-12-29 17:14:23] pool-1-thread-5 - 435000 records committed, current elapsed time = 756.560 [2024-12-29 17:14:23] pool-1-thread-6 - 440000 records committed, current elapsed time = 756.842 [2024-12-29 17:14:25] pool-1-thread-3 - 440000 records committed, current elapsed time = 758.315 [2024-12-29 17:14:25] pool-1-thread-9 - 440000 records committed, current elapsed time = 758.326 [2024-12-29 17:14:27] pool-1-thread-4 - 440000 records committed, current elapsed time = 761.022 [2024-12-29 17:14:28] pool-1-thread-10 - 440000 records committed, current elapsed time = 761.228 [2024-12-29 17:14:30] pool-1-thread-8 - 445000 records committed, current elapsed time = 763.239 [2024-12-29 17:14:30] pool-1-thread-7 - 440000 records committed, current elapsed time = 763.934 [2024-12-29 17:14:31] pool-1-thread-2 - 445000 records committed, current elapsed time = 764.967 [2024-12-29 17:14:32] pool-1-thread-1 - 445000 records committed, current elapsed time = 765.379 [2024-12-29 17:14:32] pool-1-thread-5 - 440000 records committed, current elapsed time = 765.707 [2024-12-29 17:14:32] pool-1-thread-6 - 445000 records committed, current elapsed time = 766.118 [2024-12-29 17:14:34] pool-1-thread-9 - 445000 records committed, current elapsed time = 767.664 [2024-12-29 17:14:34] pool-1-thread-3 - 445000 records committed, current elapsed time = 767.857 [2024-12-29 17:14:35] pool-1-thread-4 - 445000 records committed, current elapsed time = 768.933 [2024-12-29 17:14:36] pool-1-thread-10 - 445000 records committed, current elapsed time = 769.618 [2024-12-29 17:14:37] pool-1-thread-8 - 450000 records committed, current elapsed time = 770.756 [2024-12-29 17:14:37] pool-1-thread-7 - 445000 records committed, current elapsed time = 771.113 [2024-12-29 17:14:39] pool-1-thread-2 - 450000 records committed, current elapsed time = 772.483 [2024-12-29 17:14:39] pool-1-thread-5 - 445000 records committed, current elapsed time = 772.631 [2024-12-29 17:14:39] pool-1-thread-6 - 450000 records committed, current elapsed time = 772.892 [2024-12-29 17:14:39] pool-1-thread-1 - 450000 records committed, current elapsed time = 772.917 [2024-12-29 17:14:39] pool-1-thread-9 - 450000 records committed, current elapsed time = 773.089 [2024-12-29 17:14:42] pool-1-thread-3 - 450000 records committed, current elapsed time = 775.943 [2024-12-29 17:14:44] pool-1-thread-4 - 450000 records committed, current elapsed time = 777.307 [2024-12-29 17:14:45] pool-1-thread-10 - 450000 records committed, current elapsed time = 778.373 [2024-12-29 17:14:49] pool-1-thread-8 - 455000 records committed, current elapsed time = 782.254 [2024-12-29 17:14:49] pool-1-thread-7 - 450000 records committed, current elapsed time = 782.590 [2024-12-29 17:14:51] pool-1-thread-2 - 455000 records committed, current elapsed time = 784.201 [2024-12-29 17:14:51] pool-1-thread-1 - 455000 records committed, current elapsed time = 784.335 [2024-12-29 17:14:52] pool-1-thread-6 - 455000 records committed, current elapsed time = 785.365 [2024-12-29 17:14:53] pool-1-thread-9 - 455000 records committed, current elapsed time = 786.550 [2024-12-29 17:14:53] pool-1-thread-5 - 450000 records committed, current elapsed time = 786.560 [2024-12-29 17:14:56] pool-1-thread-3 - 455000 records committed, current elapsed time = 789.750 [2024-12-29 17:14:58] pool-1-thread-4 - 455000 records committed, current elapsed time = 791.301 [2024-12-29 17:14:58] pool-1-thread-10 - 455000 records committed, current elapsed time = 791.386 [2024-12-29 17:15:00] pool-1-thread-8 - 460000 records committed, current elapsed time = 794.077 [2024-12-29 17:15:00] pool-1-thread-7 - 455000 records committed, current elapsed time = 794.135 [2024-12-29 17:15:06] pool-1-thread-6 - 460000 records committed, current elapsed time = 799.760 [2024-12-29 17:15:06] pool-1-thread-1 - 460000 records committed, current elapsed time = 799.769 [2024-12-29 17:15:08] pool-1-thread-2 - 460000 records committed, current elapsed time = 801.911 [2024-12-29 17:15:08] pool-1-thread-5 - 455000 records committed, current elapsed time = 802.033 [2024-12-29 17:15:09] pool-1-thread-9 - 460000 records committed, current elapsed time = 802.313 [2024-12-29 17:15:09] pool-1-thread-3 - 460000 records committed, current elapsed time = 803.156 [2024-12-29 17:15:10] pool-1-thread-4 - 460000 records committed, current elapsed time = 803.522 [2024-12-29 17:15:11] pool-1-thread-10 - 460000 records committed, current elapsed time = 804.557 [2024-12-29 17:15:12] pool-1-thread-7 - 460000 records committed, current elapsed time = 805.381 [2024-12-29 17:15:12] pool-1-thread-8 - 465000 records committed, current elapsed time = 805.891 [2024-12-29 17:15:13] pool-1-thread-9 - 465000 records committed, current elapsed time = 807.095 [2024-12-29 17:15:14] pool-1-thread-6 - 465000 records committed, current elapsed time = 807.317 [2024-12-29 17:15:14] pool-1-thread-5 - 460000 records committed, current elapsed time = 807.701 [2024-12-29 17:15:14] pool-1-thread-2 - 465000 records committed, current elapsed time = 807.767 [2024-12-29 17:15:14] pool-1-thread-1 - 465000 records committed, current elapsed time = 807.790 [2024-12-29 17:15:15] pool-1-thread-3 - 465000 records committed, current elapsed time = 808.461 [2024-12-29 17:15:15] pool-1-thread-4 - 465000 records committed, current elapsed time = 808.921 [2024-12-29 17:15:17] pool-1-thread-10 - 465000 records committed, current elapsed time = 810.794 [2024-12-29 17:15:18] pool-1-thread-7 - 465000 records committed, current elapsed time = 811.570 [2024-12-29 17:15:18] pool-1-thread-8 - 470000 records committed, current elapsed time = 811.839 [2024-12-29 17:15:19] pool-1-thread-9 - 470000 records committed, current elapsed time = 812.385 [2024-12-29 17:15:19] pool-1-thread-5 - 465000 records committed, current elapsed time = 812.562 [2024-12-29 17:15:19] pool-1-thread-2 - 470000 records committed, current elapsed time = 812.741 [2024-12-29 17:15:19] pool-1-thread-1 - 470000 records committed, current elapsed time = 812.798 [2024-12-29 17:15:19] pool-1-thread-6 - 470000 records committed, current elapsed time = 812.818 [2024-12-29 17:15:21] pool-1-thread-3 - 470000 records committed, current elapsed time = 815.116 [2024-12-29 17:15:22] pool-1-thread-4 - 470000 records committed, current elapsed time = 815.556 [2024-12-29 17:15:22] pool-1-thread-10 - 470000 records committed, current elapsed time = 815.911 [2024-12-29 17:15:23] pool-1-thread-7 - 470000 records committed, current elapsed time = 816.805 [2024-12-29 17:15:23] pool-1-thread-8 - 475000 records committed, current elapsed time = 817.101 [2024-12-29 17:15:24] pool-1-thread-9 - 475000 records committed, current elapsed time = 817.650 [2024-12-29 17:15:24] pool-1-thread-5 - 470000 records committed, current elapsed time = 817.838 [2024-12-29 17:15:24] pool-1-thread-2 - 475000 records committed, current elapsed time = 817.897 [2024-12-29 17:15:25] pool-1-thread-6 - 475000 records committed, current elapsed time = 818.690 [2024-12-29 17:15:25] pool-1-thread-1 - 475000 records committed, current elapsed time = 819.179 [2024-12-29 17:15:26] pool-1-thread-3 - 475000 records committed, current elapsed time = 819.978 [2024-12-29 17:15:27] pool-1-thread-10 - 475000 records committed, current elapsed time = 820.262 [2024-12-29 17:15:27] pool-1-thread-4 - 475000 records committed, current elapsed time = 820.280 [2024-12-29 17:15:28] pool-1-thread-7 - 475000 records committed, current elapsed time = 822.198 [2024-12-29 17:15:29] pool-1-thread-8 - 480000 records committed, current elapsed time = 822.408 [2024-12-29 17:15:29] pool-1-thread-9 - 480000 records committed, current elapsed time = 822.859 [2024-12-29 17:15:30] pool-1-thread-2 - 480000 records committed, current elapsed time = 823.499 [2024-12-29 17:15:30] pool-1-thread-5 - 475000 records committed, current elapsed time = 823.786 [2024-12-29 17:15:30] pool-1-thread-6 - 480000 records committed, current elapsed time = 823.814 [2024-12-29 17:15:31] pool-1-thread-1 - 480000 records committed, current elapsed time = 824.339 [2024-12-29 17:15:31] pool-1-thread-3 - 480000 records committed, current elapsed time = 824.815 [2024-12-29 17:15:31] pool-1-thread-10 - 480000 records committed, current elapsed time = 825.036 [2024-12-29 17:15:31] pool-1-thread-4 - 480000 records committed, current elapsed time = 825.092 [2024-12-29 17:15:32] pool-1-thread-7 - 480000 records committed, current elapsed time = 825.630 [2024-12-29 17:15:33] pool-1-thread-8 - 485000 records committed, current elapsed time = 826.811 [2024-12-29 17:15:34] pool-1-thread-9 - 485000 records committed, current elapsed time = 828.047 [2024-12-29 17:15:35] pool-1-thread-6 - 485000 records committed, current elapsed time = 828.423 [2024-12-29 17:15:35] pool-1-thread-2 - 485000 records committed, current elapsed time = 828.503 [2024-12-29 17:15:35] pool-1-thread-5 - 480000 records committed, current elapsed time = 828.655 [2024-12-29 17:15:35] pool-1-thread-1 - 485000 records committed, current elapsed time = 828.666 [2024-12-29 17:15:36] pool-1-thread-3 - 485000 records committed, current elapsed time = 830.122 [2024-12-29 17:15:37] pool-1-thread-10 - 485000 records committed, current elapsed time = 830.497 [2024-12-29 17:15:37] pool-1-thread-4 - 485000 records committed, current elapsed time = 830.609 [2024-12-29 17:15:39] pool-1-thread-7 - 485000 records committed, current elapsed time = 832.490 [2024-12-29 17:15:39] pool-1-thread-8 - 490000 records committed, current elapsed time = 832.552 [2024-12-29 17:15:39] pool-1-thread-9 - 490000 records committed, current elapsed time = 833.116 [2024-12-29 17:15:40] pool-1-thread-2 - 490000 records committed, current elapsed time = 833.393 [2024-12-29 17:15:40] pool-1-thread-1 - 490000 records committed, current elapsed time = 833.571 [2024-12-29 17:15:40] pool-1-thread-6 - 490000 records committed, current elapsed time = 833.579 [2024-12-29 17:15:40] pool-1-thread-5 - 485000 records committed, current elapsed time = 833.616 [2024-12-29 17:15:42] pool-1-thread-3 - 490000 records committed, current elapsed time = 835.242 [2024-12-29 17:15:42] pool-1-thread-10 - 490000 records committed, current elapsed time = 835.734 [2024-12-29 17:15:43] pool-1-thread-4 - 490000 records committed, current elapsed time = 836.331 [2024-12-29 17:15:43] pool-1-thread-7 - 490000 records committed, current elapsed time = 836.953 [2024-12-29 17:15:44] pool-1-thread-8 - 495000 records committed, current elapsed time = 837.424 [2024-12-29 17:15:48] pool-1-thread-9 - 495000 records committed, current elapsed time = 841.804 [2024-12-29 17:15:48] pool-1-thread-2 - 495000 records committed, current elapsed time = 842.124 [2024-12-29 17:15:49] pool-1-thread-5 - 490000 records committed, current elapsed time = 842.226 [2024-12-29 17:15:49] pool-1-thread-6 - 495000 records committed, current elapsed time = 842.355 [2024-12-29 17:15:49] pool-1-thread-1 - 495000 records committed, current elapsed time = 842.425 [2024-12-29 17:15:51] pool-1-thread-3 - 495000 records committed, current elapsed time = 844.679 [2024-12-29 17:15:51] pool-1-thread-10 - 495000 records committed, current elapsed time = 844.960 [2024-12-29 17:15:52] pool-1-thread-4 - 495000 records committed, current elapsed time = 845.345 [2024-12-29 17:15:53] pool-1-thread-7 - 495000 records committed, current elapsed time = 846.678 [2024-12-29 17:15:53] pool-1-thread-8 - 500000 records committed, current elapsed time = 846.709 [2024-12-29 17:15:55] pool-1-thread-9 - 500000 records committed, current elapsed time = 849.200 [2024-12-29 17:15:56] pool-1-thread-6 - 500000 records committed, current elapsed time = 849.836 [2024-12-29 17:15:56] pool-1-thread-2 - 500000 records committed, current elapsed time = 849.967 [2024-12-29 17:15:58] pool-1-thread-5 - 495000 records committed, current elapsed time = 851.813 [2024-12-29 17:15:59] pool-1-thread-1 - 500000 records committed, current elapsed time = 852.404 [2024-12-29 17:16:00] pool-1-thread-3 - 500000 records committed, current elapsed time = 854.013 [2024-12-29 17:16:00] pool-1-thread-10 - 500000 records committed, current elapsed time = 854.128 [2024-12-29 17:16:01] pool-1-thread-4 - 500000 records committed, current elapsed time = 854.919 [2024-12-29 17:16:01] pool-1-thread-7 - 500000 records committed, current elapsed time = 855.103 [2024-12-29 17:16:03] pool-1-thread-5 - 500000 records committed, current elapsed time = 856.746 [2024-12-29 17:16:03] org.littlewings.tidb.UuidV7StringRunner.main() - UuidV7StringRunner: 5000000 records inserted, total elapsed time = 857.863