CLOVER🍀

That was when it all began.

MySQLでプラむマリヌキヌにUUIDを䜿う堎合はシヌケンシャルなフォヌマットにした方が良さそうだずいう話

これは、なにをしたくお曞いたもの

前にTiDBでTiDBでプラむマリヌキヌにUUIDを䜿う堎合はシヌケンシャルなフォヌマットにしない方が良さそうだ、ずいう
話を芋おみたした。

TiDBでプライマリーキーにUUIDを使う場合はシーケンシャルなフォーマットにしない方が良さそうだという話 - CLOVER🍀

これを曞いた時にも蚀っおいたのですが、先にTiDBをやった割には実はMySQLの方をやっおいたせん。

なので、今回はMySQLで同じこずをやっおみたいず思いたす。

おさらいMySQLずUUID

MySQLではランダムなUUIDたずえばバヌゞョン4をプラむマリヌキヌに䜿っおデヌタを登録しおいくず、埐々に
性胜劣化しおいくこずが知られおいたす。これはInnoDBがクラスタむンデックス構造をしおいお、ランダムな
リヌフペヌゞを読み蟌むこずを芁求されるこずが原因のようです。

MySQLでプライマリキーをUUIDにする前に知っておいて欲しいこと | Raccoon Tech Blog [株式会社ラクーンホールディングス 技術戦略部ブログ]

MySQLでUUIDを使う場合

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番目の倀が入れ替えられ
シヌケンシャルなキヌずしお利甚できるようになりたす。

たたこの堎合、UUIDの生成そのものにはuuid関数を生成するこずになりたす。UUIDずしおのバヌゞョンは1です。

Miscellaneous Functions / UUID

前回はTiDBで確認したパタヌンを、以䞋のようにしおMySQLで確認したいず思いたす。

  • uuid関数uuid_to_bin関数swap_flagのOFFONでUUIDを生成しお確認
  • MySQLの倖でUUIDを生成UUID バヌゞョン4バヌゞョン7しお確認
    • カラムのデヌタ型はvarchar

぀いでにこのパタヌンでクラむアントサむドPrepared Statement、サヌバヌサむドPrepared Statementを䜿う堎合の
組み合わせでも確認しおみたいず思いたす。

環境

今回の環境はこちら。

 MySQL  localhost:33060+ ssl  practice  SQL > select version();
+-----------+
| version() |
+-----------+
| 8.4.4     |
+-----------+
1 row in set (0.0008 sec)

MySQLには172.17.0.2でアクセスできるものずしたす。

確認はJavaで行いたす。

$ java --version
openjdk 21.0.6 2025-01-21
OpenJDK Runtime Environment (build 21.0.6+7-Ubuntu-124.04.1)
OpenJDK 64-Bit Server VM (build 21.0.6+7-Ubuntu-124.04.1, mixed mode, sharing)


$ mvn --version
Apache Maven 3.9.9 (8e8579a9e76f7d015ee5ec7bfcdc97d260186937)
Maven home: $HOME/.sdkman/candidates/maven/current
Java version: 21.0.6, 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-55-generic", arch: "amd64", family: "unix"

お題

以䞋の4テヌブルに察しお、10スレッドで500䞇レコヌドず぀曞き蟌んで凊理時間を蚈枬しおみたす。

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)
);


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)
);


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)
);


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)
);

デヌタ量を持たせるために適圓にカラムの数を増やしおいたす。ここには連番だったりUUID バヌゞョン4を入れたりしたす。

先に曞いたように、以䞋のパタヌンをクラむアントサむドPrepared StatementずサヌバヌサむドPrepared Statemetの
組み合わせで行いたす。

  • uuid関数uuid_to_bin関数swap_flagのOFFONでUUIDを生成しお確認
  • MySQLの倖で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.mysql</groupId>
            <artifactId>mysql-connector-j</artifactId>
            <version>9.2.0</version>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.uuid</groupId>
            <artifactId>java-uuid-generator</artifactId>
            <version>5.1.0</version>
        </dependency>
    </dependencies>

デヌタ登録党䜓をコントロヌルする凊理。このむンタヌフェヌスを実装しお、差分をサブクラスで実装したす。

src/main/java/org/littlewings/mysql/Runner.java

package org.littlewings.mysql;

import com.mysql.cj.jdbc.AbandonedConnectionCleanupThread;
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;

public interface Runner {
    Worker.SFunction<Connection, PreparedStatement> createStatementFactory();

    Worker.SBiConsumer<PreparedStatement, Integer> createParameterBinder();

    boolean useServerPreparedStatement();

    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),
                        useServerPreparedStatement()
                );

                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ぞのパラメヌタヌのバむンド、
そしおサヌバヌサむドずクラむアントサむドのどちらのPreparedStatementを䜿うかです。

デヌタは党郚で500䞇レコヌド登録したすが、実際のデヌタ登録凊理は10スレッドで分割しお行いたす。

こちらがスレッド内で実行する凊理。

src/main/java/org/littlewings/mysql/Worker.java

package org.littlewings.mysql;

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;
    private boolean useServerPreparedStatement;

    public Worker(SFunction<Connection, PreparedStatement> statementFactory, SBiConsumer<PreparedStatement, Integer> parameterBinder, int start, int end, boolean useServerPreparedStatement) {
        this.statementFactory = statementFactory;
        this.parameterBinder = parameterBinder;
        this.start = start;
        this.end = end;
        this.useServerPreparedStatement = useServerPreparedStatement;
    }

    @Override
    public void run() {
        try (Connection connection = DriverManager.getConnection(
                useServerPreparedStatement ?
                        "jdbc:mysql://172.17.0.2:3306/practice?characterEncoding=utf-8&connectionCollation=utf8mb4_0900_bin&useServerPrepStmts=true&rewriteBatchedStatements=true" :
                        "jdbc:mysql://172.17.0.2:3306/practice?characterEncoding=utf-8&connectionCollation=utf8mb4_0900_bin&rewriteBatchedStatements=true",
                "kazuhira",
                "password"
        );
             PreparedStatement ps = statementFactory.apply(connection)
        ) {
            connection.setAutoCommit(false);

            int commitInterval = 5000;
            int batchSize = 50;

            long startTime = System.currentTimeMillis();
            long lapStartTime = startTime;

            for (int i = start; i < end; i++) {
                parameterBinder.accept(ps, i + 1);

                ps.addBatch();

                if (i % batchSize == 0) {
                    ps.executeBatch();
                }

                if (i > 0 && i % commitInterval == 0) {
                    connection.commit();

                    long lapTime = System.currentTimeMillis() - lapStartTime;
                    Logging.log("%d records committed(current total %d records), lap time = %.03f", commitInterval, i, ((double) lapTime) / 1000);
                    lapStartTime = System.currentTimeMillis();
                }
            }

            ps.executeBatch();
            connection.commit();

            long lapTime = System.currentTimeMillis() - lapStartTime;
            long elapsedTime = System.currentTimeMillis() - startTime;

            Logging.log("remain records committed(current total %d records), lap time = %.03f", end, ((double) lapTime) / 1000);
            Logging.log("%d records committed, total elapsed time = %.03f", end, ((double) elapsedTime) / 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をやめるず、単玔に耇数のinsert文を実行するだけになるのでかなり遅くなりたす 

たた凊理途䞭にラップタむムを出力するようにしおいたす。

簡単なログ出力甚クラス。

src/main/java/org/littlewings/mysql/Logging.java

package org.littlewings.mysql;

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)
        );
    }
}

ここたでで準備は完了です。

それでは、これらのコヌドを元にデヌタ登録を行っおいきたしょう。

MySQLにUUIDでデヌタ登録を行っおみる

ここからは、パタヌンごずにデヌタを登録しおいっおみたす。

デヌタは、各パタヌンごずに独立しお登録したす。1床あるパタヌンを実行したら、デヌタをtruncateするこずにしたす。

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/mysql/UuidBinRunner.java

package org.littlewings.mysql;

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.util.UUID;

public abstract class UuidBinRunner implements Runner {
    @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());
        };
    }

    public static class UuidBinAsClientPsRunner extends UuidBinRunner {
        public static void main(String... args) {
            UuidBinAsClientPsRunner runner = new UuidBinAsClientPsRunner();
            runner.run();
        }

        @Override
        public boolean useServerPreparedStatement() {
            return false;
        }
    }

    public static class UuidBinAsServerPsRunner extends UuidBinRunner {
        public static void main(String... args) {
            UuidBinAsServerPsRunner runner = new UuidBinAsServerPsRunner();
            runner.run();
        }

        @Override
        public boolean useServerPreparedStatement() {
            return true;
        }
    }
}

埌半にあるクラスは、䜿甚するPreparedStamentだけが違うサブクラスです。

では実行しおみたす。クラむアントサむドPreparedStatementを䜿う方から。

$ mvn compile exec:java -Dexec.mainClass='org.littlewings.mysql.UuidBinRunner$UuidBinAsClientPsRunner'

結果。

[2025-03-08 20:44:54] org.littlewings.mysql.UuidBinRunner$UuidBinAsClientPsRunner.main() - UuidBinAsClientPsRunner: 5000000 records inserted, total elapsed time = 84.900

サヌバヌサむドPreparedStatementを䜿う方

$ mvn compile exec:java -Dexec.mainClass='org.littlewings.mysql.UuidBinRunner$UuidBinAsServerPsRunner'

結果。

[2025-03-08 20:51:20] org.littlewings.mysql.UuidBinRunner$UuidBinAsServerPsRunner.main() - UuidBinAsServerPsRunner: 5000000 records inserted, total elapsed time = 62.896

サヌバヌサむドPreparedStatementの方が性胜が良いんですね。

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/mysql/UuidBinSwapRunner.java

package org.littlewings.mysql;

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.util.UUID;

public abstract class UuidBinSwapRunner implements Runner {
    @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());
        };
    }

    public static class UuidBinSwapAsClientPsRunner extends UuidBinSwapRunner {
        public static void main(String... args) {
            UuidBinSwapAsClientPsRunner runner = new UuidBinSwapAsClientPsRunner();
            runner.run();
        }

        @Override
        public boolean useServerPreparedStatement() {
            return false;
        }
    }

    public static class UuidBinSwapAsServerPsRunner extends UuidBinSwapRunner {
        public static void main(String... args) {
            UuidBinSwapAsServerPsRunner runner = new UuidBinSwapAsServerPsRunner();
            runner.run();
        }

        @Override
        public boolean useServerPreparedStatement() {
            return true;
        }
    }
}

クラむアントサむドPreparedStatementを䜿う方から。

$ mvn compile exec:java -Dexec.mainClass='org.littlewings.mysql.UuidBinSwapRunner$UuidBinSwapAsClientPsRunner'

結果。

[2025-03-08 20:58:23] org.littlewings.mysql.UuidBinSwapRunner$UuidBinSwapAsClientPsRunner.main() - UuidBinSwapAsClientPsRunner: 5000000 records inserted, total elapsed time = 86.488

swap_flagをにした時ずほが倉わりたせんね 。

サヌバヌサむドPreparedStatementを䜿う方

$ mvn compile exec:java -Dexec.mainClass='org.littlewings.mysql.UuidBinSwapRunner$UuidBinSwapAsServerPsRunner'

結果。

[2025-03-08 21:01:49] org.littlewings.mysql.UuidBinSwapRunner$UuidBinSwapAsServerPsRunner.main() - UuidBinSwapAsServerPsRunner: 5000000 records inserted, total elapsed time = 64.227

こちらもswap_flagをにした時ずほが倉わりたせんね。サヌバヌサむドPreparedStatementを䜿った時の方が速いのも
同じです。

MySQLの倖でUUIDを生成するUUID バヌゞョン4

今床はMySQLの倖でUUIDを生成しおデヌタを登録するパタヌンです。たずはUUID バヌゞョン4から。
UUID バヌゞョン4の生成には、Javaの暙準ラむブラリヌを䜿いたす。

src/main/java/org/littlewings/mysql/UuidV4StringRunner.java

package org.littlewings.mysql;

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.util.UUID;

public abstract class UuidV4StringRunner implements Runner {
    @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());
        };
    }

    public static class UuidV4StringAsClientPsRunner extends UuidV4StringRunner {
        public static void main(String... args) {
            UuidV4StringAsClientPsRunner runner = new UuidV4StringAsClientPsRunner();
            runner.run();
        }

        @Override
        public boolean useServerPreparedStatement() {
            return false;
        }
    }

    public static class UuidV4StringAsServerPsRunner extends UuidV4StringRunner {
        public static void main(String... args) {
            UuidV4StringAsServerPsRunner runner = new UuidV4StringAsServerPsRunner();
            runner.run();
        }

        @Override
        public boolean useServerPreparedStatement() {
            return true;
        }
    }
}

クラむアントサむドPreparedStatementを䜿う方から。

$ mvn compile exec:java -Dexec.mainClass='org.littlewings.mysql.UuidV4StringRunner$UuidV4StringAsClientPsRunner'

結果。

[2025-03-08 21:21:47] org.littlewings.mysql.UuidV4StringRunner$UuidV4StringAsClientPsRunner.main() - UuidV4StringAsClientPsRunner: 5000000 records inserted, total elapsed time = 547.954

䞀気に遅くなりたしたね。uuid関数ずuuid_to_bin関数を䜿っおいた時から6倍くらい遅くなりたした。ラップタむムも
埐々に䞋がっおいきたしたが、ある皋床たでいくず䞀定になりたした。そのあたりで、CPU負荷も%usrよりも%iowaitが
高めになるようになりたした。

サヌバヌサむドPreparedStatementを䜿う方

$ mvn compile exec:java -Dexec.mainClass='org.littlewings.mysql.UuidV4StringRunner$UuidV4StringAsServerPsRunner'

結果。

[2025-03-08 21:41:12] org.littlewings.mysql.UuidV4StringRunner$UuidV4StringAsServerPsRunner.main() - UuidV4StringAsServerPsRunner: 5000000 records inserted, total elapsed time = 507.793

やっぱりクラむアントサむドPreparedStatementよりは速いですね。

MySQLの倖でUUIDを生成するUUID バヌゞョン7

最埌はMySQLの倖でUUIDを生成しおデヌタを登録するパタヌンで、UUID バヌゞョン7を䜿いたす。

UUID バヌゞョン7の生成にはこちらを䜿っおいたす。

GitHub - cowtowncoder/java-uuid-generator: Java Uuid Generator (JUG) is a Java library for generating all standard UUID versions (v1 - v7)

src/main/java/org/littlewings/mysql/UuidV7StringRunner.java

package org.littlewings.mysql;

import com.fasterxml.uuid.Generators;
import com.fasterxml.uuid.impl.TimeBasedEpochGenerator;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.util.UUID;

public abstract class UuidV7StringRunner implements Runner {
    private TimeBasedEpochGenerator generator = Generators.timeBasedEpochGenerator();

    @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());
        };
    }

    public static class UuidV7StringAsClientPsRunner extends UuidV7StringRunner {
        public static void main(String... args) {
            UuidV7StringAsClientPsRunner runner = new UuidV7StringAsClientPsRunner();
            runner.run();
        }

        @Override
        public boolean useServerPreparedStatement() {
            return false;
        }
    }

    public static class UuidV7StringAsServerPsRunner extends UuidV7StringRunner {
        public static void main(String... args) {
            UuidV7StringAsServerPsRunner runner = new UuidV7StringAsServerPsRunner();
            runner.run();
        }

        @Override
        public boolean useServerPreparedStatement() {
            return true;
        }
    }
}

クラむアントサむドPreparedStatementを䜿う方から。

$ mvn compile exec:java -Dexec.mainClass='org.littlewings.mysql.UuidV7StringRunner$UuidV7StringAsClientPsRunner'

結果。

[2025-03-08 21:46:31] org.littlewings.mysql.UuidV7StringRunner$UuidV7StringAsClientPsRunner.main() - UuidV7StringAsClientPsRunner: 5000000 records inserted, total elapsed time = 67.855

UUID バヌゞョン4ずは比范にならないくらい速くなりたした。uuid関数uuid_to_bin関数ず同じくらいずいうか、むしろ
もっず速いです。

サヌバヌサむドPreparedStatementを䜿う方

$ mvn compile exec:java -Dexec.mainClass='org.littlewings.mysql.UuidV7StringRunner$UuidV7StringAsServerPsRunner'

結果。

[2025-03-08 21:50:17] org.littlewings.mysql.UuidV7StringRunner$UuidV7StringAsServerPsRunner.main() - UuidV7StringAsServerPsRunner: 5000000 records inserted, total elapsed time = 68.991

クラむアントサむドPreparedStatementの時ずほが倉わりたせんが、こちらもUUID バヌゞョン4に比べるずずおも高速に
なりたした。

おわりに

MySQLでUUIDを䜿う堎合はシヌケンシャルなIDにした方が良さそうだずいう話で、
UUIDのバヌゞョン1ビット入れ替えあり、4、7で詊しおみたした。

評刀どおり、UUID バヌゞョン4がずおも遅くなりたした。予想以䞊に遅くなりすぎお驚きたしたね。

内容的にはTiDBの時の焌き盎しなのですが、自分で性胜確認をしおみる良い機䌚になったず思いたす。

オマケ

最埌に、各パタヌンを実行した時のログを茉せおおきたす。

ただ、党郚を茉せるずはおなブログの文字数をオヌバヌするようなので、各パタヌンからサヌバヌサむドPreparedStatementを
䜿ったパタヌンのみを茉せるこずにしたす。

uuid関数でUUIDを生成しおuuid_to_bin関数でバむナリヌ倉換埌にデヌタを登録した時の実行ログswap_flagなし
[INFO] --- exec:3.5.0:java (default-cli) @ mysql-connector-j-uuid ---
[2025-03-08 20:50:19] pool-1-thread-3 - 5000 records committed(current total 5000 records), lap time = 0.870
[2025-03-08 20:50:19] pool-1-thread-5 - 5000 records committed(current total 5000 records), lap time = 1.154
[2025-03-08 20:50:19] pool-1-thread-6 - 5000 records committed(current total 5000 records), lap time = 1.155
[2025-03-08 20:50:19] pool-1-thread-8 - 5000 records committed(current total 5000 records), lap time = 1.177
[2025-03-08 20:50:19] pool-1-thread-4 - 5000 records committed(current total 5000 records), lap time = 1.177
[2025-03-08 20:50:19] pool-1-thread-2 - 5000 records committed(current total 5000 records), lap time = 1.177
[2025-03-08 20:50:19] pool-1-thread-7 - 5000 records committed(current total 5000 records), lap time = 1.177
[2025-03-08 20:50:19] pool-1-thread-10 - 5000 records committed(current total 5000 records), lap time = 1.177
[2025-03-08 20:50:19] pool-1-thread-9 - 5000 records committed(current total 5000 records), lap time = 1.177
[2025-03-08 20:50:19] pool-1-thread-3 - 5000 records committed(current total 10000 records), lap time = 0.305
[2025-03-08 20:50:19] pool-1-thread-1 - 5000 records committed(current total 5000 records), lap time = 1.177
[2025-03-08 20:50:19] pool-1-thread-5 - 5000 records committed(current total 10000 records), lap time = 0.640
[2025-03-08 20:50:19] pool-1-thread-6 - 5000 records committed(current total 10000 records), lap time = 0.660
[2025-03-08 20:50:19] pool-1-thread-1 - 5000 records committed(current total 10000 records), lap time = 0.643
[2025-03-08 20:50:19] pool-1-thread-2 - 5000 records committed(current total 10000 records), lap time = 0.651
[2025-03-08 20:50:19] pool-1-thread-7 - 5000 records committed(current total 10000 records), lap time = 0.651
[2025-03-08 20:50:19] pool-1-thread-8 - 5000 records committed(current total 10000 records), lap time = 0.652
[2025-03-08 20:50:20] pool-1-thread-3 - 5000 records committed(current total 15000 records), lap time = 0.661
[2025-03-08 20:50:20] pool-1-thread-4 - 5000 records committed(current total 10000 records), lap time = 0.662
[2025-03-08 20:50:20] pool-1-thread-10 - 5000 records committed(current total 10000 records), lap time = 0.662
[2025-03-08 20:50:20] pool-1-thread-9 - 5000 records committed(current total 10000 records), lap time = 0.661
[2025-03-08 20:50:20] pool-1-thread-5 - 5000 records committed(current total 15000 records), lap time = 0.410
[2025-03-08 20:50:20] pool-1-thread-6 - 5000 records committed(current total 15000 records), lap time = 0.427
[2025-03-08 20:50:20] pool-1-thread-1 - 5000 records committed(current total 15000 records), lap time = 0.438
[2025-03-08 20:50:20] pool-1-thread-7 - 5000 records committed(current total 15000 records), lap time = 0.437
[2025-03-08 20:50:20] pool-1-thread-8 - 5000 records committed(current total 15000 records), lap time = 0.437
[2025-03-08 20:50:20] pool-1-thread-10 - 5000 records committed(current total 15000 records), lap time = 0.431
[2025-03-08 20:50:20] pool-1-thread-2 - 5000 records committed(current total 15000 records), lap time = 0.443
[2025-03-08 20:50:20] pool-1-thread-4 - 5000 records committed(current total 15000 records), lap time = 0.438
[2025-03-08 20:50:20] pool-1-thread-3 - 5000 records committed(current total 20000 records), lap time = 0.439
[2025-03-08 20:50:20] pool-1-thread-9 - 5000 records committed(current total 15000 records), lap time = 0.443
[2025-03-08 20:50:20] pool-1-thread-5 - 5000 records committed(current total 20000 records), lap time = 0.429
[2025-03-08 20:50:20] pool-1-thread-6 - 5000 records committed(current total 20000 records), lap time = 0.406
[2025-03-08 20:50:20] pool-1-thread-1 - 5000 records committed(current total 20000 records), lap time = 0.419
[2025-03-08 20:50:20] pool-1-thread-7 - 5000 records committed(current total 20000 records), lap time = 0.424
[2025-03-08 20:50:20] pool-1-thread-8 - 5000 records committed(current total 20000 records), lap time = 0.430
[2025-03-08 20:50:20] pool-1-thread-10 - 5000 records committed(current total 20000 records), lap time = 0.434
[2025-03-08 20:50:20] pool-1-thread-2 - 5000 records committed(current total 20000 records), lap time = 0.463
[2025-03-08 20:50:20] pool-1-thread-4 - 5000 records committed(current total 20000 records), lap time = 0.467
[2025-03-08 20:50:20] pool-1-thread-9 - 5000 records committed(current total 20000 records), lap time = 0.468
[2025-03-08 20:50:20] pool-1-thread-3 - 5000 records committed(current total 25000 records), lap time = 0.480
[2025-03-08 20:50:21] pool-1-thread-5 - 5000 records committed(current total 25000 records), lap time = 0.592
[2025-03-08 20:50:21] pool-1-thread-6 - 5000 records committed(current total 25000 records), lap time = 0.588
[2025-03-08 20:50:21] pool-1-thread-1 - 5000 records committed(current total 25000 records), lap time = 0.580
[2025-03-08 20:50:21] pool-1-thread-10 - 5000 records committed(current total 25000 records), lap time = 0.559
[2025-03-08 20:50:21] pool-1-thread-8 - 5000 records committed(current total 25000 records), lap time = 0.573
[2025-03-08 20:50:21] pool-1-thread-7 - 5000 records committed(current total 25000 records), lap time = 0.579
[2025-03-08 20:50:21] pool-1-thread-2 - 5000 records committed(current total 25000 records), lap time = 0.540
[2025-03-08 20:50:21] pool-1-thread-3 - 5000 records committed(current total 30000 records), lap time = 0.522
[2025-03-08 20:50:21] pool-1-thread-4 - 5000 records committed(current total 25000 records), lap time = 0.543
[2025-03-08 20:50:21] pool-1-thread-9 - 5000 records committed(current total 25000 records), lap time = 0.535
[2025-03-08 20:50:21] pool-1-thread-5 - 5000 records committed(current total 30000 records), lap time = 0.470
[2025-03-08 20:50:21] pool-1-thread-6 - 5000 records committed(current total 30000 records), lap time = 0.470
[2025-03-08 20:50:21] pool-1-thread-1 - 5000 records committed(current total 30000 records), lap time = 0.491
[2025-03-08 20:50:21] pool-1-thread-10 - 5000 records committed(current total 30000 records), lap time = 0.492
[2025-03-08 20:50:21] pool-1-thread-7 - 5000 records committed(current total 30000 records), lap time = 0.559
[2025-03-08 20:50:22] pool-1-thread-8 - 5000 records committed(current total 30000 records), lap time = 0.567
[2025-03-08 20:50:22] pool-1-thread-2 - 5000 records committed(current total 30000 records), lap time = 0.582
[2025-03-08 20:50:22] pool-1-thread-4 - 5000 records committed(current total 30000 records), lap time = 0.583
[2025-03-08 20:50:22] pool-1-thread-9 - 5000 records committed(current total 30000 records), lap time = 0.588
[2025-03-08 20:50:22] pool-1-thread-3 - 5000 records committed(current total 35000 records), lap time = 0.615
[2025-03-08 20:50:22] pool-1-thread-5 - 5000 records committed(current total 35000 records), lap time = 0.526
[2025-03-08 20:50:22] pool-1-thread-6 - 5000 records committed(current total 35000 records), lap time = 0.521
[2025-03-08 20:50:22] pool-1-thread-10 - 5000 records committed(current total 35000 records), lap time = 0.483
[2025-03-08 20:50:22] pool-1-thread-7 - 5000 records committed(current total 35000 records), lap time = 0.428
[2025-03-08 20:50:22] pool-1-thread-1 - 5000 records committed(current total 35000 records), lap time = 0.515
[2025-03-08 20:50:22] pool-1-thread-8 - 5000 records committed(current total 35000 records), lap time = 0.427
[2025-03-08 20:50:22] pool-1-thread-2 - 5000 records committed(current total 35000 records), lap time = 0.414
[2025-03-08 20:50:22] pool-1-thread-9 - 5000 records committed(current total 35000 records), lap time = 0.395
[2025-03-08 20:50:22] pool-1-thread-4 - 5000 records committed(current total 35000 records), lap time = 0.405
[2025-03-08 20:50:22] pool-1-thread-3 - 5000 records committed(current total 40000 records), lap time = 0.384
[2025-03-08 20:50:22] pool-1-thread-5 - 5000 records committed(current total 40000 records), lap time = 0.457
[2025-03-08 20:50:22] pool-1-thread-10 - 5000 records committed(current total 40000 records), lap time = 0.483
[2025-03-08 20:50:22] pool-1-thread-6 - 5000 records committed(current total 40000 records), lap time = 0.500
[2025-03-08 20:50:22] pool-1-thread-7 - 5000 records committed(current total 40000 records), lap time = 0.525
[2025-03-08 20:50:22] pool-1-thread-1 - 5000 records committed(current total 40000 records), lap time = 0.530
[2025-03-08 20:50:22] pool-1-thread-4 - 5000 records committed(current total 40000 records), lap time = 0.520
[2025-03-08 20:50:22] pool-1-thread-8 - 5000 records committed(current total 40000 records), lap time = 0.529
[2025-03-08 20:50:22] pool-1-thread-2 - 5000 records committed(current total 40000 records), lap time = 0.524
[2025-03-08 20:50:22] pool-1-thread-3 - 5000 records committed(current total 45000 records), lap time = 0.518
[2025-03-08 20:50:22] pool-1-thread-9 - 5000 records committed(current total 40000 records), lap time = 0.534
[2025-03-08 20:50:23] pool-1-thread-5 - 5000 records committed(current total 45000 records), lap time = 0.504
[2025-03-08 20:50:23] pool-1-thread-6 - 5000 records committed(current total 45000 records), lap time = 0.486
[2025-03-08 20:50:23] pool-1-thread-10 - 5000 records committed(current total 45000 records), lap time = 0.501
[2025-03-08 20:50:23] pool-1-thread-7 - 5000 records committed(current total 45000 records), lap time = 0.698
[2025-03-08 20:50:23] pool-1-thread-10 - 5000 records committed(current total 50000 records), lap time = 0.296
[2025-03-08 20:50:23] pool-1-thread-2 - 5000 records committed(current total 45000 records), lap time = 0.724
[2025-03-08 20:50:23] pool-1-thread-1 - 5000 records committed(current total 45000 records), lap time = 0.724
[2025-03-08 20:50:23] pool-1-thread-8 - 5000 records committed(current total 45000 records), lap time = 0.724
[2025-03-08 20:50:23] pool-1-thread-9 - 5000 records committed(current total 45000 records), lap time = 0.713
[2025-03-08 20:50:23] pool-1-thread-6 - 5000 records committed(current total 50000 records), lap time = 0.304
[2025-03-08 20:50:23] pool-1-thread-3 - 5000 records committed(current total 50000 records), lap time = 0.720
[2025-03-08 20:50:23] pool-1-thread-4 - 5000 records committed(current total 45000 records), lap time = 0.724
[2025-03-08 20:50:23] pool-1-thread-5 - 5000 records committed(current total 50000 records), lap time = 0.334
[2025-03-08 20:50:24] pool-1-thread-7 - 5000 records committed(current total 50000 records), lap time = 0.641
[2025-03-08 20:50:24] pool-1-thread-8 - 5000 records committed(current total 50000 records), lap time = 0.686
[2025-03-08 20:50:24] pool-1-thread-10 - 5000 records committed(current total 55000 records), lap time = 0.693
[2025-03-08 20:50:24] pool-1-thread-5 - 5000 records committed(current total 55000 records), lap time = 0.699
[2025-03-08 20:50:24] pool-1-thread-2 - 5000 records committed(current total 50000 records), lap time = 0.699
[2025-03-08 20:50:24] pool-1-thread-1 - 5000 records committed(current total 50000 records), lap time = 0.706
[2025-03-08 20:50:24] pool-1-thread-6 - 5000 records committed(current total 55000 records), lap time = 0.706
[2025-03-08 20:50:24] pool-1-thread-4 - 5000 records committed(current total 50000 records), lap time = 0.706
[2025-03-08 20:50:24] pool-1-thread-3 - 5000 records committed(current total 55000 records), lap time = 0.706
[2025-03-08 20:50:24] pool-1-thread-9 - 5000 records committed(current total 50000 records), lap time = 0.706
[2025-03-08 20:50:24] pool-1-thread-7 - 5000 records committed(current total 55000 records), lap time = 0.605
[2025-03-08 20:50:24] pool-1-thread-8 - 5000 records committed(current total 55000 records), lap time = 0.600
[2025-03-08 20:50:24] pool-1-thread-10 - 5000 records committed(current total 60000 records), lap time = 0.607
[2025-03-08 20:50:25] pool-1-thread-5 - 5000 records committed(current total 60000 records), lap time = 0.615
[2025-03-08 20:50:25] pool-1-thread-2 - 5000 records committed(current total 55000 records), lap time = 0.622
[2025-03-08 20:50:25] pool-1-thread-4 - 5000 records committed(current total 55000 records), lap time = 0.627
[2025-03-08 20:50:25] pool-1-thread-9 - 5000 records committed(current total 55000 records), lap time = 0.633
[2025-03-08 20:50:25] pool-1-thread-1 - 5000 records committed(current total 55000 records), lap time = 0.633
[2025-03-08 20:50:25] pool-1-thread-3 - 5000 records committed(current total 60000 records), lap time = 0.640
[2025-03-08 20:50:25] pool-1-thread-6 - 5000 records committed(current total 60000 records), lap time = 0.645
[2025-03-08 20:50:25] pool-1-thread-7 - 5000 records committed(current total 60000 records), lap time = 0.551
[2025-03-08 20:50:25] pool-1-thread-8 - 5000 records committed(current total 60000 records), lap time = 0.530
[2025-03-08 20:50:25] pool-1-thread-10 - 5000 records committed(current total 65000 records), lap time = 0.543
[2025-03-08 20:50:25] pool-1-thread-2 - 5000 records committed(current total 60000 records), lap time = 0.530
[2025-03-08 20:50:25] pool-1-thread-5 - 5000 records committed(current total 65000 records), lap time = 0.537
[2025-03-08 20:50:25] pool-1-thread-9 - 5000 records committed(current total 60000 records), lap time = 0.538
[2025-03-08 20:50:25] pool-1-thread-1 - 5000 records committed(current total 60000 records), lap time = 0.545
[2025-03-08 20:50:25] pool-1-thread-4 - 5000 records committed(current total 60000 records), lap time = 0.551
[2025-03-08 20:50:25] pool-1-thread-3 - 5000 records committed(current total 65000 records), lap time = 0.548
[2025-03-08 20:50:25] pool-1-thread-6 - 5000 records committed(current total 65000 records), lap time = 0.549
[2025-03-08 20:50:26] pool-1-thread-7 - 5000 records committed(current total 65000 records), lap time = 0.754
[2025-03-08 20:50:26] pool-1-thread-2 - 5000 records committed(current total 65000 records), lap time = 0.699
[2025-03-08 20:50:26] pool-1-thread-8 - 5000 records committed(current total 65000 records), lap time = 0.733
[2025-03-08 20:50:26] pool-1-thread-5 - 5000 records committed(current total 70000 records), lap time = 0.699
[2025-03-08 20:50:26] pool-1-thread-10 - 5000 records committed(current total 70000 records), lap time = 0.707
[2025-03-08 20:50:26] pool-1-thread-9 - 5000 records committed(current total 65000 records), lap time = 0.677
[2025-03-08 20:50:26] pool-1-thread-1 - 5000 records committed(current total 65000 records), lap time = 0.688
[2025-03-08 20:50:26] pool-1-thread-4 - 5000 records committed(current total 65000 records), lap time = 0.710
[2025-03-08 20:50:26] pool-1-thread-6 - 5000 records committed(current total 70000 records), lap time = 0.697
[2025-03-08 20:50:26] pool-1-thread-3 - 5000 records committed(current total 70000 records), lap time = 0.705
[2025-03-08 20:50:26] pool-1-thread-7 - 5000 records committed(current total 70000 records), lap time = 0.408
[2025-03-08 20:50:26] pool-1-thread-8 - 5000 records committed(current total 70000 records), lap time = 0.386
[2025-03-08 20:50:26] pool-1-thread-2 - 5000 records committed(current total 70000 records), lap time = 0.394
[2025-03-08 20:50:26] pool-1-thread-9 - 5000 records committed(current total 70000 records), lap time = 0.390
[2025-03-08 20:50:26] pool-1-thread-10 - 5000 records committed(current total 75000 records), lap time = 0.398
[2025-03-08 20:50:26] pool-1-thread-5 - 5000 records committed(current total 75000 records), lap time = 0.408
[2025-03-08 20:50:26] pool-1-thread-1 - 5000 records committed(current total 70000 records), lap time = 0.385
[2025-03-08 20:50:26] pool-1-thread-6 - 5000 records committed(current total 75000 records), lap time = 0.366
[2025-03-08 20:50:26] pool-1-thread-4 - 5000 records committed(current total 70000 records), lap time = 0.396
[2025-03-08 20:50:26] pool-1-thread-3 - 5000 records committed(current total 75000 records), lap time = 0.404
[2025-03-08 20:50:27] pool-1-thread-7 - 5000 records committed(current total 75000 records), lap time = 0.523
[2025-03-08 20:50:27] pool-1-thread-10 - 5000 records committed(current total 80000 records), lap time = 0.514
[2025-03-08 20:50:27] pool-1-thread-9 - 5000 records committed(current total 75000 records), lap time = 0.525
[2025-03-08 20:50:27] pool-1-thread-8 - 5000 records committed(current total 75000 records), lap time = 0.532
[2025-03-08 20:50:27] pool-1-thread-5 - 5000 records committed(current total 80000 records), lap time = 0.516
[2025-03-08 20:50:27] pool-1-thread-2 - 5000 records committed(current total 75000 records), lap time = 0.536
[2025-03-08 20:50:27] pool-1-thread-1 - 5000 records committed(current total 75000 records), lap time = 0.526
[2025-03-08 20:50:27] pool-1-thread-6 - 5000 records committed(current total 80000 records), lap time = 0.523
[2025-03-08 20:50:27] pool-1-thread-3 - 5000 records committed(current total 80000 records), lap time = 0.491
[2025-03-08 20:50:27] pool-1-thread-4 - 5000 records committed(current total 75000 records), lap time = 0.512
[2025-03-08 20:50:27] pool-1-thread-7 - 5000 records committed(current total 80000 records), lap time = 0.627
[2025-03-08 20:50:27] pool-1-thread-5 - 5000 records committed(current total 85000 records), lap time = 0.609
[2025-03-08 20:50:27] pool-1-thread-10 - 5000 records committed(current total 85000 records), lap time = 0.619
[2025-03-08 20:50:27] pool-1-thread-8 - 5000 records committed(current total 80000 records), lap time = 0.614
[2025-03-08 20:50:27] pool-1-thread-4 - 5000 records committed(current total 80000 records), lap time = 0.580
[2025-03-08 20:50:27] pool-1-thread-1 - 5000 records committed(current total 80000 records), lap time = 0.599
[2025-03-08 20:50:27] pool-1-thread-6 - 5000 records committed(current total 85000 records), lap time = 0.593
[2025-03-08 20:50:27] pool-1-thread-3 - 5000 records committed(current total 85000 records), lap time = 0.587
[2025-03-08 20:50:27] pool-1-thread-2 - 5000 records committed(current total 80000 records), lap time = 0.603
[2025-03-08 20:50:27] pool-1-thread-9 - 5000 records committed(current total 80000 records), lap time = 0.614
[2025-03-08 20:50:28] pool-1-thread-7 - 5000 records committed(current total 85000 records), lap time = 0.577
[2025-03-08 20:50:28] pool-1-thread-3 - 5000 records committed(current total 90000 records), lap time = 0.601
[2025-03-08 20:50:28] pool-1-thread-1 - 5000 records committed(current total 85000 records), lap time = 0.609
[2025-03-08 20:50:28] pool-1-thread-9 - 5000 records committed(current total 85000 records), lap time = 0.618
[2025-03-08 20:50:28] pool-1-thread-4 - 5000 records committed(current total 85000 records), lap time = 0.619
[2025-03-08 20:50:28] pool-1-thread-6 - 5000 records committed(current total 90000 records), lap time = 0.618
[2025-03-08 20:50:28] pool-1-thread-2 - 5000 records committed(current total 85000 records), lap time = 0.618
[2025-03-08 20:50:28] pool-1-thread-8 - 5000 records committed(current total 85000 records), lap time = 0.625
[2025-03-08 20:50:28] pool-1-thread-10 - 5000 records committed(current total 90000 records), lap time = 0.625
[2025-03-08 20:50:28] pool-1-thread-5 - 5000 records committed(current total 90000 records), lap time = 0.625
[2025-03-08 20:50:28] pool-1-thread-7 - 5000 records committed(current total 90000 records), lap time = 0.618
[2025-03-08 20:50:29] pool-1-thread-1 - 5000 records committed(current total 90000 records), lap time = 0.649
[2025-03-08 20:50:29] pool-1-thread-3 - 5000 records committed(current total 95000 records), lap time = 0.663
[2025-03-08 20:50:29] pool-1-thread-9 - 5000 records committed(current total 90000 records), lap time = 0.654
[2025-03-08 20:50:29] pool-1-thread-10 - 5000 records committed(current total 95000 records), lap time = 0.654
[2025-03-08 20:50:29] pool-1-thread-2 - 5000 records committed(current total 90000 records), lap time = 0.668
[2025-03-08 20:50:29] pool-1-thread-8 - 5000 records committed(current total 90000 records), lap time = 0.662
[2025-03-08 20:50:29] pool-1-thread-5 - 5000 records committed(current total 95000 records), lap time = 0.662
[2025-03-08 20:50:29] pool-1-thread-6 - 5000 records committed(current total 95000 records), lap time = 0.674
[2025-03-08 20:50:29] pool-1-thread-4 - 5000 records committed(current total 90000 records), lap time = 0.674
[2025-03-08 20:50:29] pool-1-thread-7 - 5000 records committed(current total 95000 records), lap time = 0.524
[2025-03-08 20:50:29] pool-1-thread-1 - 5000 records committed(current total 95000 records), lap time = 0.510
[2025-03-08 20:50:29] pool-1-thread-3 - 5000 records committed(current total 100000 records), lap time = 0.509
[2025-03-08 20:50:29] pool-1-thread-9 - 5000 records committed(current total 95000 records), lap time = 0.514
[2025-03-08 20:50:29] pool-1-thread-8 - 5000 records committed(current total 95000 records), lap time = 0.509
[2025-03-08 20:50:29] pool-1-thread-5 - 5000 records committed(current total 100000 records), lap time = 0.515
[2025-03-08 20:50:29] pool-1-thread-6 - 5000 records committed(current total 100000 records), lap time = 0.510
[2025-03-08 20:50:29] pool-1-thread-10 - 5000 records committed(current total 100000 records), lap time = 0.523
[2025-03-08 20:50:29] pool-1-thread-4 - 5000 records committed(current total 95000 records), lap time = 0.516
[2025-03-08 20:50:29] pool-1-thread-2 - 5000 records committed(current total 95000 records), lap time = 0.521
[2025-03-08 20:50:30] pool-1-thread-7 - 5000 records committed(current total 100000 records), lap time = 0.590
[2025-03-08 20:50:30] pool-1-thread-3 - 5000 records committed(current total 105000 records), lap time = 0.629
[2025-03-08 20:50:30] pool-1-thread-1 - 5000 records committed(current total 100000 records), lap time = 0.647
[2025-03-08 20:50:30] pool-1-thread-9 - 5000 records committed(current total 100000 records), lap time = 0.654
[2025-03-08 20:50:30] pool-1-thread-8 - 5000 records committed(current total 100000 records), lap time = 0.680
[2025-03-08 20:50:30] pool-1-thread-6 - 5000 records committed(current total 105000 records), lap time = 0.692
[2025-03-08 20:50:30] pool-1-thread-5 - 5000 records committed(current total 105000 records), lap time = 0.704
[2025-03-08 20:50:30] pool-1-thread-4 - 5000 records committed(current total 100000 records), lap time = 0.699
[2025-03-08 20:50:30] pool-1-thread-10 - 5000 records committed(current total 105000 records), lap time = 0.704
[2025-03-08 20:50:30] pool-1-thread-2 - 5000 records committed(current total 100000 records), lap time = 0.706
[2025-03-08 20:50:30] pool-1-thread-7 - 5000 records committed(current total 105000 records), lap time = 0.621
[2025-03-08 20:50:30] pool-1-thread-9 - 5000 records committed(current total 105000 records), lap time = 0.631
[2025-03-08 20:50:30] pool-1-thread-1 - 5000 records committed(current total 105000 records), lap time = 0.662
[2025-03-08 20:50:30] pool-1-thread-3 - 5000 records committed(current total 110000 records), lap time = 0.683
[2025-03-08 20:50:30] pool-1-thread-8 - 5000 records committed(current total 105000 records), lap time = 0.651
[2025-03-08 20:50:30] pool-1-thread-6 - 5000 records committed(current total 110000 records), lap time = 0.692
[2025-03-08 20:50:30] pool-1-thread-10 - 5000 records committed(current total 110000 records), lap time = 0.699
[2025-03-08 20:50:30] pool-1-thread-5 - 5000 records committed(current total 110000 records), lap time = 0.712
[2025-03-08 20:50:30] pool-1-thread-2 - 5000 records committed(current total 105000 records), lap time = 0.705
[2025-03-08 20:50:30] pool-1-thread-4 - 5000 records committed(current total 105000 records), lap time = 0.712
[2025-03-08 20:50:31] pool-1-thread-7 - 5000 records committed(current total 110000 records), lap time = 0.646
[2025-03-08 20:50:31] pool-1-thread-9 - 5000 records committed(current total 110000 records), lap time = 0.628
[2025-03-08 20:50:31] pool-1-thread-1 - 5000 records committed(current total 110000 records), lap time = 0.631
[2025-03-08 20:50:31] pool-1-thread-8 - 5000 records committed(current total 110000 records), lap time = 0.594
[2025-03-08 20:50:31] pool-1-thread-3 - 5000 records committed(current total 115000 records), lap time = 0.641
[2025-03-08 20:50:31] pool-1-thread-6 - 5000 records committed(current total 115000 records), lap time = 0.581
[2025-03-08 20:50:31] pool-1-thread-10 - 5000 records committed(current total 115000 records), lap time = 0.576
[2025-03-08 20:50:31] pool-1-thread-5 - 5000 records committed(current total 115000 records), lap time = 0.568
[2025-03-08 20:50:31] pool-1-thread-4 - 5000 records committed(current total 110000 records), lap time = 0.576
[2025-03-08 20:50:31] pool-1-thread-2 - 5000 records committed(current total 110000 records), lap time = 0.582
[2025-03-08 20:50:31] pool-1-thread-7 - 5000 records committed(current total 115000 records), lap time = 0.625
[2025-03-08 20:50:32] pool-1-thread-9 - 5000 records committed(current total 115000 records), lap time = 0.742
[2025-03-08 20:50:32] pool-1-thread-4 - 5000 records committed(current total 115000 records), lap time = 0.676
[2025-03-08 20:50:32] pool-1-thread-10 - 5000 records committed(current total 120000 records), lap time = 0.689
[2025-03-08 20:50:32] pool-1-thread-1 - 5000 records committed(current total 115000 records), lap time = 0.762
[2025-03-08 20:50:32] pool-1-thread-8 - 5000 records committed(current total 115000 records), lap time = 0.749
[2025-03-08 20:50:32] pool-1-thread-3 - 5000 records committed(current total 120000 records), lap time = 0.743
[2025-03-08 20:50:32] pool-1-thread-2 - 5000 records committed(current total 115000 records), lap time = 0.670
[2025-03-08 20:50:32] pool-1-thread-5 - 5000 records committed(current total 120000 records), lap time = 0.684
[2025-03-08 20:50:32] pool-1-thread-6 - 5000 records committed(current total 120000 records), lap time = 0.703
[2025-03-08 20:50:32] pool-1-thread-7 - 5000 records committed(current total 120000 records), lap time = 0.282
[2025-03-08 20:50:32] pool-1-thread-9 - 5000 records committed(current total 120000 records), lap time = 0.681
[2025-03-08 20:50:32] pool-1-thread-6 - 5000 records committed(current total 125000 records), lap time = 0.715
[2025-03-08 20:50:32] pool-1-thread-4 - 5000 records committed(current total 120000 records), lap time = 0.727
[2025-03-08 20:50:32] pool-1-thread-3 - 5000 records committed(current total 125000 records), lap time = 0.726
[2025-03-08 20:50:32] pool-1-thread-8 - 5000 records committed(current total 120000 records), lap time = 0.726
[2025-03-08 20:50:32] pool-1-thread-10 - 5000 records committed(current total 125000 records), lap time = 0.726
[2025-03-08 20:50:32] pool-1-thread-1 - 5000 records committed(current total 120000 records), lap time = 0.727
[2025-03-08 20:50:32] pool-1-thread-5 - 5000 records committed(current total 125000 records), lap time = 0.726
[2025-03-08 20:50:32] pool-1-thread-7 - 5000 records committed(current total 125000 records), lap time = 0.727
[2025-03-08 20:50:32] pool-1-thread-2 - 5000 records committed(current total 120000 records), lap time = 0.733
[2025-03-08 20:50:33] pool-1-thread-9 - 5000 records committed(current total 125000 records), lap time = 0.471
[2025-03-08 20:50:33] pool-1-thread-6 - 5000 records committed(current total 130000 records), lap time = 0.465
[2025-03-08 20:50:33] pool-1-thread-10 - 5000 records committed(current total 130000 records), lap time = 0.493
[2025-03-08 20:50:33] pool-1-thread-5 - 5000 records committed(current total 130000 records), lap time = 0.500
[2025-03-08 20:50:33] pool-1-thread-4 - 5000 records committed(current total 125000 records), lap time = 0.500
[2025-03-08 20:50:33] pool-1-thread-1 - 5000 records committed(current total 125000 records), lap time = 0.508
[2025-03-08 20:50:33] pool-1-thread-8 - 5000 records committed(current total 125000 records), lap time = 0.508
[2025-03-08 20:50:33] pool-1-thread-3 - 5000 records committed(current total 130000 records), lap time = 0.508
[2025-03-08 20:50:33] pool-1-thread-2 - 5000 records committed(current total 125000 records), lap time = 0.508
[2025-03-08 20:50:33] pool-1-thread-7 - 5000 records committed(current total 130000 records), lap time = 0.508
[2025-03-08 20:50:34] pool-1-thread-9 - 5000 records committed(current total 130000 records), lap time = 0.696
[2025-03-08 20:50:34] pool-1-thread-5 - 5000 records committed(current total 135000 records), lap time = 0.829
[2025-03-08 20:50:34] pool-1-thread-3 - 5000 records committed(current total 135000 records), lap time = 0.822
[2025-03-08 20:50:34] pool-1-thread-4 - 5000 records committed(current total 130000 records), lap time = 0.829
[2025-03-08 20:50:34] pool-1-thread-7 - 5000 records committed(current total 135000 records), lap time = 0.816
[2025-03-08 20:50:34] pool-1-thread-1 - 5000 records committed(current total 130000 records), lap time = 0.822
[2025-03-08 20:50:34] pool-1-thread-2 - 5000 records committed(current total 130000 records), lap time = 0.816
[2025-03-08 20:50:34] pool-1-thread-8 - 5000 records committed(current total 130000 records), lap time = 0.822
[2025-03-08 20:50:34] pool-1-thread-10 - 5000 records committed(current total 135000 records), lap time = 0.866
[2025-03-08 20:50:34] pool-1-thread-6 - 5000 records committed(current total 135000 records), lap time = 0.910
[2025-03-08 20:50:34] pool-1-thread-9 - 5000 records committed(current total 135000 records), lap time = 0.464
[2025-03-08 20:50:34] pool-1-thread-5 - 5000 records committed(current total 140000 records), lap time = 0.661
[2025-03-08 20:50:34] pool-1-thread-8 - 5000 records committed(current total 135000 records), lap time = 0.682
[2025-03-08 20:50:34] pool-1-thread-2 - 5000 records committed(current total 135000 records), lap time = 0.691
[2025-03-08 20:50:34] pool-1-thread-10 - 5000 records committed(current total 140000 records), lap time = 0.659
[2025-03-08 20:50:34] pool-1-thread-4 - 5000 records committed(current total 135000 records), lap time = 0.691
[2025-03-08 20:50:34] pool-1-thread-3 - 5000 records committed(current total 140000 records), lap time = 0.691
[2025-03-08 20:50:34] pool-1-thread-7 - 5000 records committed(current total 140000 records), lap time = 0.691
[2025-03-08 20:50:34] pool-1-thread-1 - 5000 records committed(current total 135000 records), lap time = 0.691
[2025-03-08 20:50:35] pool-1-thread-6 - 5000 records committed(current total 140000 records), lap time = 0.662
[2025-03-08 20:50:35] pool-1-thread-9 - 5000 records committed(current total 140000 records), lap time = 0.541
[2025-03-08 20:50:35] pool-1-thread-5 - 5000 records committed(current total 145000 records), lap time = 0.388
[2025-03-08 20:50:35] pool-1-thread-8 - 5000 records committed(current total 140000 records), lap time = 0.411
[2025-03-08 20:50:35] pool-1-thread-4 - 5000 records committed(current total 140000 records), lap time = 0.433
[2025-03-08 20:50:35] pool-1-thread-2 - 5000 records committed(current total 140000 records), lap time = 0.451
[2025-03-08 20:50:35] pool-1-thread-7 - 5000 records committed(current total 145000 records), lap time = 0.460
[2025-03-08 20:50:35] pool-1-thread-1 - 5000 records committed(current total 140000 records), lap time = 0.460
[2025-03-08 20:50:35] pool-1-thread-10 - 5000 records committed(current total 145000 records), lap time = 0.460
[2025-03-08 20:50:35] pool-1-thread-3 - 5000 records committed(current total 145000 records), lap time = 0.460
[2025-03-08 20:50:35] pool-1-thread-6 - 5000 records committed(current total 145000 records), lap time = 0.455
[2025-03-08 20:50:35] pool-1-thread-9 - 5000 records committed(current total 145000 records), lap time = 0.423
[2025-03-08 20:50:36] pool-1-thread-5 - 5000 records committed(current total 150000 records), lap time = 0.754
[2025-03-08 20:50:36] pool-1-thread-10 - 5000 records committed(current total 150000 records), lap time = 0.669
[2025-03-08 20:50:36] pool-1-thread-6 - 5000 records committed(current total 150000 records), lap time = 0.669
[2025-03-08 20:50:36] pool-1-thread-7 - 5000 records committed(current total 150000 records), lap time = 0.669
[2025-03-08 20:50:36] pool-1-thread-8 - 5000 records committed(current total 145000 records), lap time = 0.727
[2025-03-08 20:50:36] pool-1-thread-1 - 5000 records committed(current total 145000 records), lap time = 0.669
[2025-03-08 20:50:36] pool-1-thread-4 - 5000 records committed(current total 145000 records), lap time = 0.697
[2025-03-08 20:50:36] pool-1-thread-2 - 5000 records committed(current total 145000 records), lap time = 0.684
[2025-03-08 20:50:36] pool-1-thread-3 - 5000 records committed(current total 150000 records), lap time = 0.675
[2025-03-08 20:50:36] pool-1-thread-9 - 5000 records committed(current total 150000 records), lap time = 0.644
[2025-03-08 20:50:36] pool-1-thread-5 - 5000 records committed(current total 155000 records), lap time = 0.511
[2025-03-08 20:50:36] pool-1-thread-4 - 5000 records committed(current total 150000 records), lap time = 0.524
[2025-03-08 20:50:36] pool-1-thread-6 - 5000 records committed(current total 155000 records), lap time = 0.530
[2025-03-08 20:50:36] pool-1-thread-2 - 5000 records committed(current total 150000 records), lap time = 0.535
[2025-03-08 20:50:36] pool-1-thread-7 - 5000 records committed(current total 155000 records), lap time = 0.540
[2025-03-08 20:50:36] pool-1-thread-3 - 5000 records committed(current total 155000 records), lap time = 0.535
[2025-03-08 20:50:36] pool-1-thread-10 - 5000 records committed(current total 155000 records), lap time = 0.546
[2025-03-08 20:50:36] pool-1-thread-8 - 5000 records committed(current total 150000 records), lap time = 0.546
[2025-03-08 20:50:36] pool-1-thread-1 - 5000 records committed(current total 150000 records), lap time = 0.546
[2025-03-08 20:50:36] pool-1-thread-9 - 5000 records committed(current total 155000 records), lap time = 0.536
[2025-03-08 20:50:37] pool-1-thread-5 - 5000 records committed(current total 160000 records), lap time = 0.647
[2025-03-08 20:50:37] pool-1-thread-4 - 5000 records committed(current total 155000 records), lap time = 0.656
[2025-03-08 20:50:37] pool-1-thread-6 - 5000 records committed(current total 160000 records), lap time = 0.670
[2025-03-08 20:50:37] pool-1-thread-3 - 5000 records committed(current total 160000 records), lap time = 0.668
[2025-03-08 20:50:37] pool-1-thread-8 - 5000 records committed(current total 155000 records), lap time = 0.669
[2025-03-08 20:50:37] pool-1-thread-9 - 5000 records committed(current total 160000 records), lap time = 0.675
[2025-03-08 20:50:37] pool-1-thread-1 - 5000 records committed(current total 155000 records), lap time = 0.680
[2025-03-08 20:50:37] pool-1-thread-7 - 5000 records committed(current total 160000 records), lap time = 0.694
[2025-03-08 20:50:37] pool-1-thread-2 - 5000 records committed(current total 155000 records), lap time = 0.694
[2025-03-08 20:50:37] pool-1-thread-10 - 5000 records committed(current total 160000 records), lap time = 0.695
[2025-03-08 20:50:38] pool-1-thread-5 - 5000 records committed(current total 165000 records), lap time = 0.808
[2025-03-08 20:50:38] pool-1-thread-6 - 5000 records committed(current total 165000 records), lap time = 0.776
[2025-03-08 20:50:38] pool-1-thread-10 - 5000 records committed(current total 165000 records), lap time = 0.735
[2025-03-08 20:50:38] pool-1-thread-9 - 5000 records committed(current total 165000 records), lap time = 0.755
[2025-03-08 20:50:38] pool-1-thread-3 - 5000 records committed(current total 165000 records), lap time = 0.768
[2025-03-08 20:50:38] pool-1-thread-2 - 5000 records committed(current total 160000 records), lap time = 0.742
[2025-03-08 20:50:38] pool-1-thread-4 - 5000 records committed(current total 160000 records), lap time = 0.795
[2025-03-08 20:50:38] pool-1-thread-8 - 5000 records committed(current total 160000 records), lap time = 0.761
[2025-03-08 20:50:38] pool-1-thread-1 - 5000 records committed(current total 160000 records), lap time = 0.750
[2025-03-08 20:50:38] pool-1-thread-7 - 5000 records committed(current total 165000 records), lap time = 0.742
[2025-03-08 20:50:38] pool-1-thread-5 - 5000 records committed(current total 170000 records), lap time = 0.514
[2025-03-08 20:50:38] pool-1-thread-10 - 5000 records committed(current total 170000 records), lap time = 0.586
[2025-03-08 20:50:38] pool-1-thread-8 - 5000 records committed(current total 165000 records), lap time = 0.597
[2025-03-08 20:50:38] pool-1-thread-1 - 5000 records committed(current total 165000 records), lap time = 0.597
[2025-03-08 20:50:38] pool-1-thread-7 - 5000 records committed(current total 170000 records), lap time = 0.602
[2025-03-08 20:50:38] pool-1-thread-3 - 5000 records committed(current total 170000 records), lap time = 0.607
[2025-03-08 20:50:38] pool-1-thread-6 - 5000 records committed(current total 170000 records), lap time = 0.613
[2025-03-08 20:50:38] pool-1-thread-9 - 5000 records committed(current total 170000 records), lap time = 0.620
[2025-03-08 20:50:38] pool-1-thread-2 - 5000 records committed(current total 165000 records), lap time = 0.643
[2025-03-08 20:50:38] pool-1-thread-4 - 5000 records committed(current total 165000 records), lap time = 0.652
[2025-03-08 20:50:39] pool-1-thread-5 - 5000 records committed(current total 175000 records), lap time = 0.724
[2025-03-08 20:50:39] pool-1-thread-10 - 5000 records committed(current total 175000 records), lap time = 0.692
[2025-03-08 20:50:39] pool-1-thread-6 - 5000 records committed(current total 175000 records), lap time = 0.688
[2025-03-08 20:50:39] pool-1-thread-4 - 5000 records committed(current total 170000 records), lap time = 0.656
[2025-03-08 20:50:39] pool-1-thread-1 - 5000 records committed(current total 170000 records), lap time = 0.712
[2025-03-08 20:50:39] pool-1-thread-2 - 5000 records committed(current total 170000 records), lap time = 0.665
[2025-03-08 20:50:39] pool-1-thread-9 - 5000 records committed(current total 175000 records), lap time = 0.689
[2025-03-08 20:50:39] pool-1-thread-7 - 5000 records committed(current total 175000 records), lap time = 0.707
[2025-03-08 20:50:39] pool-1-thread-3 - 5000 records committed(current total 175000 records), lap time = 0.702
[2025-03-08 20:50:39] pool-1-thread-8 - 5000 records committed(current total 170000 records), lap time = 0.712
[2025-03-08 20:50:40] pool-1-thread-5 - 5000 records committed(current total 180000 records), lap time = 0.689
[2025-03-08 20:50:40] pool-1-thread-10 - 5000 records committed(current total 180000 records), lap time = 0.657
[2025-03-08 20:50:40] pool-1-thread-6 - 5000 records committed(current total 180000 records), lap time = 0.688
[2025-03-08 20:50:40] pool-1-thread-3 - 5000 records committed(current total 180000 records), lap time = 0.685
[2025-03-08 20:50:40] pool-1-thread-1 - 5000 records committed(current total 175000 records), lap time = 0.697
[2025-03-08 20:50:40] pool-1-thread-2 - 5000 records committed(current total 175000 records), lap time = 0.717
[2025-03-08 20:50:40] pool-1-thread-4 - 5000 records committed(current total 175000 records), lap time = 0.741
[2025-03-08 20:50:40] pool-1-thread-7 - 5000 records committed(current total 180000 records), lap time = 0.740
[2025-03-08 20:50:40] pool-1-thread-8 - 5000 records committed(current total 175000 records), lap time = 0.740
[2025-03-08 20:50:40] pool-1-thread-9 - 5000 records committed(current total 180000 records), lap time = 0.746
[2025-03-08 20:50:40] pool-1-thread-5 - 5000 records committed(current total 185000 records), lap time = 0.482
[2025-03-08 20:50:40] pool-1-thread-10 - 5000 records committed(current total 185000 records), lap time = 0.486
[2025-03-08 20:50:40] pool-1-thread-6 - 5000 records committed(current total 185000 records), lap time = 0.483
[2025-03-08 20:50:40] pool-1-thread-1 - 5000 records committed(current total 180000 records), lap time = 0.479
[2025-03-08 20:50:40] pool-1-thread-3 - 5000 records committed(current total 185000 records), lap time = 0.499
[2025-03-08 20:50:40] pool-1-thread-2 - 5000 records committed(current total 180000 records), lap time = 0.481
[2025-03-08 20:50:40] pool-1-thread-7 - 5000 records committed(current total 185000 records), lap time = 0.474
[2025-03-08 20:50:40] pool-1-thread-9 - 5000 records committed(current total 185000 records), lap time = 0.481
[2025-03-08 20:50:40] pool-1-thread-8 - 5000 records committed(current total 180000 records), lap time = 0.495
[2025-03-08 20:50:40] pool-1-thread-4 - 5000 records committed(current total 180000 records), lap time = 0.495
[2025-03-08 20:50:41] pool-1-thread-5 - 5000 records committed(current total 190000 records), lap time = 0.639
[2025-03-08 20:50:41] pool-1-thread-10 - 5000 records committed(current total 190000 records), lap time = 0.620
[2025-03-08 20:50:41] pool-1-thread-6 - 5000 records committed(current total 190000 records), lap time = 0.633
[2025-03-08 20:50:41] pool-1-thread-1 - 5000 records committed(current total 185000 records), lap time = 0.639
[2025-03-08 20:50:41] pool-1-thread-3 - 5000 records committed(current total 190000 records), lap time = 0.645
[2025-03-08 20:50:41] pool-1-thread-2 - 5000 records committed(current total 185000 records), lap time = 0.637
[2025-03-08 20:50:41] pool-1-thread-7 - 5000 records committed(current total 190000 records), lap time = 0.633
[2025-03-08 20:50:41] pool-1-thread-8 - 5000 records committed(current total 185000 records), lap time = 0.622
[2025-03-08 20:50:41] pool-1-thread-4 - 5000 records committed(current total 185000 records), lap time = 0.629
[2025-03-08 20:50:41] pool-1-thread-9 - 5000 records committed(current total 190000 records), lap time = 0.638
[2025-03-08 20:50:41] pool-1-thread-5 - 5000 records committed(current total 195000 records), lap time = 0.463
[2025-03-08 20:50:41] pool-1-thread-10 - 5000 records committed(current total 195000 records), lap time = 0.459
[2025-03-08 20:50:41] pool-1-thread-6 - 5000 records committed(current total 195000 records), lap time = 0.469
[2025-03-08 20:50:41] pool-1-thread-1 - 5000 records committed(current total 190000 records), lap time = 0.456
[2025-03-08 20:50:41] pool-1-thread-2 - 5000 records committed(current total 190000 records), lap time = 0.455
[2025-03-08 20:50:41] pool-1-thread-3 - 5000 records committed(current total 195000 records), lap time = 0.470
[2025-03-08 20:50:41] pool-1-thread-7 - 5000 records committed(current total 195000 records), lap time = 0.466
[2025-03-08 20:50:41] pool-1-thread-4 - 5000 records committed(current total 190000 records), lap time = 0.518
[2025-03-08 20:50:41] pool-1-thread-8 - 5000 records committed(current total 190000 records), lap time = 0.537
[2025-03-08 20:50:41] pool-1-thread-9 - 5000 records committed(current total 195000 records), lap time = 0.529
[2025-03-08 20:50:42] pool-1-thread-5 - 5000 records committed(current total 200000 records), lap time = 0.616
[2025-03-08 20:50:42] pool-1-thread-10 - 5000 records committed(current total 200000 records), lap time = 0.625
[2025-03-08 20:50:42] pool-1-thread-1 - 5000 records committed(current total 195000 records), lap time = 0.625
[2025-03-08 20:50:42] pool-1-thread-6 - 5000 records committed(current total 200000 records), lap time = 0.643
[2025-03-08 20:50:42] pool-1-thread-2 - 5000 records committed(current total 195000 records), lap time = 0.626
[2025-03-08 20:50:42] pool-1-thread-3 - 5000 records committed(current total 200000 records), lap time = 0.627
[2025-03-08 20:50:42] pool-1-thread-7 - 5000 records committed(current total 200000 records), lap time = 0.619
[2025-03-08 20:50:42] pool-1-thread-4 - 5000 records committed(current total 195000 records), lap time = 0.557
[2025-03-08 20:50:42] pool-1-thread-9 - 5000 records committed(current total 200000 records), lap time = 0.553
[2025-03-08 20:50:42] pool-1-thread-8 - 5000 records committed(current total 195000 records), lap time = 0.560
[2025-03-08 20:50:42] pool-1-thread-5 - 5000 records committed(current total 205000 records), lap time = 0.475
[2025-03-08 20:50:42] pool-1-thread-10 - 5000 records committed(current total 205000 records), lap time = 0.457
[2025-03-08 20:50:42] pool-1-thread-1 - 5000 records committed(current total 200000 records), lap time = 0.448
[2025-03-08 20:50:42] pool-1-thread-2 - 5000 records committed(current total 200000 records), lap time = 0.439
[2025-03-08 20:50:42] pool-1-thread-6 - 5000 records committed(current total 205000 records), lap time = 0.452
[2025-03-08 20:50:42] pool-1-thread-3 - 5000 records committed(current total 205000 records), lap time = 0.476
[2025-03-08 20:50:42] pool-1-thread-4 - 5000 records committed(current total 200000 records), lap time = 0.467
[2025-03-08 20:50:42] pool-1-thread-7 - 5000 records committed(current total 205000 records), lap time = 0.473
[2025-03-08 20:50:42] pool-1-thread-9 - 5000 records committed(current total 205000 records), lap time = 0.466
[2025-03-08 20:50:42] pool-1-thread-8 - 5000 records committed(current total 200000 records), lap time = 0.465
[2025-03-08 20:50:43] pool-1-thread-5 - 5000 records committed(current total 210000 records), lap time = 0.505
[2025-03-08 20:50:43] pool-1-thread-10 - 5000 records committed(current total 210000 records), lap time = 0.511
[2025-03-08 20:50:43] pool-1-thread-1 - 5000 records committed(current total 205000 records), lap time = 0.492
[2025-03-08 20:50:43] pool-1-thread-2 - 5000 records committed(current total 205000 records), lap time = 0.499
[2025-03-08 20:50:43] pool-1-thread-6 - 5000 records committed(current total 210000 records), lap time = 0.498
[2025-03-08 20:50:43] pool-1-thread-4 - 5000 records committed(current total 205000 records), lap time = 0.482
[2025-03-08 20:50:43] pool-1-thread-3 - 5000 records committed(current total 210000 records), lap time = 0.497
[2025-03-08 20:50:43] pool-1-thread-7 - 5000 records committed(current total 210000 records), lap time = 0.507
[2025-03-08 20:50:43] pool-1-thread-9 - 5000 records committed(current total 210000 records), lap time = 0.505
[2025-03-08 20:50:43] pool-1-thread-8 - 5000 records committed(current total 205000 records), lap time = 0.505
[2025-03-08 20:50:43] pool-1-thread-5 - 5000 records committed(current total 215000 records), lap time = 0.526
[2025-03-08 20:50:43] pool-1-thread-10 - 5000 records committed(current total 215000 records), lap time = 0.518
[2025-03-08 20:50:43] pool-1-thread-1 - 5000 records committed(current total 210000 records), lap time = 0.465
[2025-03-08 20:50:43] pool-1-thread-2 - 5000 records committed(current total 210000 records), lap time = 0.485
[2025-03-08 20:50:43] pool-1-thread-6 - 5000 records committed(current total 215000 records), lap time = 0.491
[2025-03-08 20:50:43] pool-1-thread-4 - 5000 records committed(current total 210000 records), lap time = 0.484
[2025-03-08 20:50:43] pool-1-thread-3 - 5000 records committed(current total 215000 records), lap time = 0.524
[2025-03-08 20:50:43] pool-1-thread-9 - 5000 records committed(current total 215000 records), lap time = 0.528
[2025-03-08 20:50:43] pool-1-thread-7 - 5000 records committed(current total 215000 records), lap time = 0.538
[2025-03-08 20:50:43] pool-1-thread-8 - 5000 records committed(current total 210000 records), lap time = 0.541
[2025-03-08 20:50:44] pool-1-thread-10 - 5000 records committed(current total 220000 records), lap time = 0.582
[2025-03-08 20:50:44] pool-1-thread-1 - 5000 records committed(current total 215000 records), lap time = 0.592
[2025-03-08 20:50:44] pool-1-thread-5 - 5000 records committed(current total 220000 records), lap time = 0.613
[2025-03-08 20:50:44] pool-1-thread-6 - 5000 records committed(current total 220000 records), lap time = 0.554
[2025-03-08 20:50:44] pool-1-thread-2 - 5000 records committed(current total 215000 records), lap time = 0.570
[2025-03-08 20:50:44] pool-1-thread-4 - 5000 records committed(current total 215000 records), lap time = 0.545
[2025-03-08 20:50:44] pool-1-thread-3 - 5000 records committed(current total 220000 records), lap time = 0.511
[2025-03-08 20:50:44] pool-1-thread-7 - 5000 records committed(current total 220000 records), lap time = 0.554
[2025-03-08 20:50:44] pool-1-thread-9 - 5000 records committed(current total 220000 records), lap time = 0.568
[2025-03-08 20:50:44] pool-1-thread-8 - 5000 records committed(current total 215000 records), lap time = 0.552
[2025-03-08 20:50:44] pool-1-thread-10 - 5000 records committed(current total 225000 records), lap time = 0.687
[2025-03-08 20:50:44] pool-1-thread-5 - 5000 records committed(current total 225000 records), lap time = 0.678
[2025-03-08 20:50:45] pool-1-thread-1 - 5000 records committed(current total 220000 records), lap time = 0.693
[2025-03-08 20:50:45] pool-1-thread-4 - 5000 records committed(current total 220000 records), lap time = 0.674
[2025-03-08 20:50:45] pool-1-thread-6 - 5000 records committed(current total 225000 records), lap time = 0.694
[2025-03-08 20:50:45] pool-1-thread-2 - 5000 records committed(current total 220000 records), lap time = 0.694
[2025-03-08 20:50:45] pool-1-thread-3 - 5000 records committed(current total 225000 records), lap time = 0.680
[2025-03-08 20:50:45] pool-1-thread-7 - 5000 records committed(current total 225000 records), lap time = 0.665
[2025-03-08 20:50:45] pool-1-thread-9 - 5000 records committed(current total 225000 records), lap time = 0.672
[2025-03-08 20:50:45] pool-1-thread-8 - 5000 records committed(current total 220000 records), lap time = 0.673
[2025-03-08 20:50:45] pool-1-thread-10 - 5000 records committed(current total 230000 records), lap time = 0.576
[2025-03-08 20:50:45] pool-1-thread-5 - 5000 records committed(current total 230000 records), lap time = 0.586
[2025-03-08 20:50:45] pool-1-thread-1 - 5000 records committed(current total 225000 records), lap time = 0.588
[2025-03-08 20:50:45] pool-1-thread-4 - 5000 records committed(current total 225000 records), lap time = 0.590
[2025-03-08 20:50:45] pool-1-thread-6 - 5000 records committed(current total 230000 records), lap time = 0.583
[2025-03-08 20:50:45] pool-1-thread-2 - 5000 records committed(current total 225000 records), lap time = 0.582
[2025-03-08 20:50:45] pool-1-thread-3 - 5000 records committed(current total 230000 records), lap time = 0.583
[2025-03-08 20:50:45] pool-1-thread-7 - 5000 records committed(current total 230000 records), lap time = 0.570
[2025-03-08 20:50:45] pool-1-thread-8 - 5000 records committed(current total 225000 records), lap time = 0.841
[2025-03-08 20:50:45] pool-1-thread-9 - 5000 records committed(current total 230000 records), lap time = 0.859
[2025-03-08 20:50:46] pool-1-thread-10 - 5000 records committed(current total 235000 records), lap time = 0.776
[2025-03-08 20:50:46] pool-1-thread-1 - 5000 records committed(current total 230000 records), lap time = 0.787
[2025-03-08 20:50:46] pool-1-thread-5 - 5000 records committed(current total 235000 records), lap time = 0.800
[2025-03-08 20:50:46] pool-1-thread-6 - 5000 records committed(current total 235000 records), lap time = 0.798
[2025-03-08 20:50:46] pool-1-thread-3 - 5000 records committed(current total 235000 records), lap time = 0.790
[2025-03-08 20:50:46] pool-1-thread-4 - 5000 records committed(current total 230000 records), lap time = 0.804
[2025-03-08 20:50:46] pool-1-thread-2 - 5000 records committed(current total 230000 records), lap time = 0.805
[2025-03-08 20:50:46] pool-1-thread-7 - 5000 records committed(current total 235000 records), lap time = 0.757
[2025-03-08 20:50:46] pool-1-thread-9 - 5000 records committed(current total 235000 records), lap time = 0.631
[2025-03-08 20:50:46] pool-1-thread-8 - 5000 records committed(current total 230000 records), lap time = 0.655
[2025-03-08 20:50:46] pool-1-thread-10 - 5000 records committed(current total 240000 records), lap time = 0.564
[2025-03-08 20:50:46] pool-1-thread-1 - 5000 records committed(current total 235000 records), lap time = 0.548
[2025-03-08 20:50:46] pool-1-thread-5 - 5000 records committed(current total 240000 records), lap time = 0.554
[2025-03-08 20:50:47] pool-1-thread-6 - 5000 records committed(current total 240000 records), lap time = 0.608
[2025-03-08 20:50:47] pool-1-thread-3 - 5000 records committed(current total 240000 records), lap time = 0.615
[2025-03-08 20:50:47] pool-1-thread-7 - 5000 records committed(current total 240000 records), lap time = 0.611
[2025-03-08 20:50:47] pool-1-thread-4 - 5000 records committed(current total 235000 records), lap time = 0.624
[2025-03-08 20:50:47] pool-1-thread-2 - 5000 records committed(current total 235000 records), lap time = 0.623
[2025-03-08 20:50:47] pool-1-thread-9 - 5000 records committed(current total 240000 records), lap time = 0.642
[2025-03-08 20:50:47] pool-1-thread-8 - 5000 records committed(current total 235000 records), lap time = 0.638
[2025-03-08 20:50:47] pool-1-thread-10 - 5000 records committed(current total 245000 records), lap time = 0.562
[2025-03-08 20:50:47] pool-1-thread-1 - 5000 records committed(current total 240000 records), lap time = 0.550
[2025-03-08 20:50:47] pool-1-thread-5 - 5000 records committed(current total 245000 records), lap time = 0.550
[2025-03-08 20:50:47] pool-1-thread-6 - 5000 records committed(current total 245000 records), lap time = 0.518
[2025-03-08 20:50:47] pool-1-thread-3 - 5000 records committed(current total 245000 records), lap time = 0.520
[2025-03-08 20:50:47] pool-1-thread-4 - 5000 records committed(current total 240000 records), lap time = 0.534
[2025-03-08 20:50:47] pool-1-thread-7 - 5000 records committed(current total 245000 records), lap time = 0.560
[2025-03-08 20:50:47] pool-1-thread-2 - 5000 records committed(current total 240000 records), lap time = 0.565
[2025-03-08 20:50:47] pool-1-thread-9 - 5000 records committed(current total 245000 records), lap time = 0.558
[2025-03-08 20:50:47] pool-1-thread-8 - 5000 records committed(current total 240000 records), lap time = 0.604
[2025-03-08 20:50:48] pool-1-thread-10 - 5000 records committed(current total 250000 records), lap time = 0.751
[2025-03-08 20:50:48] pool-1-thread-1 - 5000 records committed(current total 245000 records), lap time = 0.927
[2025-03-08 20:50:48] pool-1-thread-2 - 5000 records committed(current total 245000 records), lap time = 0.834
[2025-03-08 20:50:48] pool-1-thread-7 - 5000 records committed(current total 250000 records), lap time = 0.845
[2025-03-08 20:50:48] pool-1-thread-3 - 5000 records committed(current total 250000 records), lap time = 0.894
[2025-03-08 20:50:48] pool-1-thread-5 - 5000 records committed(current total 250000 records), lap time = 0.943
[2025-03-08 20:50:48] pool-1-thread-8 - 5000 records committed(current total 245000 records), lap time = 0.584
[2025-03-08 20:50:48] pool-1-thread-6 - 5000 records committed(current total 250000 records), lap time = 0.910
[2025-03-08 20:50:48] pool-1-thread-4 - 5000 records committed(current total 245000 records), lap time = 0.871
[2025-03-08 20:50:48] pool-1-thread-9 - 5000 records committed(current total 250000 records), lap time = 0.640
[2025-03-08 20:50:48] pool-1-thread-10 - 5000 records committed(current total 255000 records), lap time = 0.365
[2025-03-08 20:50:49] pool-1-thread-1 - 5000 records committed(current total 250000 records), lap time = 0.622
[2025-03-08 20:50:49] pool-1-thread-4 - 5000 records committed(current total 250000 records), lap time = 0.648
[2025-03-08 20:50:49] pool-1-thread-8 - 5000 records committed(current total 250000 records), lap time = 0.666
[2025-03-08 20:50:49] pool-1-thread-5 - 5000 records committed(current total 255000 records), lap time = 0.666
[2025-03-08 20:50:49] pool-1-thread-7 - 5000 records committed(current total 255000 records), lap time = 0.681
[2025-03-08 20:50:49] pool-1-thread-3 - 5000 records committed(current total 255000 records), lap time = 0.681
[2025-03-08 20:50:49] pool-1-thread-6 - 5000 records committed(current total 255000 records), lap time = 0.681
[2025-03-08 20:50:49] pool-1-thread-2 - 5000 records committed(current total 250000 records), lap time = 0.682
[2025-03-08 20:50:49] pool-1-thread-9 - 5000 records committed(current total 255000 records), lap time = 0.686
[2025-03-08 20:50:49] pool-1-thread-10 - 5000 records committed(current total 260000 records), lap time = 0.609
[2025-03-08 20:50:49] pool-1-thread-1 - 5000 records committed(current total 255000 records), lap time = 0.555
[2025-03-08 20:50:49] pool-1-thread-4 - 5000 records committed(current total 255000 records), lap time = 0.561
[2025-03-08 20:50:49] pool-1-thread-8 - 5000 records committed(current total 255000 records), lap time = 0.557
[2025-03-08 20:50:49] pool-1-thread-5 - 5000 records committed(current total 260000 records), lap time = 0.577
[2025-03-08 20:50:49] pool-1-thread-7 - 5000 records committed(current total 260000 records), lap time = 0.573
[2025-03-08 20:50:49] pool-1-thread-9 - 5000 records committed(current total 260000 records), lap time = 0.577
[2025-03-08 20:50:49] pool-1-thread-3 - 5000 records committed(current total 260000 records), lap time = 0.583
[2025-03-08 20:50:49] pool-1-thread-6 - 5000 records committed(current total 260000 records), lap time = 0.595
[2025-03-08 20:50:49] pool-1-thread-2 - 5000 records committed(current total 255000 records), lap time = 0.632
[2025-03-08 20:50:49] pool-1-thread-10 - 5000 records committed(current total 265000 records), lap time = 0.691
[2025-03-08 20:50:50] pool-1-thread-1 - 5000 records committed(current total 260000 records), lap time = 0.822
[2025-03-08 20:50:50] pool-1-thread-7 - 5000 records committed(current total 265000 records), lap time = 0.737
[2025-03-08 20:50:50] pool-1-thread-5 - 5000 records committed(current total 265000 records), lap time = 0.748
[2025-03-08 20:50:50] pool-1-thread-9 - 5000 records committed(current total 265000 records), lap time = 0.727
[2025-03-08 20:50:50] pool-1-thread-2 - 5000 records committed(current total 260000 records), lap time = 0.678
[2025-03-08 20:50:50] pool-1-thread-10 - 5000 records committed(current total 270000 records), lap time = 0.540
[2025-03-08 20:50:50] pool-1-thread-4 - 5000 records committed(current total 260000 records), lap time = 0.781
[2025-03-08 20:50:50] pool-1-thread-8 - 5000 records committed(current total 260000 records), lap time = 0.769
[2025-03-08 20:50:50] pool-1-thread-6 - 5000 records committed(current total 265000 records), lap time = 0.715
[2025-03-08 20:50:50] pool-1-thread-3 - 5000 records committed(current total 265000 records), lap time = 0.728
[2025-03-08 20:50:51] pool-1-thread-1 - 5000 records committed(current total 265000 records), lap time = 0.726
[2025-03-08 20:50:51] pool-1-thread-8 - 5000 records committed(current total 265000 records), lap time = 0.748
[2025-03-08 20:50:51] pool-1-thread-10 - 5000 records committed(current total 275000 records), lap time = 0.756
[2025-03-08 20:50:51] pool-1-thread-9 - 5000 records committed(current total 270000 records), lap time = 0.763
[2025-03-08 20:50:51] pool-1-thread-5 - 5000 records committed(current total 270000 records), lap time = 0.763
[2025-03-08 20:50:51] pool-1-thread-2 - 5000 records committed(current total 265000 records), lap time = 0.763
[2025-03-08 20:50:51] pool-1-thread-4 - 5000 records committed(current total 265000 records), lap time = 0.763
[2025-03-08 20:50:51] pool-1-thread-6 - 5000 records committed(current total 270000 records), lap time = 0.769
[2025-03-08 20:50:51] pool-1-thread-3 - 5000 records committed(current total 270000 records), lap time = 0.769
[2025-03-08 20:50:51] pool-1-thread-7 - 5000 records committed(current total 270000 records), lap time = 0.771
[2025-03-08 20:50:51] pool-1-thread-1 - 5000 records committed(current total 270000 records), lap time = 0.622
[2025-03-08 20:50:51] pool-1-thread-8 - 5000 records committed(current total 270000 records), lap time = 0.683
[2025-03-08 20:50:51] pool-1-thread-4 - 5000 records committed(current total 270000 records), lap time = 0.676
[2025-03-08 20:50:51] pool-1-thread-10 - 5000 records committed(current total 280000 records), lap time = 0.688
[2025-03-08 20:50:51] pool-1-thread-2 - 5000 records committed(current total 270000 records), lap time = 0.688
[2025-03-08 20:50:51] pool-1-thread-9 - 5000 records committed(current total 275000 records), lap time = 0.688
[2025-03-08 20:50:51] pool-1-thread-3 - 5000 records committed(current total 275000 records), lap time = 0.692
[2025-03-08 20:50:51] pool-1-thread-6 - 5000 records committed(current total 275000 records), lap time = 0.692
[2025-03-08 20:50:51] pool-1-thread-5 - 5000 records committed(current total 275000 records), lap time = 0.706
[2025-03-08 20:50:51] pool-1-thread-7 - 5000 records committed(current total 275000 records), lap time = 0.698
[2025-03-08 20:50:52] pool-1-thread-1 - 5000 records committed(current total 275000 records), lap time = 0.755
[2025-03-08 20:50:52] pool-1-thread-7 - 5000 records committed(current total 280000 records), lap time = 0.640
[2025-03-08 20:50:52] pool-1-thread-2 - 5000 records committed(current total 275000 records), lap time = 0.658
[2025-03-08 20:50:52] pool-1-thread-10 - 5000 records committed(current total 285000 records), lap time = 0.666
[2025-03-08 20:50:52] pool-1-thread-5 - 5000 records committed(current total 280000 records), lap time = 0.640
[2025-03-08 20:50:52] pool-1-thread-3 - 5000 records committed(current total 280000 records), lap time = 0.647
[2025-03-08 20:50:52] pool-1-thread-8 - 5000 records committed(current total 275000 records), lap time = 0.678
[2025-03-08 20:50:52] pool-1-thread-9 - 5000 records committed(current total 280000 records), lap time = 0.658
[2025-03-08 20:50:52] pool-1-thread-6 - 5000 records committed(current total 280000 records), lap time = 0.648
[2025-03-08 20:50:52] pool-1-thread-4 - 5000 records committed(current total 275000 records), lap time = 0.670
[2025-03-08 20:50:53] pool-1-thread-1 - 5000 records committed(current total 280000 records), lap time = 0.623
[2025-03-08 20:50:53] pool-1-thread-2 - 5000 records committed(current total 280000 records), lap time = 0.639
[2025-03-08 20:50:53] pool-1-thread-8 - 5000 records committed(current total 280000 records), lap time = 0.646
[2025-03-08 20:50:53] pool-1-thread-5 - 5000 records committed(current total 285000 records), lap time = 0.655
[2025-03-08 20:50:53] pool-1-thread-3 - 5000 records committed(current total 285000 records), lap time = 0.663
[2025-03-08 20:50:53] pool-1-thread-4 - 5000 records committed(current total 280000 records), lap time = 0.663
[2025-03-08 20:50:53] pool-1-thread-6 - 5000 records committed(current total 285000 records), lap time = 0.663
[2025-03-08 20:50:53] pool-1-thread-7 - 5000 records committed(current total 285000 records), lap time = 0.663
[2025-03-08 20:50:53] pool-1-thread-9 - 5000 records committed(current total 285000 records), lap time = 0.663
[2025-03-08 20:50:53] pool-1-thread-10 - 5000 records committed(current total 290000 records), lap time = 0.669
[2025-03-08 20:50:53] pool-1-thread-1 - 5000 records committed(current total 285000 records), lap time = 0.376
[2025-03-08 20:50:53] pool-1-thread-2 - 5000 records committed(current total 285000 records), lap time = 0.374
[2025-03-08 20:50:53] pool-1-thread-8 - 5000 records committed(current total 285000 records), lap time = 0.373
[2025-03-08 20:50:53] pool-1-thread-5 - 5000 records committed(current total 290000 records), lap time = 0.376
[2025-03-08 20:50:53] pool-1-thread-4 - 5000 records committed(current total 285000 records), lap time = 0.408
[2025-03-08 20:50:53] pool-1-thread-6 - 5000 records committed(current total 290000 records), lap time = 0.415
[2025-03-08 20:50:53] pool-1-thread-3 - 5000 records committed(current total 290000 records), lap time = 0.420
[2025-03-08 20:50:53] pool-1-thread-7 - 5000 records committed(current total 290000 records), lap time = 0.431
[2025-03-08 20:50:53] pool-1-thread-9 - 5000 records committed(current total 290000 records), lap time = 0.442
[2025-03-08 20:50:53] pool-1-thread-10 - 5000 records committed(current total 295000 records), lap time = 0.435
[2025-03-08 20:50:54] pool-1-thread-1 - 5000 records committed(current total 290000 records), lap time = 0.677
[2025-03-08 20:50:54] pool-1-thread-2 - 5000 records committed(current total 290000 records), lap time = 0.689
[2025-03-08 20:50:54] pool-1-thread-8 - 5000 records committed(current total 290000 records), lap time = 0.695
[2025-03-08 20:50:54] pool-1-thread-5 - 5000 records committed(current total 295000 records), lap time = 0.684
[2025-03-08 20:50:54] pool-1-thread-6 - 5000 records committed(current total 295000 records), lap time = 0.662
[2025-03-08 20:50:54] pool-1-thread-4 - 5000 records committed(current total 290000 records), lap time = 0.681
[2025-03-08 20:50:54] pool-1-thread-3 - 5000 records committed(current total 295000 records), lap time = 0.700
[2025-03-08 20:50:54] pool-1-thread-7 - 5000 records committed(current total 295000 records), lap time = 0.705
[2025-03-08 20:50:54] pool-1-thread-9 - 5000 records committed(current total 295000 records), lap time = 0.705
[2025-03-08 20:50:54] pool-1-thread-10 - 5000 records committed(current total 300000 records), lap time = 0.705
[2025-03-08 20:50:54] pool-1-thread-1 - 5000 records committed(current total 295000 records), lap time = 0.695
[2025-03-08 20:50:54] pool-1-thread-5 - 5000 records committed(current total 300000 records), lap time = 0.682
[2025-03-08 20:50:54] pool-1-thread-8 - 5000 records committed(current total 295000 records), lap time = 0.691
[2025-03-08 20:50:54] pool-1-thread-2 - 5000 records committed(current total 295000 records), lap time = 0.711
[2025-03-08 20:50:54] pool-1-thread-6 - 5000 records committed(current total 300000 records), lap time = 0.675
[2025-03-08 20:50:54] pool-1-thread-4 - 5000 records committed(current total 295000 records), lap time = 0.668
[2025-03-08 20:50:54] pool-1-thread-3 - 5000 records committed(current total 300000 records), lap time = 0.646
[2025-03-08 20:50:54] pool-1-thread-10 - 5000 records committed(current total 305000 records), lap time = 0.653
[2025-03-08 20:50:55] pool-1-thread-7 - 5000 records committed(current total 300000 records), lap time = 0.685
[2025-03-08 20:50:55] pool-1-thread-9 - 5000 records committed(current total 300000 records), lap time = 0.897
[2025-03-08 20:50:55] pool-1-thread-1 - 5000 records committed(current total 300000 records), lap time = 0.631
[2025-03-08 20:50:55] pool-1-thread-5 - 5000 records committed(current total 305000 records), lap time = 0.636
[2025-03-08 20:50:55] pool-1-thread-8 - 5000 records committed(current total 300000 records), lap time = 0.652
[2025-03-08 20:50:55] pool-1-thread-2 - 5000 records committed(current total 300000 records), lap time = 0.650
[2025-03-08 20:50:55] pool-1-thread-6 - 5000 records committed(current total 305000 records), lap time = 0.657
[2025-03-08 20:50:55] pool-1-thread-4 - 5000 records committed(current total 300000 records), lap time = 0.657
[2025-03-08 20:50:55] pool-1-thread-3 - 5000 records committed(current total 305000 records), lap time = 0.659
[2025-03-08 20:50:55] pool-1-thread-10 - 5000 records committed(current total 310000 records), lap time = 0.634
[2025-03-08 20:50:55] pool-1-thread-7 - 5000 records committed(current total 305000 records), lap time = 0.624
[2025-03-08 20:50:55] pool-1-thread-9 - 5000 records committed(current total 305000 records), lap time = 0.718
[2025-03-08 20:50:56] pool-1-thread-1 - 5000 records committed(current total 305000 records), lap time = 0.654
[2025-03-08 20:50:56] pool-1-thread-5 - 5000 records committed(current total 310000 records), lap time = 0.624
[2025-03-08 20:50:56] pool-1-thread-2 - 5000 records committed(current total 305000 records), lap time = 0.614
[2025-03-08 20:50:56] pool-1-thread-8 - 5000 records committed(current total 305000 records), lap time = 0.637
[2025-03-08 20:50:56] pool-1-thread-4 - 5000 records committed(current total 305000 records), lap time = 0.623
[2025-03-08 20:50:56] pool-1-thread-6 - 5000 records committed(current total 310000 records), lap time = 0.629
[2025-03-08 20:50:56] pool-1-thread-10 - 5000 records committed(current total 315000 records), lap time = 0.619
[2025-03-08 20:50:56] pool-1-thread-7 - 5000 records committed(current total 310000 records), lap time = 0.617
[2025-03-08 20:50:56] pool-1-thread-3 - 5000 records committed(current total 310000 records), lap time = 0.644
[2025-03-08 20:50:56] pool-1-thread-9 - 5000 records committed(current total 310000 records), lap time = 0.437
[2025-03-08 20:50:56] pool-1-thread-1 - 5000 records committed(current total 310000 records), lap time = 0.449
[2025-03-08 20:50:56] pool-1-thread-5 - 5000 records committed(current total 315000 records), lap time = 0.499
[2025-03-08 20:50:56] pool-1-thread-2 - 5000 records committed(current total 310000 records), lap time = 0.554
[2025-03-08 20:50:56] pool-1-thread-4 - 5000 records committed(current total 310000 records), lap time = 0.591
[2025-03-08 20:50:56] pool-1-thread-8 - 5000 records committed(current total 310000 records), lap time = 0.621
[2025-03-08 20:50:56] pool-1-thread-6 - 5000 records committed(current total 315000 records), lap time = 0.625
[2025-03-08 20:50:56] pool-1-thread-10 - 5000 records committed(current total 320000 records), lap time = 0.661
[2025-03-08 20:50:56] pool-1-thread-7 - 5000 records committed(current total 315000 records), lap time = 0.660
[2025-03-08 20:50:56] pool-1-thread-3 - 5000 records committed(current total 315000 records), lap time = 0.660
[2025-03-08 20:50:57] pool-1-thread-9 - 5000 records committed(current total 315000 records), lap time = 0.841
[2025-03-08 20:50:57] pool-1-thread-1 - 5000 records committed(current total 315000 records), lap time = 0.653
[2025-03-08 20:50:57] pool-1-thread-5 - 5000 records committed(current total 320000 records), lap time = 0.594
[2025-03-08 20:50:57] pool-1-thread-2 - 5000 records committed(current total 315000 records), lap time = 0.578
[2025-03-08 20:50:57] pool-1-thread-6 - 5000 records committed(current total 320000 records), lap time = 0.515
[2025-03-08 20:50:57] pool-1-thread-4 - 5000 records committed(current total 315000 records), lap time = 0.553
[2025-03-08 20:50:57] pool-1-thread-8 - 5000 records committed(current total 315000 records), lap time = 0.536
[2025-03-08 20:50:57] pool-1-thread-3 - 5000 records committed(current total 320000 records), lap time = 0.482
[2025-03-08 20:50:57] pool-1-thread-10 - 5000 records committed(current total 325000 records), lap time = 0.505
[2025-03-08 20:50:57] pool-1-thread-7 - 5000 records committed(current total 320000 records), lap time = 0.505
[2025-03-08 20:50:57] pool-1-thread-9 - 5000 records committed(current total 320000 records), lap time = 0.624
[2025-03-08 20:50:57] pool-1-thread-1 - 5000 records committed(current total 320000 records), lap time = 0.623
[2025-03-08 20:50:57] pool-1-thread-5 - 5000 records committed(current total 325000 records), lap time = 0.614
[2025-03-08 20:50:57] pool-1-thread-2 - 5000 records committed(current total 320000 records), lap time = 0.615
[2025-03-08 20:50:58] pool-1-thread-4 - 5000 records committed(current total 320000 records), lap time = 0.625
[2025-03-08 20:50:58] pool-1-thread-6 - 5000 records committed(current total 325000 records), lap time = 0.636
[2025-03-08 20:50:58] pool-1-thread-8 - 5000 records committed(current total 320000 records), lap time = 0.632
[2025-03-08 20:50:58] pool-1-thread-3 - 5000 records committed(current total 325000 records), lap time = 0.644
[2025-03-08 20:50:58] pool-1-thread-10 - 5000 records committed(current total 330000 records), lap time = 0.646
[2025-03-08 20:50:58] pool-1-thread-7 - 5000 records committed(current total 325000 records), lap time = 0.657
[2025-03-08 20:50:58] pool-1-thread-9 - 5000 records committed(current total 325000 records), lap time = 0.581
[2025-03-08 20:50:58] pool-1-thread-5 - 5000 records committed(current total 330000 records), lap time = 0.566
[2025-03-08 20:50:58] pool-1-thread-1 - 5000 records committed(current total 325000 records), lap time = 0.579
[2025-03-08 20:50:58] pool-1-thread-2 - 5000 records committed(current total 325000 records), lap time = 0.555
[2025-03-08 20:50:58] pool-1-thread-4 - 5000 records committed(current total 325000 records), lap time = 0.552
[2025-03-08 20:50:58] pool-1-thread-6 - 5000 records committed(current total 330000 records), lap time = 0.572
[2025-03-08 20:50:58] pool-1-thread-8 - 5000 records committed(current total 325000 records), lap time = 0.573
[2025-03-08 20:50:58] pool-1-thread-3 - 5000 records committed(current total 330000 records), lap time = 0.559
[2025-03-08 20:50:58] pool-1-thread-10 - 5000 records committed(current total 335000 records), lap time = 0.568
[2025-03-08 20:50:58] pool-1-thread-7 - 5000 records committed(current total 330000 records), lap time = 0.552
[2025-03-08 20:50:59] pool-1-thread-9 - 5000 records committed(current total 330000 records), lap time = 0.964
[2025-03-08 20:50:59] pool-1-thread-5 - 5000 records committed(current total 335000 records), lap time = 0.974
[2025-03-08 20:50:59] pool-1-thread-1 - 5000 records committed(current total 330000 records), lap time = 0.974
[2025-03-08 20:50:59] pool-1-thread-2 - 5000 records committed(current total 330000 records), lap time = 0.947
[2025-03-08 20:50:59] pool-1-thread-4 - 5000 records committed(current total 330000 records), lap time = 0.915
[2025-03-08 20:50:59] pool-1-thread-6 - 5000 records committed(current total 335000 records), lap time = 0.943
[2025-03-08 20:50:59] pool-1-thread-3 - 5000 records committed(current total 335000 records), lap time = 0.936
[2025-03-08 20:50:59] pool-1-thread-8 - 5000 records committed(current total 330000 records), lap time = 0.963
[2025-03-08 20:50:59] pool-1-thread-10 - 5000 records committed(current total 340000 records), lap time = 0.938
[2025-03-08 20:50:59] pool-1-thread-7 - 5000 records committed(current total 335000 records), lap time = 0.950
[2025-03-08 20:50:59] pool-1-thread-9 - 5000 records committed(current total 335000 records), lap time = 0.563
[2025-03-08 20:50:59] pool-1-thread-5 - 5000 records committed(current total 340000 records), lap time = 0.551
[2025-03-08 20:51:00] pool-1-thread-1 - 5000 records committed(current total 335000 records), lap time = 0.564
[2025-03-08 20:51:00] pool-1-thread-4 - 5000 records committed(current total 335000 records), lap time = 0.540
[2025-03-08 20:51:00] pool-1-thread-2 - 5000 records committed(current total 335000 records), lap time = 0.559
[2025-03-08 20:51:00] pool-1-thread-6 - 5000 records committed(current total 340000 records), lap time = 0.511
[2025-03-08 20:51:00] pool-1-thread-8 - 5000 records committed(current total 335000 records), lap time = 0.514
[2025-03-08 20:51:00] pool-1-thread-3 - 5000 records committed(current total 340000 records), lap time = 0.535
[2025-03-08 20:51:00] pool-1-thread-10 - 5000 records committed(current total 345000 records), lap time = 0.543
[2025-03-08 20:51:00] pool-1-thread-7 - 5000 records committed(current total 340000 records), lap time = 0.536
[2025-03-08 20:51:00] pool-1-thread-9 - 5000 records committed(current total 340000 records), lap time = 0.504
[2025-03-08 20:51:00] pool-1-thread-5 - 5000 records committed(current total 345000 records), lap time = 0.555
[2025-03-08 20:51:00] pool-1-thread-4 - 5000 records committed(current total 340000 records), lap time = 0.576
[2025-03-08 20:51:00] pool-1-thread-1 - 5000 records committed(current total 340000 records), lap time = 0.586
[2025-03-08 20:51:00] pool-1-thread-2 - 5000 records committed(current total 340000 records), lap time = 0.578
[2025-03-08 20:51:00] pool-1-thread-6 - 5000 records committed(current total 345000 records), lap time = 0.577
[2025-03-08 20:51:00] pool-1-thread-8 - 5000 records committed(current total 340000 records), lap time = 0.572
[2025-03-08 20:51:00] pool-1-thread-3 - 5000 records committed(current total 345000 records), lap time = 0.587
[2025-03-08 20:51:00] pool-1-thread-7 - 5000 records committed(current total 345000 records), lap time = 0.554
[2025-03-08 20:51:00] pool-1-thread-10 - 5000 records committed(current total 350000 records), lap time = 0.570
[2025-03-08 20:51:01] pool-1-thread-9 - 5000 records committed(current total 345000 records), lap time = 0.809
[2025-03-08 20:51:01] pool-1-thread-6 - 5000 records committed(current total 350000 records), lap time = 0.703
[2025-03-08 20:51:01] pool-1-thread-4 - 5000 records committed(current total 345000 records), lap time = 0.732
[2025-03-08 20:51:01] pool-1-thread-7 - 5000 records committed(current total 350000 records), lap time = 0.645
[2025-03-08 20:51:01] pool-1-thread-2 - 5000 records committed(current total 345000 records), lap time = 0.721
[2025-03-08 20:51:01] pool-1-thread-1 - 5000 records committed(current total 345000 records), lap time = 0.726
[2025-03-08 20:51:01] pool-1-thread-10 - 5000 records committed(current total 355000 records), lap time = 0.640
[2025-03-08 20:51:01] pool-1-thread-5 - 5000 records committed(current total 350000 records), lap time = 0.775
[2025-03-08 20:51:01] pool-1-thread-8 - 5000 records committed(current total 345000 records), lap time = 0.677
[2025-03-08 20:51:01] pool-1-thread-3 - 5000 records committed(current total 350000 records), lap time = 0.650
[2025-03-08 20:51:01] pool-1-thread-9 - 5000 records committed(current total 350000 records), lap time = 0.661
[2025-03-08 20:51:01] pool-1-thread-10 - 5000 records committed(current total 360000 records), lap time = 0.667
[2025-03-08 20:51:01] pool-1-thread-2 - 5000 records committed(current total 350000 records), lap time = 0.676
[2025-03-08 20:51:02] pool-1-thread-1 - 5000 records committed(current total 350000 records), lap time = 0.685
[2025-03-08 20:51:02] pool-1-thread-8 - 5000 records committed(current total 350000 records), lap time = 0.697
[2025-03-08 20:51:02] pool-1-thread-6 - 5000 records committed(current total 355000 records), lap time = 0.697
[2025-03-08 20:51:02] pool-1-thread-5 - 5000 records committed(current total 355000 records), lap time = 0.696
[2025-03-08 20:51:02] pool-1-thread-7 - 5000 records committed(current total 355000 records), lap time = 0.697
[2025-03-08 20:51:02] pool-1-thread-4 - 5000 records committed(current total 350000 records), lap time = 0.697
[2025-03-08 20:51:02] pool-1-thread-3 - 5000 records committed(current total 355000 records), lap time = 0.704
[2025-03-08 20:51:02] pool-1-thread-9 - 5000 records committed(current total 355000 records), lap time = 0.524
[2025-03-08 20:51:02] pool-1-thread-2 - 5000 records committed(current total 355000 records), lap time = 0.501
[2025-03-08 20:51:02] pool-1-thread-10 - 5000 records committed(current total 365000 records), lap time = 0.521
[2025-03-08 20:51:02] pool-1-thread-1 - 5000 records committed(current total 355000 records), lap time = 0.515
[2025-03-08 20:51:02] pool-1-thread-8 - 5000 records committed(current total 355000 records), lap time = 0.565
[2025-03-08 20:51:02] pool-1-thread-4 - 5000 records committed(current total 355000 records), lap time = 0.578
[2025-03-08 20:51:02] pool-1-thread-5 - 5000 records committed(current total 360000 records), lap time = 0.578
[2025-03-08 20:51:02] pool-1-thread-6 - 5000 records committed(current total 360000 records), lap time = 0.584
[2025-03-08 20:51:02] pool-1-thread-7 - 5000 records committed(current total 360000 records), lap time = 0.591
[2025-03-08 20:51:02] pool-1-thread-3 - 5000 records committed(current total 360000 records), lap time = 0.592
[2025-03-08 20:51:03] pool-1-thread-9 - 5000 records committed(current total 360000 records), lap time = 0.772
[2025-03-08 20:51:03] pool-1-thread-6 - 5000 records committed(current total 365000 records), lap time = 0.653
[2025-03-08 20:51:03] pool-1-thread-7 - 5000 records committed(current total 365000 records), lap time = 0.645
[2025-03-08 20:51:03] pool-1-thread-2 - 5000 records committed(current total 360000 records), lap time = 0.756
[2025-03-08 20:51:03] pool-1-thread-8 - 5000 records committed(current total 360000 records), lap time = 0.672
[2025-03-08 20:51:03] pool-1-thread-3 - 5000 records committed(current total 365000 records), lap time = 0.638
[2025-03-08 20:51:03] pool-1-thread-10 - 5000 records committed(current total 370000 records), lap time = 0.744
[2025-03-08 20:51:03] pool-1-thread-4 - 5000 records committed(current total 360000 records), lap time = 0.659
[2025-03-08 20:51:03] pool-1-thread-1 - 5000 records committed(current total 360000 records), lap time = 0.733
[2025-03-08 20:51:03] pool-1-thread-5 - 5000 records committed(current total 365000 records), lap time = 0.659
[2025-03-08 20:51:03] pool-1-thread-9 - 5000 records committed(current total 365000 records), lap time = 0.570
[2025-03-08 20:51:03] pool-1-thread-8 - 5000 records committed(current total 365000 records), lap time = 0.601
[2025-03-08 20:51:03] pool-1-thread-7 - 5000 records committed(current total 370000 records), lap time = 0.611
[2025-03-08 20:51:03] pool-1-thread-2 - 5000 records committed(current total 365000 records), lap time = 0.626
[2025-03-08 20:51:03] pool-1-thread-3 - 5000 records committed(current total 370000 records), lap time = 0.626
[2025-03-08 20:51:03] pool-1-thread-4 - 5000 records committed(current total 365000 records), lap time = 0.626
[2025-03-08 20:51:03] pool-1-thread-5 - 5000 records committed(current total 370000 records), lap time = 0.631
[2025-03-08 20:51:03] pool-1-thread-6 - 5000 records committed(current total 370000 records), lap time = 0.631
[2025-03-08 20:51:03] pool-1-thread-10 - 5000 records committed(current total 375000 records), lap time = 0.639
[2025-03-08 20:51:03] pool-1-thread-1 - 5000 records committed(current total 365000 records), lap time = 0.640
[2025-03-08 20:51:04] pool-1-thread-9 - 5000 records committed(current total 370000 records), lap time = 0.670
[2025-03-08 20:51:04] pool-1-thread-8 - 5000 records committed(current total 370000 records), lap time = 0.645
[2025-03-08 20:51:04] pool-1-thread-7 - 5000 records committed(current total 375000 records), lap time = 0.645
[2025-03-08 20:51:04] pool-1-thread-5 - 5000 records committed(current total 375000 records), lap time = 0.632
[2025-03-08 20:51:04] pool-1-thread-4 - 5000 records committed(current total 370000 records), lap time = 0.637
[2025-03-08 20:51:04] pool-1-thread-6 - 5000 records committed(current total 375000 records), lap time = 0.637
[2025-03-08 20:51:04] pool-1-thread-3 - 5000 records committed(current total 375000 records), lap time = 0.648
[2025-03-08 20:51:04] pool-1-thread-2 - 5000 records committed(current total 370000 records), lap time = 0.648
[2025-03-08 20:51:04] pool-1-thread-10 - 5000 records committed(current total 380000 records), lap time = 0.638
[2025-03-08 20:51:04] pool-1-thread-1 - 5000 records committed(current total 370000 records), lap time = 0.638
[2025-03-08 20:51:05] pool-1-thread-9 - 5000 records committed(current total 375000 records), lap time = 0.861
[2025-03-08 20:51:05] pool-1-thread-10 - 5000 records committed(current total 385000 records), lap time = 0.840
[2025-03-08 20:51:05] pool-1-thread-8 - 5000 records committed(current total 375000 records), lap time = 0.872
[2025-03-08 20:51:05] pool-1-thread-3 - 5000 records committed(current total 380000 records), lap time = 0.844
[2025-03-08 20:51:05] pool-1-thread-5 - 5000 records committed(current total 380000 records), lap time = 0.855
[2025-03-08 20:51:05] pool-1-thread-4 - 5000 records committed(current total 375000 records), lap time = 0.855
[2025-03-08 20:51:05] pool-1-thread-1 - 5000 records committed(current total 375000 records), lap time = 0.840
[2025-03-08 20:51:05] pool-1-thread-2 - 5000 records committed(current total 375000 records), lap time = 0.844
[2025-03-08 20:51:05] pool-1-thread-7 - 5000 records committed(current total 380000 records), lap time = 0.861
[2025-03-08 20:51:05] pool-1-thread-6 - 5000 records committed(current total 380000 records), lap time = 0.850
[2025-03-08 20:51:06] pool-1-thread-9 - 5000 records committed(current total 380000 records), lap time = 0.670
[2025-03-08 20:51:06] pool-1-thread-5 - 5000 records committed(current total 385000 records), lap time = 0.701
[2025-03-08 20:51:06] pool-1-thread-6 - 5000 records committed(current total 385000 records), lap time = 0.708
[2025-03-08 20:51:06] pool-1-thread-4 - 5000 records committed(current total 380000 records), lap time = 0.721
[2025-03-08 20:51:06] pool-1-thread-8 - 5000 records committed(current total 380000 records), lap time = 0.721
[2025-03-08 20:51:06] pool-1-thread-2 - 5000 records committed(current total 380000 records), lap time = 0.721
[2025-03-08 20:51:06] pool-1-thread-3 - 5000 records committed(current total 385000 records), lap time = 0.728
[2025-03-08 20:51:06] pool-1-thread-10 - 5000 records committed(current total 390000 records), lap time = 0.729
[2025-03-08 20:51:06] pool-1-thread-1 - 5000 records committed(current total 380000 records), lap time = 0.728
[2025-03-08 20:51:06] pool-1-thread-7 - 5000 records committed(current total 385000 records), lap time = 0.733
[2025-03-08 20:51:06] pool-1-thread-9 - 5000 records committed(current total 385000 records), lap time = 0.417
[2025-03-08 20:51:06] pool-1-thread-5 - 5000 records committed(current total 390000 records), lap time = 0.397
[2025-03-08 20:51:06] pool-1-thread-6 - 5000 records committed(current total 390000 records), lap time = 0.410
[2025-03-08 20:51:06] pool-1-thread-4 - 5000 records committed(current total 385000 records), lap time = 0.406
[2025-03-08 20:51:06] pool-1-thread-3 - 5000 records committed(current total 390000 records), lap time = 0.398
[2025-03-08 20:51:06] pool-1-thread-8 - 5000 records committed(current total 385000 records), lap time = 0.406
[2025-03-08 20:51:06] pool-1-thread-10 - 5000 records committed(current total 395000 records), lap time = 0.398
[2025-03-08 20:51:06] pool-1-thread-2 - 5000 records committed(current total 385000 records), lap time = 0.406
[2025-03-08 20:51:06] pool-1-thread-7 - 5000 records committed(current total 390000 records), lap time = 0.394
[2025-03-08 20:51:06] pool-1-thread-1 - 5000 records committed(current total 385000 records), lap time = 0.403
[2025-03-08 20:51:07] pool-1-thread-9 - 5000 records committed(current total 390000 records), lap time = 0.690
[2025-03-08 20:51:07] pool-1-thread-5 - 5000 records committed(current total 395000 records), lap time = 0.693
[2025-03-08 20:51:07] pool-1-thread-6 - 5000 records committed(current total 395000 records), lap time = 0.696
[2025-03-08 20:51:07] pool-1-thread-10 - 5000 records committed(current total 400000 records), lap time = 0.721
[2025-03-08 20:51:07] pool-1-thread-2 - 5000 records committed(current total 390000 records), lap time = 0.892
[2025-03-08 20:51:07] pool-1-thread-8 - 5000 records committed(current total 390000 records), lap time = 0.920
[2025-03-08 20:51:07] pool-1-thread-3 - 5000 records committed(current total 395000 records), lap time = 0.920
[2025-03-08 20:51:07] pool-1-thread-7 - 5000 records committed(current total 395000 records), lap time = 0.921
[2025-03-08 20:51:07] pool-1-thread-1 - 5000 records committed(current total 390000 records), lap time = 0.915
[2025-03-08 20:51:07] pool-1-thread-4 - 5000 records committed(current total 390000 records), lap time = 0.920
[2025-03-08 20:51:07] pool-1-thread-9 - 5000 records committed(current total 395000 records), lap time = 0.311
[2025-03-08 20:51:07] pool-1-thread-5 - 5000 records committed(current total 400000 records), lap time = 0.333
[2025-03-08 20:51:07] pool-1-thread-6 - 5000 records committed(current total 400000 records), lap time = 0.319
[2025-03-08 20:51:07] pool-1-thread-10 - 5000 records committed(current total 405000 records), lap time = 0.312
[2025-03-08 20:51:08] pool-1-thread-4 - 5000 records committed(current total 395000 records), lap time = 0.657
[2025-03-08 20:51:08] pool-1-thread-2 - 5000 records committed(current total 395000 records), lap time = 0.692
[2025-03-08 20:51:08] pool-1-thread-8 - 5000 records committed(current total 395000 records), lap time = 0.669
[2025-03-08 20:51:08] pool-1-thread-7 - 5000 records committed(current total 400000 records), lap time = 0.686
[2025-03-08 20:51:08] pool-1-thread-1 - 5000 records committed(current total 395000 records), lap time = 0.693
[2025-03-08 20:51:08] pool-1-thread-9 - 5000 records committed(current total 400000 records), lap time = 0.680
[2025-03-08 20:51:08] pool-1-thread-3 - 5000 records committed(current total 400000 records), lap time = 0.693
[2025-03-08 20:51:08] pool-1-thread-5 - 5000 records committed(current total 405000 records), lap time = 0.624
[2025-03-08 20:51:08] pool-1-thread-6 - 5000 records committed(current total 405000 records), lap time = 0.621
[2025-03-08 20:51:08] pool-1-thread-10 - 5000 records committed(current total 410000 records), lap time = 0.616
[2025-03-08 20:51:08] pool-1-thread-8 - 5000 records committed(current total 400000 records), lap time = 0.504
[2025-03-08 20:51:08] pool-1-thread-2 - 5000 records committed(current total 400000 records), lap time = 0.518
[2025-03-08 20:51:08] pool-1-thread-4 - 5000 records committed(current total 400000 records), lap time = 0.524
[2025-03-08 20:51:08] pool-1-thread-7 - 5000 records committed(current total 405000 records), lap time = 0.513
[2025-03-08 20:51:08] pool-1-thread-3 - 5000 records committed(current total 405000 records), lap time = 0.512
[2025-03-08 20:51:08] pool-1-thread-1 - 5000 records committed(current total 400000 records), lap time = 0.517
[2025-03-08 20:51:08] pool-1-thread-9 - 5000 records committed(current total 405000 records), lap time = 0.527
[2025-03-08 20:51:08] pool-1-thread-5 - 5000 records committed(current total 410000 records), lap time = 0.526
[2025-03-08 20:51:08] pool-1-thread-6 - 5000 records committed(current total 410000 records), lap time = 0.541
[2025-03-08 20:51:08] pool-1-thread-10 - 5000 records committed(current total 415000 records), lap time = 0.548
[2025-03-08 20:51:09] pool-1-thread-8 - 5000 records committed(current total 405000 records), lap time = 0.734
[2025-03-08 20:51:09] pool-1-thread-2 - 5000 records committed(current total 405000 records), lap time = 0.733
[2025-03-08 20:51:09] pool-1-thread-4 - 5000 records committed(current total 405000 records), lap time = 0.745
[2025-03-08 20:51:09] pool-1-thread-3 - 5000 records committed(current total 410000 records), lap time = 0.730
[2025-03-08 20:51:09] pool-1-thread-7 - 5000 records committed(current total 410000 records), lap time = 0.741
[2025-03-08 20:51:09] pool-1-thread-9 - 5000 records committed(current total 410000 records), lap time = 0.721
[2025-03-08 20:51:09] pool-1-thread-1 - 5000 records committed(current total 405000 records), lap time = 0.736
[2025-03-08 20:51:09] pool-1-thread-6 - 5000 records committed(current total 415000 records), lap time = 0.703
[2025-03-08 20:51:09] pool-1-thread-5 - 5000 records committed(current total 415000 records), lap time = 0.729
[2025-03-08 20:51:09] pool-1-thread-10 - 5000 records committed(current total 420000 records), lap time = 0.699
[2025-03-08 20:51:09] pool-1-thread-2 - 5000 records committed(current total 410000 records), lap time = 0.524
[2025-03-08 20:51:09] pool-1-thread-8 - 5000 records committed(current total 410000 records), lap time = 0.549
[2025-03-08 20:51:09] pool-1-thread-4 - 5000 records committed(current total 410000 records), lap time = 0.566
[2025-03-08 20:51:09] pool-1-thread-3 - 5000 records committed(current total 415000 records), lap time = 0.571
[2025-03-08 20:51:09] pool-1-thread-7 - 5000 records committed(current total 415000 records), lap time = 0.589
[2025-03-08 20:51:09] pool-1-thread-1 - 5000 records committed(current total 410000 records), lap time = 0.589
[2025-03-08 20:51:09] pool-1-thread-9 - 5000 records committed(current total 415000 records), lap time = 0.604
[2025-03-08 20:51:09] pool-1-thread-5 - 5000 records committed(current total 420000 records), lap time = 0.599
[2025-03-08 20:51:09] pool-1-thread-6 - 5000 records committed(current total 420000 records), lap time = 0.612
[2025-03-08 20:51:09] pool-1-thread-10 - 5000 records committed(current total 425000 records), lap time = 0.593
[2025-03-08 20:51:10] pool-1-thread-2 - 5000 records committed(current total 415000 records), lap time = 0.578
[2025-03-08 20:51:10] pool-1-thread-8 - 5000 records committed(current total 415000 records), lap time = 0.572
[2025-03-08 20:51:10] pool-1-thread-4 - 5000 records committed(current total 415000 records), lap time = 0.551
[2025-03-08 20:51:10] pool-1-thread-3 - 5000 records committed(current total 420000 records), lap time = 0.548
[2025-03-08 20:51:10] pool-1-thread-7 - 5000 records committed(current total 420000 records), lap time = 0.578
[2025-03-08 20:51:10] pool-1-thread-1 - 5000 records committed(current total 415000 records), lap time = 0.590
[2025-03-08 20:51:10] pool-1-thread-9 - 5000 records committed(current total 420000 records), lap time = 0.596
[2025-03-08 20:51:10] pool-1-thread-5 - 5000 records committed(current total 425000 records), lap time = 0.607
[2025-03-08 20:51:10] pool-1-thread-10 - 5000 records committed(current total 430000 records), lap time = 0.601
[2025-03-08 20:51:10] pool-1-thread-6 - 5000 records committed(current total 425000 records), lap time = 0.613
[2025-03-08 20:51:11] pool-1-thread-8 - 5000 records committed(current total 420000 records), lap time = 0.686
[2025-03-08 20:51:11] pool-1-thread-2 - 5000 records committed(current total 420000 records), lap time = 0.703
[2025-03-08 20:51:11] pool-1-thread-4 - 5000 records committed(current total 420000 records), lap time = 0.694
[2025-03-08 20:51:11] pool-1-thread-3 - 5000 records committed(current total 425000 records), lap time = 0.697
[2025-03-08 20:51:11] pool-1-thread-1 - 5000 records committed(current total 420000 records), lap time = 0.643
[2025-03-08 20:51:11] pool-1-thread-7 - 5000 records committed(current total 425000 records), lap time = 0.665
[2025-03-08 20:51:11] pool-1-thread-9 - 5000 records committed(current total 425000 records), lap time = 0.642
[2025-03-08 20:51:11] pool-1-thread-5 - 5000 records committed(current total 430000 records), lap time = 0.641
[2025-03-08 20:51:11] pool-1-thread-10 - 5000 records committed(current total 435000 records), lap time = 0.639
[2025-03-08 20:51:11] pool-1-thread-6 - 5000 records committed(current total 430000 records), lap time = 0.639
[2025-03-08 20:51:11] pool-1-thread-2 - 5000 records committed(current total 425000 records), lap time = 0.429
[2025-03-08 20:51:11] pool-1-thread-8 - 5000 records committed(current total 425000 records), lap time = 0.441
[2025-03-08 20:51:11] pool-1-thread-4 - 5000 records committed(current total 425000 records), lap time = 0.425
[2025-03-08 20:51:11] pool-1-thread-3 - 5000 records committed(current total 430000 records), lap time = 0.433
[2025-03-08 20:51:11] pool-1-thread-1 - 5000 records committed(current total 425000 records), lap time = 0.422
[2025-03-08 20:51:11] pool-1-thread-7 - 5000 records committed(current total 430000 records), lap time = 0.424
[2025-03-08 20:51:11] pool-1-thread-9 - 5000 records committed(current total 430000 records), lap time = 0.420
[2025-03-08 20:51:11] pool-1-thread-5 - 5000 records committed(current total 435000 records), lap time = 0.429
[2025-03-08 20:51:11] pool-1-thread-10 - 5000 records committed(current total 440000 records), lap time = 0.445
[2025-03-08 20:51:11] pool-1-thread-6 - 5000 records committed(current total 435000 records), lap time = 0.454
[2025-03-08 20:51:12] pool-1-thread-2 - 5000 records committed(current total 430000 records), lap time = 0.537
[2025-03-08 20:51:12] pool-1-thread-8 - 5000 records committed(current total 430000 records), lap time = 0.561
[2025-03-08 20:51:12] pool-1-thread-4 - 5000 records committed(current total 430000 records), lap time = 0.560
[2025-03-08 20:51:12] pool-1-thread-3 - 5000 records committed(current total 435000 records), lap time = 0.584
[2025-03-08 20:51:12] pool-1-thread-1 - 5000 records committed(current total 430000 records), lap time = 0.594
[2025-03-08 20:51:12] pool-1-thread-7 - 5000 records committed(current total 435000 records), lap time = 0.597
[2025-03-08 20:51:12] pool-1-thread-9 - 5000 records committed(current total 435000 records), lap time = 0.595
[2025-03-08 20:51:12] pool-1-thread-5 - 5000 records committed(current total 440000 records), lap time = 0.582
[2025-03-08 20:51:12] pool-1-thread-10 - 5000 records committed(current total 445000 records), lap time = 0.577
[2025-03-08 20:51:12] pool-1-thread-6 - 5000 records committed(current total 440000 records), lap time = 0.587
[2025-03-08 20:51:12] pool-1-thread-2 - 5000 records committed(current total 435000 records), lap time = 0.535
[2025-03-08 20:51:12] pool-1-thread-4 - 5000 records committed(current total 435000 records), lap time = 0.501
[2025-03-08 20:51:12] pool-1-thread-8 - 5000 records committed(current total 435000 records), lap time = 0.515
[2025-03-08 20:51:12] pool-1-thread-3 - 5000 records committed(current total 440000 records), lap time = 0.490
[2025-03-08 20:51:12] pool-1-thread-1 - 5000 records committed(current total 435000 records), lap time = 0.712
[2025-03-08 20:51:12] pool-1-thread-5 - 5000 records committed(current total 445000 records), lap time = 0.722
[2025-03-08 20:51:12] pool-1-thread-4 - 5000 records committed(current total 440000 records), lap time = 0.310
[2025-03-08 20:51:12] pool-1-thread-7 - 5000 records committed(current total 440000 records), lap time = 0.742
[2025-03-08 20:51:12] pool-1-thread-10 - 5000 records committed(current total 450000 records), lap time = 0.705
[2025-03-08 20:51:12] pool-1-thread-3 - 5000 records committed(current total 445000 records), lap time = 0.278
[2025-03-08 20:51:12] pool-1-thread-6 - 5000 records committed(current total 445000 records), lap time = 0.680
[2025-03-08 20:51:12] pool-1-thread-2 - 5000 records committed(current total 440000 records), lap time = 0.314
[2025-03-08 20:51:12] pool-1-thread-8 - 5000 records committed(current total 440000 records), lap time = 0.302
[2025-03-08 20:51:12] pool-1-thread-9 - 5000 records committed(current total 440000 records), lap time = 0.738
[2025-03-08 20:51:13] pool-1-thread-1 - 5000 records committed(current total 440000 records), lap time = 0.725
[2025-03-08 20:51:13] pool-1-thread-5 - 5000 records committed(current total 450000 records), lap time = 0.717
[2025-03-08 20:51:13] pool-1-thread-6 - 5000 records committed(current total 450000 records), lap time = 0.722
[2025-03-08 20:51:13] pool-1-thread-4 - 5000 records committed(current total 445000 records), lap time = 0.729
[2025-03-08 20:51:13] pool-1-thread-8 - 5000 records committed(current total 445000 records), lap time = 0.729
[2025-03-08 20:51:13] pool-1-thread-9 - 5000 records committed(current total 445000 records), lap time = 0.738
[2025-03-08 20:51:13] pool-1-thread-2 - 5000 records committed(current total 445000 records), lap time = 0.738
[2025-03-08 20:51:13] pool-1-thread-10 - 5000 records committed(current total 455000 records), lap time = 0.738
[2025-03-08 20:51:13] pool-1-thread-3 - 5000 records committed(current total 450000 records), lap time = 0.738
[2025-03-08 20:51:13] pool-1-thread-7 - 5000 records committed(current total 445000 records), lap time = 0.738
[2025-03-08 20:51:14] pool-1-thread-1 - 5000 records committed(current total 445000 records), lap time = 0.559
[2025-03-08 20:51:14] pool-1-thread-5 - 5000 records committed(current total 455000 records), lap time = 0.538
[2025-03-08 20:51:14] pool-1-thread-6 - 5000 records committed(current total 455000 records), lap time = 0.559
[2025-03-08 20:51:14] pool-1-thread-7 - 5000 records committed(current total 450000 records), lap time = 0.570
[2025-03-08 20:51:14] pool-1-thread-8 - 5000 records committed(current total 450000 records), lap time = 0.588
[2025-03-08 20:51:14] pool-1-thread-2 - 5000 records committed(current total 450000 records), lap time = 0.594
[2025-03-08 20:51:14] pool-1-thread-9 - 5000 records committed(current total 450000 records), lap time = 0.594
[2025-03-08 20:51:14] pool-1-thread-4 - 5000 records committed(current total 450000 records), lap time = 0.604
[2025-03-08 20:51:14] pool-1-thread-10 - 5000 records committed(current total 460000 records), lap time = 0.600
[2025-03-08 20:51:14] pool-1-thread-3 - 5000 records committed(current total 455000 records), lap time = 0.600
[2025-03-08 20:51:14] pool-1-thread-1 - 5000 records committed(current total 450000 records), lap time = 0.553
[2025-03-08 20:51:14] pool-1-thread-5 - 5000 records committed(current total 460000 records), lap time = 0.574
[2025-03-08 20:51:14] pool-1-thread-6 - 5000 records committed(current total 460000 records), lap time = 0.560
[2025-03-08 20:51:14] pool-1-thread-7 - 5000 records committed(current total 455000 records), lap time = 0.579
[2025-03-08 20:51:14] pool-1-thread-8 - 5000 records committed(current total 455000 records), lap time = 0.595
[2025-03-08 20:51:14] pool-1-thread-10 - 5000 records committed(current total 465000 records), lap time = 0.579
[2025-03-08 20:51:14] pool-1-thread-3 - 5000 records committed(current total 460000 records), lap time = 0.586
[2025-03-08 20:51:14] pool-1-thread-2 - 5000 records committed(current total 455000 records), lap time = 0.599
[2025-03-08 20:51:14] pool-1-thread-9 - 5000 records committed(current total 455000 records), lap time = 0.611
[2025-03-08 20:51:14] pool-1-thread-4 - 5000 records committed(current total 455000 records), lap time = 0.617
[2025-03-08 20:51:15] pool-1-thread-6 - 5000 records committed(current total 465000 records), lap time = 0.628
[2025-03-08 20:51:15] pool-1-thread-1 - 5000 records committed(current total 455000 records), lap time = 0.674
[2025-03-08 20:51:15] pool-1-thread-5 - 5000 records committed(current total 465000 records), lap time = 0.644
[2025-03-08 20:51:15] pool-1-thread-8 - 5000 records committed(current total 460000 records), lap time = 0.596
[2025-03-08 20:51:15] pool-1-thread-7 - 5000 records committed(current total 460000 records), lap time = 0.625
[2025-03-08 20:51:15] pool-1-thread-3 - 5000 records committed(current total 465000 records), lap time = 0.601
[2025-03-08 20:51:15] pool-1-thread-10 - 5000 records committed(current total 470000 records), lap time = 0.619
[2025-03-08 20:51:15] pool-1-thread-4 - 5000 records committed(current total 460000 records), lap time = 0.597
[2025-03-08 20:51:15] pool-1-thread-2 - 5000 records committed(current total 460000 records), lap time = 0.620
[2025-03-08 20:51:15] pool-1-thread-9 - 5000 records committed(current total 460000 records), lap time = 0.617
[2025-03-08 20:51:16] pool-1-thread-5 - 5000 records committed(current total 470000 records), lap time = 0.697
[2025-03-08 20:51:16] pool-1-thread-1 - 5000 records committed(current total 460000 records), lap time = 0.704
[2025-03-08 20:51:16] pool-1-thread-8 - 5000 records committed(current total 465000 records), lap time = 0.674
[2025-03-08 20:51:16] pool-1-thread-6 - 5000 records committed(current total 470000 records), lap time = 0.714
[2025-03-08 20:51:16] pool-1-thread-7 - 5000 records committed(current total 465000 records), lap time = 0.688
[2025-03-08 20:51:16] pool-1-thread-4 - 5000 records committed(current total 465000 records), lap time = 0.664
[2025-03-08 20:51:16] pool-1-thread-3 - 5000 records committed(current total 470000 records), lap time = 0.691
[2025-03-08 20:51:16] pool-1-thread-10 - 5000 records committed(current total 475000 records), lap time = 0.685
[2025-03-08 20:51:16] pool-1-thread-2 - 5000 records committed(current total 465000 records), lap time = 0.678
[2025-03-08 20:51:16] pool-1-thread-9 - 5000 records committed(current total 465000 records), lap time = 0.680
[2025-03-08 20:51:16] pool-1-thread-5 - 5000 records committed(current total 475000 records), lap time = 0.643
[2025-03-08 20:51:16] pool-1-thread-1 - 5000 records committed(current total 465000 records), lap time = 0.676
[2025-03-08 20:51:16] pool-1-thread-8 - 5000 records committed(current total 470000 records), lap time = 0.713
[2025-03-08 20:51:16] pool-1-thread-6 - 5000 records committed(current total 475000 records), lap time = 0.728
[2025-03-08 20:51:16] pool-1-thread-7 - 5000 records committed(current total 470000 records), lap time = 0.709
[2025-03-08 20:51:16] pool-1-thread-4 - 5000 records committed(current total 470000 records), lap time = 0.699
[2025-03-08 20:51:16] pool-1-thread-2 - 5000 records committed(current total 470000 records), lap time = 0.692
[2025-03-08 20:51:16] pool-1-thread-10 - 5000 records committed(current total 480000 records), lap time = 0.700
[2025-03-08 20:51:16] pool-1-thread-9 - 5000 records committed(current total 470000 records), lap time = 0.682
[2025-03-08 20:51:16] pool-1-thread-3 - 5000 records committed(current total 475000 records), lap time = 0.705
[2025-03-08 20:51:17] pool-1-thread-5 - 5000 records committed(current total 480000 records), lap time = 0.571
[2025-03-08 20:51:17] pool-1-thread-1 - 5000 records committed(current total 470000 records), lap time = 0.574
[2025-03-08 20:51:17] pool-1-thread-8 - 5000 records committed(current total 475000 records), lap time = 0.585
[2025-03-08 20:51:17] pool-1-thread-6 - 5000 records committed(current total 480000 records), lap time = 0.621
[2025-03-08 20:51:17] pool-1-thread-2 - 5000 records committed(current total 475000 records), lap time = 0.619
[2025-03-08 20:51:17] pool-1-thread-10 - 5000 records committed(current total 485000 records), lap time = 0.619
[2025-03-08 20:51:17] pool-1-thread-3 - 5000 records committed(current total 480000 records), lap time = 0.619
[2025-03-08 20:51:17] pool-1-thread-4 - 5000 records committed(current total 475000 records), lap time = 0.630
[2025-03-08 20:51:17] pool-1-thread-9 - 5000 records committed(current total 475000 records), lap time = 0.619
[2025-03-08 20:51:17] pool-1-thread-7 - 5000 records committed(current total 475000 records), lap time = 0.630
[2025-03-08 20:51:17] pool-1-thread-5 - 5000 records committed(current total 485000 records), lap time = 0.656
[2025-03-08 20:51:18] pool-1-thread-1 - 5000 records committed(current total 475000 records), lap time = 0.641
[2025-03-08 20:51:18] pool-1-thread-8 - 5000 records committed(current total 480000 records), lap time = 0.628
[2025-03-08 20:51:18] pool-1-thread-6 - 5000 records committed(current total 485000 records), lap time = 0.666
[2025-03-08 20:51:18] pool-1-thread-7 - 5000 records committed(current total 480000 records), lap time = 0.675
[2025-03-08 20:51:18] pool-1-thread-9 - 5000 records committed(current total 480000 records), lap time = 0.687
[2025-03-08 20:51:18] pool-1-thread-2 - 5000 records committed(current total 480000 records), lap time = 0.687
[2025-03-08 20:51:18] pool-1-thread-3 - 5000 records committed(current total 485000 records), lap time = 0.687
[2025-03-08 20:51:18] pool-1-thread-10 - 5000 records committed(current total 490000 records), lap time = 0.687
[2025-03-08 20:51:18] pool-1-thread-4 - 5000 records committed(current total 480000 records), lap time = 0.687
[2025-03-08 20:51:18] pool-1-thread-5 - 5000 records committed(current total 490000 records), lap time = 0.562
[2025-03-08 20:51:18] pool-1-thread-1 - 5000 records committed(current total 480000 records), lap time = 0.575
[2025-03-08 20:51:18] pool-1-thread-8 - 5000 records committed(current total 485000 records), lap time = 0.622
[2025-03-08 20:51:18] pool-1-thread-6 - 5000 records committed(current total 490000 records), lap time = 0.663
[2025-03-08 20:51:18] pool-1-thread-7 - 5000 records committed(current total 485000 records), lap time = 0.664
[2025-03-08 20:51:18] pool-1-thread-10 - 5000 records committed(current total 495000 records), lap time = 0.725
[2025-03-08 20:51:18] pool-1-thread-9 - 5000 records committed(current total 485000 records), lap time = 0.737
[2025-03-08 20:51:18] pool-1-thread-2 - 5000 records committed(current total 485000 records), lap time = 0.738
[2025-03-08 20:51:18] pool-1-thread-4 - 5000 records committed(current total 485000 records), lap time = 0.737
[2025-03-08 20:51:18] pool-1-thread-3 - 5000 records committed(current total 490000 records), lap time = 0.737
[2025-03-08 20:51:19] pool-1-thread-5 - 5000 records committed(current total 495000 records), lap time = 0.779
[2025-03-08 20:51:19] pool-1-thread-1 - 5000 records committed(current total 485000 records), lap time = 0.753
[2025-03-08 20:51:19] pool-1-thread-8 - 5000 records committed(current total 490000 records), lap time = 0.701
[2025-03-08 20:51:19] pool-1-thread-6 - 5000 records committed(current total 495000 records), lap time = 0.646
[2025-03-08 20:51:19] pool-1-thread-7 - 5000 records committed(current total 490000 records), lap time = 0.637
[2025-03-08 20:51:19] pool-1-thread-10 - remain records committed(current total 500000 records), lap time = 0.618
[2025-03-08 20:51:19] pool-1-thread-10 - 500000 records committed, total elapsed time = 61.364
[2025-03-08 20:51:19] pool-1-thread-9 - 5000 records committed(current total 490000 records), lap time = 0.632
[2025-03-08 20:51:19] pool-1-thread-3 - 5000 records committed(current total 495000 records), lap time = 0.641
[2025-03-08 20:51:19] pool-1-thread-4 - 5000 records committed(current total 490000 records), lap time = 0.648
[2025-03-08 20:51:19] pool-1-thread-2 - 5000 records committed(current total 490000 records), lap time = 0.648
[2025-03-08 20:51:20] pool-1-thread-5 - remain records committed(current total 500000 records), lap time = 0.702
[2025-03-08 20:51:20] pool-1-thread-5 - 500000 records committed, total elapsed time = 61.876
[2025-03-08 20:51:20] pool-1-thread-1 - 5000 records committed(current total 490000 records), lap time = 0.693
[2025-03-08 20:51:20] pool-1-thread-8 - 5000 records committed(current total 495000 records), lap time = 0.676
[2025-03-08 20:51:20] pool-1-thread-6 - remain records committed(current total 500000 records), lap time = 0.689
[2025-03-08 20:51:20] pool-1-thread-6 - 500000 records committed, total elapsed time = 61.991
[2025-03-08 20:51:20] pool-1-thread-7 - 5000 records committed(current total 495000 records), lap time = 0.719
[2025-03-08 20:51:20] pool-1-thread-4 - 5000 records committed(current total 495000 records), lap time = 0.677
[2025-03-08 20:51:20] pool-1-thread-2 - 5000 records committed(current total 495000 records), lap time = 0.695
[2025-03-08 20:51:20] pool-1-thread-9 - 5000 records committed(current total 495000 records), lap time = 0.719
[2025-03-08 20:51:20] pool-1-thread-3 - remain records committed(current total 500000 records), lap time = 0.722
[2025-03-08 20:51:20] pool-1-thread-3 - 500000 records committed, total elapsed time = 62.123
[2025-03-08 20:51:20] pool-1-thread-1 - 5000 records committed(current total 495000 records), lap time = 0.495
[2025-03-08 20:51:20] pool-1-thread-8 - remain records committed(current total 500000 records), lap time = 0.490
[2025-03-08 20:51:20] pool-1-thread-8 - 500000 records committed, total elapsed time = 62.391
[2025-03-08 20:51:20] pool-1-thread-4 - remain records committed(current total 500000 records), lap time = 0.370
[2025-03-08 20:51:20] pool-1-thread-4 - 500000 records committed, total elapsed time = 62.454
[2025-03-08 20:51:20] pool-1-thread-7 - remain records committed(current total 500000 records), lap time = 0.430
[2025-03-08 20:51:20] pool-1-thread-7 - 500000 records committed, total elapsed time = 62.460
[2025-03-08 20:51:20] pool-1-thread-2 - remain records committed(current total 500000 records), lap time = 0.363
[2025-03-08 20:51:20] pool-1-thread-2 - 500000 records committed, total elapsed time = 62.466
[2025-03-08 20:51:20] pool-1-thread-9 - remain records committed(current total 500000 records), lap time = 0.361
[2025-03-08 20:51:20] pool-1-thread-9 - 500000 records committed, total elapsed time = 62.471
[2025-03-08 20:51:20] pool-1-thread-1 - remain records committed(current total 500000 records), lap time = 0.168
[2025-03-08 20:51:20] pool-1-thread-1 - 500000 records committed, total elapsed time = 62.547
[2025-03-08 20:51:20] org.littlewings.mysql.UuidBinRunner$UuidBinAsServerPsRunner.main() - UuidBinAsServerPsRunner: 5000000 records inserted, total elapsed time = 62.896
uuid関数でUUIDを生成しおuuid_to_bin関数でバむナリヌ倉換埌にデヌタを登録した時の実行ログswap_flagあり
[INFO] --- exec:3.5.0:java (default-cli) @ mysql-connector-j-uuid ---
[2025-03-08 21:00:46] pool-1-thread-9 - 5000 records committed(current total 5000 records), lap time = 0.903
[2025-03-08 21:00:46] pool-1-thread-1 - 5000 records committed(current total 5000 records), lap time = 0.913
[2025-03-08 21:00:46] pool-1-thread-8 - 5000 records committed(current total 5000 records), lap time = 0.920
[2025-03-08 21:00:46] pool-1-thread-2 - 5000 records committed(current total 5000 records), lap time = 0.919
[2025-03-08 21:00:46] pool-1-thread-6 - 5000 records committed(current total 5000 records), lap time = 0.920
[2025-03-08 21:00:46] pool-1-thread-5 - 5000 records committed(current total 5000 records), lap time = 0.931
[2025-03-08 21:00:46] pool-1-thread-7 - 5000 records committed(current total 5000 records), lap time = 0.941
[2025-03-08 21:00:46] pool-1-thread-10 - 5000 records committed(current total 5000 records), lap time = 0.950
[2025-03-08 21:00:46] pool-1-thread-3 - 5000 records committed(current total 5000 records), lap time = 0.950
[2025-03-08 21:00:46] pool-1-thread-4 - 5000 records committed(current total 5000 records), lap time = 0.950
[2025-03-08 21:00:46] pool-1-thread-1 - 5000 records committed(current total 10000 records), lap time = 0.524
[2025-03-08 21:00:46] pool-1-thread-9 - 5000 records committed(current total 10000 records), lap time = 0.544
[2025-03-08 21:00:46] pool-1-thread-2 - 5000 records committed(current total 10000 records), lap time = 0.534
[2025-03-08 21:00:46] pool-1-thread-8 - 5000 records committed(current total 10000 records), lap time = 0.542
[2025-03-08 21:00:46] pool-1-thread-5 - 5000 records committed(current total 10000 records), lap time = 0.535
[2025-03-08 21:00:46] pool-1-thread-6 - 5000 records committed(current total 10000 records), lap time = 0.547
[2025-03-08 21:00:46] pool-1-thread-3 - 5000 records committed(current total 10000 records), lap time = 0.527
[2025-03-08 21:00:46] pool-1-thread-7 - 5000 records committed(current total 10000 records), lap time = 0.542
[2025-03-08 21:00:46] pool-1-thread-10 - 5000 records committed(current total 10000 records), lap time = 0.545
[2025-03-08 21:00:46] pool-1-thread-4 - 5000 records committed(current total 10000 records), lap time = 0.579
[2025-03-08 21:00:47] pool-1-thread-1 - 5000 records committed(current total 15000 records), lap time = 0.448
[2025-03-08 21:00:47] pool-1-thread-9 - 5000 records committed(current total 15000 records), lap time = 0.449
[2025-03-08 21:00:47] pool-1-thread-8 - 5000 records committed(current total 15000 records), lap time = 0.454
[2025-03-08 21:00:47] pool-1-thread-2 - 5000 records committed(current total 15000 records), lap time = 0.466
[2025-03-08 21:00:47] pool-1-thread-5 - 5000 records committed(current total 15000 records), lap time = 0.461
[2025-03-08 21:00:47] pool-1-thread-10 - 5000 records committed(current total 15000 records), lap time = 0.438
[2025-03-08 21:00:47] pool-1-thread-6 - 5000 records committed(current total 15000 records), lap time = 0.466
[2025-03-08 21:00:47] pool-1-thread-3 - 5000 records committed(current total 15000 records), lap time = 0.461
[2025-03-08 21:00:47] pool-1-thread-7 - 5000 records committed(current total 15000 records), lap time = 0.454
[2025-03-08 21:00:47] pool-1-thread-4 - 5000 records committed(current total 15000 records), lap time = 0.412
[2025-03-08 21:00:47] pool-1-thread-1 - 5000 records committed(current total 20000 records), lap time = 0.369
[2025-03-08 21:00:47] pool-1-thread-9 - 5000 records committed(current total 20000 records), lap time = 0.391
[2025-03-08 21:00:47] pool-1-thread-8 - 5000 records committed(current total 20000 records), lap time = 0.402
[2025-03-08 21:00:47] pool-1-thread-5 - 5000 records committed(current total 20000 records), lap time = 0.398
[2025-03-08 21:00:47] pool-1-thread-2 - 5000 records committed(current total 20000 records), lap time = 0.409
[2025-03-08 21:00:47] pool-1-thread-10 - 5000 records committed(current total 20000 records), lap time = 0.407
[2025-03-08 21:00:47] pool-1-thread-3 - 5000 records committed(current total 20000 records), lap time = 0.411
[2025-03-08 21:00:47] pool-1-thread-6 - 5000 records committed(current total 20000 records), lap time = 0.429
[2025-03-08 21:00:47] pool-1-thread-4 - 5000 records committed(current total 20000 records), lap time = 0.430
[2025-03-08 21:00:47] pool-1-thread-7 - 5000 records committed(current total 20000 records), lap time = 0.443
[2025-03-08 21:00:48] pool-1-thread-1 - 5000 records committed(current total 25000 records), lap time = 0.525
[2025-03-08 21:00:48] pool-1-thread-9 - 5000 records committed(current total 25000 records), lap time = 0.528
[2025-03-08 21:00:48] pool-1-thread-8 - 5000 records committed(current total 25000 records), lap time = 0.527
[2025-03-08 21:00:48] pool-1-thread-5 - 5000 records committed(current total 25000 records), lap time = 0.529
[2025-03-08 21:00:48] pool-1-thread-2 - 5000 records committed(current total 25000 records), lap time = 0.533
[2025-03-08 21:00:48] pool-1-thread-10 - 5000 records committed(current total 25000 records), lap time = 0.530
[2025-03-08 21:00:48] pool-1-thread-3 - 5000 records committed(current total 25000 records), lap time = 0.525
[2025-03-08 21:00:48] pool-1-thread-6 - 5000 records committed(current total 25000 records), lap time = 0.522
[2025-03-08 21:00:48] pool-1-thread-4 - 5000 records committed(current total 25000 records), lap time = 0.533
[2025-03-08 21:00:48] pool-1-thread-7 - 5000 records committed(current total 25000 records), lap time = 0.533
[2025-03-08 21:00:48] pool-1-thread-1 - 5000 records committed(current total 30000 records), lap time = 0.554
[2025-03-08 21:00:48] pool-1-thread-8 - 5000 records committed(current total 30000 records), lap time = 0.524
[2025-03-08 21:00:48] pool-1-thread-7 - 5000 records committed(current total 30000 records), lap time = 0.456
[2025-03-08 21:00:48] pool-1-thread-4 - 5000 records committed(current total 30000 records), lap time = 0.465
[2025-03-08 21:00:48] pool-1-thread-6 - 5000 records committed(current total 30000 records), lap time = 0.486
[2025-03-08 21:00:48] pool-1-thread-2 - 5000 records committed(current total 30000 records), lap time = 0.509
[2025-03-08 21:00:48] pool-1-thread-10 - 5000 records committed(current total 30000 records), lap time = 0.500
[2025-03-08 21:00:48] pool-1-thread-5 - 5000 records committed(current total 30000 records), lap time = 0.517
[2025-03-08 21:00:48] pool-1-thread-3 - 5000 records committed(current total 30000 records), lap time = 0.496
[2025-03-08 21:00:48] pool-1-thread-9 - 5000 records committed(current total 30000 records), lap time = 0.556
[2025-03-08 21:00:49] pool-1-thread-1 - 5000 records committed(current total 35000 records), lap time = 0.668
[2025-03-08 21:00:49] pool-1-thread-9 - 5000 records committed(current total 35000 records), lap time = 0.640
[2025-03-08 21:00:49] pool-1-thread-10 - 5000 records committed(current total 35000 records), lap time = 0.647
[2025-03-08 21:00:49] pool-1-thread-3 - 5000 records committed(current total 35000 records), lap time = 0.646
[2025-03-08 21:00:49] pool-1-thread-2 - 5000 records committed(current total 35000 records), lap time = 0.659
[2025-03-08 21:00:49] pool-1-thread-7 - 5000 records committed(current total 35000 records), lap time = 0.659
[2025-03-08 21:00:49] pool-1-thread-5 - 5000 records committed(current total 35000 records), lap time = 0.659
[2025-03-08 21:00:49] pool-1-thread-4 - 5000 records committed(current total 35000 records), lap time = 0.659
[2025-03-08 21:00:49] pool-1-thread-6 - 5000 records committed(current total 35000 records), lap time = 0.659
[2025-03-08 21:00:49] pool-1-thread-8 - 5000 records committed(current total 35000 records), lap time = 0.666
[2025-03-08 21:00:49] pool-1-thread-1 - 5000 records committed(current total 40000 records), lap time = 0.369
[2025-03-08 21:00:49] pool-1-thread-9 - 5000 records committed(current total 40000 records), lap time = 0.380
[2025-03-08 21:00:49] pool-1-thread-10 - 5000 records committed(current total 40000 records), lap time = 0.382
[2025-03-08 21:00:49] pool-1-thread-4 - 5000 records committed(current total 40000 records), lap time = 0.382
[2025-03-08 21:00:49] pool-1-thread-3 - 5000 records committed(current total 40000 records), lap time = 0.394
[2025-03-08 21:00:49] pool-1-thread-5 - 5000 records committed(current total 40000 records), lap time = 0.382
[2025-03-08 21:00:49] pool-1-thread-2 - 5000 records committed(current total 40000 records), lap time = 0.383
[2025-03-08 21:00:49] pool-1-thread-7 - 5000 records committed(current total 40000 records), lap time = 0.388
[2025-03-08 21:00:49] pool-1-thread-6 - 5000 records committed(current total 40000 records), lap time = 0.387
[2025-03-08 21:00:49] pool-1-thread-8 - 5000 records committed(current total 40000 records), lap time = 0.382
[2025-03-08 21:00:50] pool-1-thread-1 - 5000 records committed(current total 45000 records), lap time = 0.413
[2025-03-08 21:00:50] pool-1-thread-9 - 5000 records committed(current total 45000 records), lap time = 0.408
[2025-03-08 21:00:50] pool-1-thread-10 - 5000 records committed(current total 45000 records), lap time = 0.420
[2025-03-08 21:00:50] pool-1-thread-3 - 5000 records committed(current total 45000 records), lap time = 0.424
[2025-03-08 21:00:50] pool-1-thread-6 - 5000 records committed(current total 45000 records), lap time = 0.431
[2025-03-08 21:00:50] pool-1-thread-4 - 5000 records committed(current total 45000 records), lap time = 0.436
[2025-03-08 21:00:50] pool-1-thread-8 - 5000 records committed(current total 45000 records), lap time = 0.430
[2025-03-08 21:00:50] pool-1-thread-7 - 5000 records committed(current total 45000 records), lap time = 0.431
[2025-03-08 21:00:50] pool-1-thread-2 - 5000 records committed(current total 45000 records), lap time = 0.436
[2025-03-08 21:00:50] pool-1-thread-5 - 5000 records committed(current total 45000 records), lap time = 0.436
[2025-03-08 21:00:50] pool-1-thread-1 - 5000 records committed(current total 50000 records), lap time = 0.539
[2025-03-08 21:00:50] pool-1-thread-5 - 5000 records committed(current total 50000 records), lap time = 0.512
[2025-03-08 21:00:50] pool-1-thread-4 - 5000 records committed(current total 50000 records), lap time = 0.513
[2025-03-08 21:00:50] pool-1-thread-8 - 5000 records committed(current total 50000 records), lap time = 0.512
[2025-03-08 21:00:50] pool-1-thread-3 - 5000 records committed(current total 50000 records), lap time = 0.525
[2025-03-08 21:00:50] pool-1-thread-10 - 5000 records committed(current total 50000 records), lap time = 0.541
[2025-03-08 21:00:50] pool-1-thread-7 - 5000 records committed(current total 50000 records), lap time = 0.512
[2025-03-08 21:00:50] pool-1-thread-6 - 5000 records committed(current total 50000 records), lap time = 0.513
[2025-03-08 21:00:50] pool-1-thread-9 - 5000 records committed(current total 50000 records), lap time = 0.561
[2025-03-08 21:00:50] pool-1-thread-2 - 5000 records committed(current total 50000 records), lap time = 0.512
[2025-03-08 21:00:51] pool-1-thread-1 - 5000 records committed(current total 55000 records), lap time = 0.724
[2025-03-08 21:00:51] pool-1-thread-7 - 5000 records committed(current total 55000 records), lap time = 0.754
[2025-03-08 21:00:51] pool-1-thread-6 - 5000 records committed(current total 55000 records), lap time = 0.758
[2025-03-08 21:00:51] pool-1-thread-4 - 5000 records committed(current total 55000 records), lap time = 0.765
[2025-03-08 21:00:51] pool-1-thread-10 - 5000 records committed(current total 55000 records), lap time = 0.765
[2025-03-08 21:00:51] pool-1-thread-3 - 5000 records committed(current total 55000 records), lap time = 0.765
[2025-03-08 21:00:51] pool-1-thread-9 - 5000 records committed(current total 55000 records), lap time = 0.770
[2025-03-08 21:00:51] pool-1-thread-2 - 5000 records committed(current total 55000 records), lap time = 0.770
[2025-03-08 21:00:51] pool-1-thread-5 - 5000 records committed(current total 55000 records), lap time = 0.771
[2025-03-08 21:00:51] pool-1-thread-8 - 5000 records committed(current total 55000 records), lap time = 0.771
[2025-03-08 21:00:51] pool-1-thread-1 - 5000 records committed(current total 60000 records), lap time = 0.606
[2025-03-08 21:00:52] pool-1-thread-7 - 5000 records committed(current total 60000 records), lap time = 0.658
[2025-03-08 21:00:52] pool-1-thread-6 - 5000 records committed(current total 60000 records), lap time = 0.670
[2025-03-08 21:00:52] pool-1-thread-10 - 5000 records committed(current total 60000 records), lap time = 0.673
[2025-03-08 21:00:52] pool-1-thread-4 - 5000 records committed(current total 60000 records), lap time = 0.687
[2025-03-08 21:00:52] pool-1-thread-3 - 5000 records committed(current total 60000 records), lap time = 0.687
[2025-03-08 21:00:52] pool-1-thread-5 - 5000 records committed(current total 60000 records), lap time = 0.681
[2025-03-08 21:00:52] pool-1-thread-9 - 5000 records committed(current total 60000 records), lap time = 0.688
[2025-03-08 21:00:52] pool-1-thread-8 - 5000 records committed(current total 60000 records), lap time = 0.688
[2025-03-08 21:00:52] pool-1-thread-2 - 5000 records committed(current total 60000 records), lap time = 0.688
[2025-03-08 21:00:52] pool-1-thread-1 - 5000 records committed(current total 65000 records), lap time = 0.587
[2025-03-08 21:00:52] pool-1-thread-7 - 5000 records committed(current total 65000 records), lap time = 0.592
[2025-03-08 21:00:52] pool-1-thread-6 - 5000 records committed(current total 65000 records), lap time = 0.582
[2025-03-08 21:00:52] pool-1-thread-10 - 5000 records committed(current total 65000 records), lap time = 0.580
[2025-03-08 21:00:52] pool-1-thread-3 - 5000 records committed(current total 65000 records), lap time = 0.578
[2025-03-08 21:00:52] pool-1-thread-8 - 5000 records committed(current total 65000 records), lap time = 0.589
[2025-03-08 21:00:52] pool-1-thread-5 - 5000 records committed(current total 65000 records), lap time = 0.605
[2025-03-08 21:00:52] pool-1-thread-4 - 5000 records committed(current total 65000 records), lap time = 0.605
[2025-03-08 21:00:52] pool-1-thread-2 - 5000 records committed(current total 65000 records), lap time = 0.598
[2025-03-08 21:00:52] pool-1-thread-9 - 5000 records committed(current total 65000 records), lap time = 0.604
[2025-03-08 21:00:53] pool-1-thread-1 - 5000 records committed(current total 70000 records), lap time = 0.789
[2025-03-08 21:00:53] pool-1-thread-7 - 5000 records committed(current total 70000 records), lap time = 0.692
[2025-03-08 21:00:53] pool-1-thread-5 - 5000 records committed(current total 70000 records), lap time = 0.640
[2025-03-08 21:00:53] pool-1-thread-4 - 5000 records committed(current total 70000 records), lap time = 0.640
[2025-03-08 21:00:53] pool-1-thread-3 - 5000 records committed(current total 70000 records), lap time = 0.668
[2025-03-08 21:00:53] pool-1-thread-10 - 5000 records committed(current total 70000 records), lap time = 0.679
[2025-03-08 21:00:53] pool-1-thread-2 - 5000 records committed(current total 70000 records), lap time = 0.640
[2025-03-08 21:00:53] pool-1-thread-6 - 5000 records committed(current total 70000 records), lap time = 0.687
[2025-03-08 21:00:53] pool-1-thread-9 - 5000 records committed(current total 70000 records), lap time = 0.634
[2025-03-08 21:00:53] pool-1-thread-8 - 5000 records committed(current total 70000 records), lap time = 0.650
[2025-03-08 21:00:53] pool-1-thread-1 - 5000 records committed(current total 75000 records), lap time = 0.505
[2025-03-08 21:00:53] pool-1-thread-2 - 5000 records committed(current total 75000 records), lap time = 0.586
[2025-03-08 21:00:53] pool-1-thread-3 - 5000 records committed(current total 75000 records), lap time = 0.593
[2025-03-08 21:00:53] pool-1-thread-8 - 5000 records committed(current total 75000 records), lap time = 0.593
[2025-03-08 21:00:53] pool-1-thread-10 - 5000 records committed(current total 75000 records), lap time = 0.593
[2025-03-08 21:00:53] pool-1-thread-6 - 5000 records committed(current total 75000 records), lap time = 0.608
[2025-03-08 21:00:53] pool-1-thread-7 - 5000 records committed(current total 75000 records), lap time = 0.609
[2025-03-08 21:00:53] pool-1-thread-4 - 5000 records committed(current total 75000 records), lap time = 0.608
[2025-03-08 21:00:53] pool-1-thread-9 - 5000 records committed(current total 75000 records), lap time = 0.609
[2025-03-08 21:00:53] pool-1-thread-5 - 5000 records committed(current total 75000 records), lap time = 0.616
[2025-03-08 21:00:54] pool-1-thread-1 - 5000 records committed(current total 80000 records), lap time = 0.560
[2025-03-08 21:00:54] pool-1-thread-10 - 5000 records committed(current total 80000 records), lap time = 0.482
[2025-03-08 21:00:54] pool-1-thread-2 - 5000 records committed(current total 80000 records), lap time = 0.498
[2025-03-08 21:00:54] pool-1-thread-8 - 5000 records committed(current total 80000 records), lap time = 0.499
[2025-03-08 21:00:54] pool-1-thread-4 - 5000 records committed(current total 80000 records), lap time = 0.500
[2025-03-08 21:00:54] pool-1-thread-7 - 5000 records committed(current total 80000 records), lap time = 0.511
[2025-03-08 21:00:54] pool-1-thread-3 - 5000 records committed(current total 80000 records), lap time = 0.527
[2025-03-08 21:00:54] pool-1-thread-9 - 5000 records committed(current total 80000 records), lap time = 0.511
[2025-03-08 21:00:54] pool-1-thread-6 - 5000 records committed(current total 80000 records), lap time = 0.511
[2025-03-08 21:00:54] pool-1-thread-5 - 5000 records committed(current total 80000 records), lap time = 0.504
[2025-03-08 21:00:54] pool-1-thread-1 - 5000 records committed(current total 85000 records), lap time = 0.587
[2025-03-08 21:00:55] pool-1-thread-10 - 5000 records committed(current total 85000 records), lap time = 0.595
[2025-03-08 21:00:55] pool-1-thread-2 - 5000 records committed(current total 85000 records), lap time = 0.827
[2025-03-08 21:00:55] pool-1-thread-8 - 5000 records committed(current total 85000 records), lap time = 0.838
[2025-03-08 21:00:55] pool-1-thread-6 - 5000 records committed(current total 85000 records), lap time = 0.810
[2025-03-08 21:00:55] pool-1-thread-7 - 5000 records committed(current total 85000 records), lap time = 0.810
[2025-03-08 21:00:55] pool-1-thread-5 - 5000 records committed(current total 85000 records), lap time = 0.810
[2025-03-08 21:00:55] pool-1-thread-3 - 5000 records committed(current total 85000 records), lap time = 0.810
[2025-03-08 21:00:55] pool-1-thread-4 - 5000 records committed(current total 85000 records), lap time = 0.820
[2025-03-08 21:00:55] pool-1-thread-9 - 5000 records committed(current total 85000 records), lap time = 0.810
[2025-03-08 21:00:55] pool-1-thread-10 - 5000 records committed(current total 90000 records), lap time = 0.418
[2025-03-08 21:00:55] pool-1-thread-1 - 5000 records committed(current total 90000 records), lap time = 0.471
[2025-03-08 21:00:55] pool-1-thread-2 - 5000 records committed(current total 90000 records), lap time = 0.596
[2025-03-08 21:00:55] pool-1-thread-3 - 5000 records committed(current total 90000 records), lap time = 0.666
[2025-03-08 21:00:55] pool-1-thread-8 - 5000 records committed(current total 90000 records), lap time = 0.681
[2025-03-08 21:00:55] pool-1-thread-6 - 5000 records committed(current total 90000 records), lap time = 0.693
[2025-03-08 21:00:55] pool-1-thread-5 - 5000 records committed(current total 90000 records), lap time = 0.704
[2025-03-08 21:00:55] pool-1-thread-4 - 5000 records committed(current total 90000 records), lap time = 0.709
[2025-03-08 21:00:55] pool-1-thread-7 - 5000 records committed(current total 90000 records), lap time = 0.718
[2025-03-08 21:00:55] pool-1-thread-9 - 5000 records committed(current total 90000 records), lap time = 0.722
[2025-03-08 21:00:56] pool-1-thread-1 - 5000 records committed(current total 95000 records), lap time = 0.675
[2025-03-08 21:00:56] pool-1-thread-10 - 5000 records committed(current total 95000 records), lap time = 0.692
[2025-03-08 21:00:56] pool-1-thread-2 - 5000 records committed(current total 95000 records), lap time = 0.625
[2025-03-08 21:00:56] pool-1-thread-8 - 5000 records committed(current total 95000 records), lap time = 0.558
[2025-03-08 21:00:56] pool-1-thread-3 - 5000 records committed(current total 95000 records), lap time = 0.580
[2025-03-08 21:00:56] pool-1-thread-6 - 5000 records committed(current total 95000 records), lap time = 0.561
[2025-03-08 21:00:56] pool-1-thread-5 - 5000 records committed(current total 95000 records), lap time = 0.565
[2025-03-08 21:00:56] pool-1-thread-7 - 5000 records committed(current total 95000 records), lap time = 0.572
[2025-03-08 21:00:56] pool-1-thread-9 - 5000 records committed(current total 95000 records), lap time = 0.566
[2025-03-08 21:00:56] pool-1-thread-4 - 5000 records committed(current total 95000 records), lap time = 0.580
[2025-03-08 21:00:56] pool-1-thread-1 - 5000 records committed(current total 100000 records), lap time = 0.539
[2025-03-08 21:00:56] pool-1-thread-10 - 5000 records committed(current total 100000 records), lap time = 0.533
[2025-03-08 21:00:57] pool-1-thread-2 - 5000 records committed(current total 100000 records), lap time = 0.790
[2025-03-08 21:00:57] pool-1-thread-8 - 5000 records committed(current total 100000 records), lap time = 0.977
[2025-03-08 21:00:57] pool-1-thread-3 - 5000 records committed(current total 100000 records), lap time = 0.993
[2025-03-08 21:00:57] pool-1-thread-9 - 5000 records committed(current total 100000 records), lap time = 0.949
[2025-03-08 21:00:57] pool-1-thread-4 - 5000 records committed(current total 100000 records), lap time = 0.949
[2025-03-08 21:00:57] pool-1-thread-1 - 5000 records committed(current total 105000 records), lap time = 0.860
[2025-03-08 21:00:57] pool-1-thread-6 - 5000 records committed(current total 100000 records), lap time = 0.985
[2025-03-08 21:00:57] pool-1-thread-5 - 5000 records committed(current total 100000 records), lap time = 0.969
[2025-03-08 21:00:57] pool-1-thread-10 - 5000 records committed(current total 105000 records), lap time = 0.854
[2025-03-08 21:00:57] pool-1-thread-7 - 5000 records committed(current total 100000 records), lap time = 0.949
[2025-03-08 21:00:57] pool-1-thread-2 - 5000 records committed(current total 105000 records), lap time = 0.254
[2025-03-08 21:00:58] pool-1-thread-8 - 5000 records committed(current total 105000 records), lap time = 0.574
[2025-03-08 21:00:58] pool-1-thread-9 - 5000 records committed(current total 105000 records), lap time = 0.579
[2025-03-08 21:00:58] pool-1-thread-2 - 5000 records committed(current total 110000 records), lap time = 0.583
[2025-03-08 21:00:58] pool-1-thread-10 - 5000 records committed(current total 110000 records), lap time = 0.596
[2025-03-08 21:00:58] pool-1-thread-7 - 5000 records committed(current total 105000 records), lap time = 0.606
[2025-03-08 21:00:58] pool-1-thread-3 - 5000 records committed(current total 105000 records), lap time = 0.607
[2025-03-08 21:00:58] pool-1-thread-1 - 5000 records committed(current total 110000 records), lap time = 0.612
[2025-03-08 21:00:58] pool-1-thread-6 - 5000 records committed(current total 105000 records), lap time = 0.612
[2025-03-08 21:00:58] pool-1-thread-5 - 5000 records committed(current total 105000 records), lap time = 0.612
[2025-03-08 21:00:58] pool-1-thread-4 - 5000 records committed(current total 105000 records), lap time = 0.623
[2025-03-08 21:00:58] pool-1-thread-8 - 5000 records committed(current total 110000 records), lap time = 0.525
[2025-03-08 21:00:58] pool-1-thread-9 - 5000 records committed(current total 110000 records), lap time = 0.504
[2025-03-08 21:00:58] pool-1-thread-2 - 5000 records committed(current total 115000 records), lap time = 0.500
[2025-03-08 21:00:58] pool-1-thread-10 - 5000 records committed(current total 115000 records), lap time = 0.503
[2025-03-08 21:00:58] pool-1-thread-3 - 5000 records committed(current total 110000 records), lap time = 0.545
[2025-03-08 21:00:58] pool-1-thread-1 - 5000 records committed(current total 115000 records), lap time = 0.546
[2025-03-08 21:00:58] pool-1-thread-4 - 5000 records committed(current total 110000 records), lap time = 0.535
[2025-03-08 21:00:58] pool-1-thread-7 - 5000 records committed(current total 110000 records), lap time = 0.558
[2025-03-08 21:00:58] pool-1-thread-5 - 5000 records committed(current total 110000 records), lap time = 0.552
[2025-03-08 21:00:58] pool-1-thread-6 - 5000 records committed(current total 110000 records), lap time = 0.553
[2025-03-08 21:00:59] pool-1-thread-2 - 5000 records committed(current total 120000 records), lap time = 0.698
[2025-03-08 21:00:59] pool-1-thread-8 - 5000 records committed(current total 115000 records), lap time = 0.718
[2025-03-08 21:00:59] pool-1-thread-9 - 5000 records committed(current total 115000 records), lap time = 0.727
[2025-03-08 21:00:59] pool-1-thread-10 - 5000 records committed(current total 120000 records), lap time = 1.003
[2025-03-08 21:00:59] pool-1-thread-7 - 5000 records committed(current total 115000 records), lap time = 0.978
[2025-03-08 21:00:59] pool-1-thread-3 - 5000 records committed(current total 115000 records), lap time = 0.991
[2025-03-08 21:00:59] pool-1-thread-8 - 5000 records committed(current total 120000 records), lap time = 0.349
[2025-03-08 21:00:59] pool-1-thread-2 - 5000 records committed(current total 125000 records), lap time = 0.355
[2025-03-08 21:00:59] pool-1-thread-9 - 5000 records committed(current total 120000 records), lap time = 0.330
[2025-03-08 21:00:59] pool-1-thread-1 - 5000 records committed(current total 120000 records), lap time = 0.984
[2025-03-08 21:00:59] pool-1-thread-4 - 5000 records committed(current total 115000 records), lap time = 0.984
[2025-03-08 21:00:59] pool-1-thread-5 - 5000 records committed(current total 115000 records), lap time = 0.978
[2025-03-08 21:00:59] pool-1-thread-6 - 5000 records committed(current total 115000 records), lap time = 0.977
[2025-03-08 21:01:00] pool-1-thread-10 - 5000 records committed(current total 125000 records), lap time = 0.632
[2025-03-08 21:01:00] pool-1-thread-5 - 5000 records committed(current total 120000 records), lap time = 0.642
[2025-03-08 21:01:00] pool-1-thread-2 - 5000 records committed(current total 130000 records), lap time = 0.647
[2025-03-08 21:01:00] pool-1-thread-9 - 5000 records committed(current total 125000 records), lap time = 0.653
[2025-03-08 21:01:00] pool-1-thread-1 - 5000 records committed(current total 125000 records), lap time = 0.661
[2025-03-08 21:01:00] pool-1-thread-6 - 5000 records committed(current total 120000 records), lap time = 0.660
[2025-03-08 21:01:00] pool-1-thread-7 - 5000 records committed(current total 120000 records), lap time = 0.661
[2025-03-08 21:01:00] pool-1-thread-3 - 5000 records committed(current total 120000 records), lap time = 0.661
[2025-03-08 21:01:00] pool-1-thread-8 - 5000 records committed(current total 125000 records), lap time = 0.661
[2025-03-08 21:01:00] pool-1-thread-4 - 5000 records committed(current total 120000 records), lap time = 0.661
[2025-03-08 21:01:00] pool-1-thread-10 - 5000 records committed(current total 130000 records), lap time = 0.509
[2025-03-08 21:01:00] pool-1-thread-5 - 5000 records committed(current total 125000 records), lap time = 0.601
[2025-03-08 21:01:00] pool-1-thread-2 - 5000 records committed(current total 135000 records), lap time = 0.607
[2025-03-08 21:01:00] pool-1-thread-9 - 5000 records committed(current total 130000 records), lap time = 0.621
[2025-03-08 21:01:00] pool-1-thread-6 - 5000 records committed(current total 125000 records), lap time = 0.633
[2025-03-08 21:01:00] pool-1-thread-7 - 5000 records committed(current total 125000 records), lap time = 0.639
[2025-03-08 21:01:00] pool-1-thread-4 - 5000 records committed(current total 125000 records), lap time = 0.643
[2025-03-08 21:01:00] pool-1-thread-8 - 5000 records committed(current total 130000 records), lap time = 0.651
[2025-03-08 21:01:00] pool-1-thread-3 - 5000 records committed(current total 125000 records), lap time = 0.651
[2025-03-08 21:01:00] pool-1-thread-1 - 5000 records committed(current total 130000 records), lap time = 0.657
[2025-03-08 21:01:01] pool-1-thread-10 - 5000 records committed(current total 135000 records), lap time = 0.656
[2025-03-08 21:01:01] pool-1-thread-5 - 5000 records committed(current total 130000 records), lap time = 0.562
[2025-03-08 21:01:01] pool-1-thread-2 - 5000 records committed(current total 140000 records), lap time = 0.570
[2025-03-08 21:01:01] pool-1-thread-9 - 5000 records committed(current total 135000 records), lap time = 0.599
[2025-03-08 21:01:01] pool-1-thread-4 - 5000 records committed(current total 130000 records), lap time = 0.575
[2025-03-08 21:01:01] pool-1-thread-6 - 5000 records committed(current total 130000 records), lap time = 0.591
[2025-03-08 21:01:01] pool-1-thread-8 - 5000 records committed(current total 135000 records), lap time = 0.578
[2025-03-08 21:01:01] pool-1-thread-7 - 5000 records committed(current total 130000 records), lap time = 0.605
[2025-03-08 21:01:01] pool-1-thread-3 - 5000 records committed(current total 130000 records), lap time = 0.599
[2025-03-08 21:01:01] pool-1-thread-1 - 5000 records committed(current total 135000 records), lap time = 0.592
[2025-03-08 21:01:02] pool-1-thread-10 - 5000 records committed(current total 140000 records), lap time = 0.678
[2025-03-08 21:01:02] pool-1-thread-5 - 5000 records committed(current total 135000 records), lap time = 0.678
[2025-03-08 21:01:02] pool-1-thread-2 - 5000 records committed(current total 145000 records), lap time = 0.682
[2025-03-08 21:01:02] pool-1-thread-4 - 5000 records committed(current total 135000 records), lap time = 0.638
[2025-03-08 21:01:02] pool-1-thread-9 - 5000 records committed(current total 140000 records), lap time = 0.661
[2025-03-08 21:01:02] pool-1-thread-6 - 5000 records committed(current total 135000 records), lap time = 0.677
[2025-03-08 21:01:02] pool-1-thread-8 - 5000 records committed(current total 140000 records), lap time = 0.691
[2025-03-08 21:01:02] pool-1-thread-1 - 5000 records committed(current total 140000 records), lap time = 0.682
[2025-03-08 21:01:02] pool-1-thread-7 - 5000 records committed(current total 135000 records), lap time = 0.694
[2025-03-08 21:01:02] pool-1-thread-3 - 5000 records committed(current total 135000 records), lap time = 0.695
[2025-03-08 21:01:02] pool-1-thread-10 - 5000 records committed(current total 145000 records), lap time = 0.593
[2025-03-08 21:01:02] pool-1-thread-5 - 5000 records committed(current total 140000 records), lap time = 0.590
[2025-03-08 21:01:02] pool-1-thread-2 - 5000 records committed(current total 150000 records), lap time = 0.602
[2025-03-08 21:01:02] pool-1-thread-4 - 5000 records committed(current total 140000 records), lap time = 0.609
[2025-03-08 21:01:02] pool-1-thread-9 - 5000 records committed(current total 145000 records), lap time = 0.622
[2025-03-08 21:01:02] pool-1-thread-6 - 5000 records committed(current total 140000 records), lap time = 0.648
[2025-03-08 21:01:02] pool-1-thread-8 - 5000 records committed(current total 145000 records), lap time = 0.637
[2025-03-08 21:01:02] pool-1-thread-1 - 5000 records committed(current total 145000 records), lap time = 0.675
[2025-03-08 21:01:02] pool-1-thread-3 - 5000 records committed(current total 140000 records), lap time = 0.691
[2025-03-08 21:01:02] pool-1-thread-7 - 5000 records committed(current total 140000 records), lap time = 0.708
[2025-03-08 21:01:03] pool-1-thread-10 - 5000 records committed(current total 150000 records), lap time = 0.609
[2025-03-08 21:01:03] pool-1-thread-5 - 5000 records committed(current total 145000 records), lap time = 0.608
[2025-03-08 21:01:03] pool-1-thread-2 - 5000 records committed(current total 155000 records), lap time = 0.623
[2025-03-08 21:01:03] pool-1-thread-4 - 5000 records committed(current total 145000 records), lap time = 0.613
[2025-03-08 21:01:03] pool-1-thread-6 - 5000 records committed(current total 145000 records), lap time = 0.549
[2025-03-08 21:01:03] pool-1-thread-9 - 5000 records committed(current total 150000 records), lap time = 0.611
[2025-03-08 21:01:03] pool-1-thread-8 - 5000 records committed(current total 150000 records), lap time = 0.552
[2025-03-08 21:01:03] pool-1-thread-1 - 5000 records committed(current total 150000 records), lap time = 0.513
[2025-03-08 21:01:03] pool-1-thread-3 - 5000 records committed(current total 145000 records), lap time = 0.542
[2025-03-08 21:01:03] pool-1-thread-7 - 5000 records committed(current total 145000 records), lap time = 0.544
[2025-03-08 21:01:03] pool-1-thread-10 - 5000 records committed(current total 155000 records), lap time = 0.635
[2025-03-08 21:01:03] pool-1-thread-5 - 5000 records committed(current total 150000 records), lap time = 0.648
[2025-03-08 21:01:04] pool-1-thread-2 - 5000 records committed(current total 160000 records), lap time = 0.658
[2025-03-08 21:01:04] pool-1-thread-4 - 5000 records committed(current total 150000 records), lap time = 0.697
[2025-03-08 21:01:04] pool-1-thread-9 - 5000 records committed(current total 155000 records), lap time = 0.709
[2025-03-08 21:01:04] pool-1-thread-1 - 5000 records committed(current total 155000 records), lap time = 0.700
[2025-03-08 21:01:04] pool-1-thread-6 - 5000 records committed(current total 150000 records), lap time = 0.722
[2025-03-08 21:01:04] pool-1-thread-8 - 5000 records committed(current total 155000 records), lap time = 0.715
[2025-03-08 21:01:04] pool-1-thread-7 - 5000 records committed(current total 150000 records), lap time = 0.645
[2025-03-08 21:01:04] pool-1-thread-3 - 5000 records committed(current total 150000 records), lap time = 0.663
[2025-03-08 21:01:04] pool-1-thread-10 - 5000 records committed(current total 160000 records), lap time = 0.604
[2025-03-08 21:01:04] pool-1-thread-5 - 5000 records committed(current total 155000 records), lap time = 0.591
[2025-03-08 21:01:04] pool-1-thread-2 - 5000 records committed(current total 165000 records), lap time = 0.572
[2025-03-08 21:01:04] pool-1-thread-4 - 5000 records committed(current total 155000 records), lap time = 0.554
[2025-03-08 21:01:04] pool-1-thread-6 - 5000 records committed(current total 155000 records), lap time = 0.563
[2025-03-08 21:01:04] pool-1-thread-1 - 5000 records committed(current total 160000 records), lap time = 0.572
[2025-03-08 21:01:04] pool-1-thread-9 - 5000 records committed(current total 160000 records), lap time = 0.593
[2025-03-08 21:01:04] pool-1-thread-8 - 5000 records committed(current total 160000 records), lap time = 0.582
[2025-03-08 21:01:04] pool-1-thread-7 - 5000 records committed(current total 155000 records), lap time = 0.576
[2025-03-08 21:01:04] pool-1-thread-3 - 5000 records committed(current total 155000 records), lap time = 0.590
[2025-03-08 21:01:05] pool-1-thread-10 - 5000 records committed(current total 165000 records), lap time = 0.824
[2025-03-08 21:01:05] pool-1-thread-5 - 5000 records committed(current total 160000 records), lap time = 0.803
[2025-03-08 21:01:05] pool-1-thread-2 - 5000 records committed(current total 170000 records), lap time = 0.759
[2025-03-08 21:01:05] pool-1-thread-4 - 5000 records committed(current total 160000 records), lap time = 0.738
[2025-03-08 21:01:05] pool-1-thread-6 - 5000 records committed(current total 160000 records), lap time = 0.727
[2025-03-08 21:01:05] pool-1-thread-1 - 5000 records committed(current total 165000 records), lap time = 0.732
[2025-03-08 21:01:05] pool-1-thread-9 - 5000 records committed(current total 165000 records), lap time = 0.729
[2025-03-08 21:01:05] pool-1-thread-8 - 5000 records committed(current total 165000 records), lap time = 0.744
[2025-03-08 21:01:05] pool-1-thread-7 - 5000 records committed(current total 160000 records), lap time = 0.745
[2025-03-08 21:01:05] pool-1-thread-3 - 5000 records committed(current total 160000 records), lap time = 0.733
[2025-03-08 21:01:06] pool-1-thread-10 - 5000 records committed(current total 170000 records), lap time = 0.741
[2025-03-08 21:01:06] pool-1-thread-5 - 5000 records committed(current total 165000 records), lap time = 0.735
[2025-03-08 21:01:06] pool-1-thread-2 - 5000 records committed(current total 175000 records), lap time = 0.740
[2025-03-08 21:01:06] pool-1-thread-4 - 5000 records committed(current total 165000 records), lap time = 0.747
[2025-03-08 21:01:06] pool-1-thread-6 - 5000 records committed(current total 165000 records), lap time = 0.719
[2025-03-08 21:01:06] pool-1-thread-9 - 5000 records committed(current total 170000 records), lap time = 0.750
[2025-03-08 21:01:06] pool-1-thread-1 - 5000 records committed(current total 170000 records), lap time = 0.773
[2025-03-08 21:01:06] pool-1-thread-7 - 5000 records committed(current total 165000 records), lap time = 0.760
[2025-03-08 21:01:06] pool-1-thread-8 - 5000 records committed(current total 170000 records), lap time = 0.773
[2025-03-08 21:01:06] pool-1-thread-3 - 5000 records committed(current total 165000 records), lap time = 0.771
[2025-03-08 21:01:06] pool-1-thread-10 - 5000 records committed(current total 175000 records), lap time = 0.606
[2025-03-08 21:01:06] pool-1-thread-5 - 5000 records committed(current total 170000 records), lap time = 0.608
[2025-03-08 21:01:06] pool-1-thread-2 - 5000 records committed(current total 180000 records), lap time = 0.609
[2025-03-08 21:01:06] pool-1-thread-4 - 5000 records committed(current total 170000 records), lap time = 0.596
[2025-03-08 21:01:06] pool-1-thread-6 - 5000 records committed(current total 170000 records), lap time = 0.590
[2025-03-08 21:01:06] pool-1-thread-9 - 5000 records committed(current total 175000 records), lap time = 0.539
[2025-03-08 21:01:06] pool-1-thread-8 - 5000 records committed(current total 175000 records), lap time = 0.511
[2025-03-08 21:01:06] pool-1-thread-7 - 5000 records committed(current total 170000 records), lap time = 0.525
[2025-03-08 21:01:06] pool-1-thread-1 - 5000 records committed(current total 175000 records), lap time = 0.551
[2025-03-08 21:01:06] pool-1-thread-3 - 5000 records committed(current total 170000 records), lap time = 0.524
[2025-03-08 21:01:07] pool-1-thread-10 - 5000 records committed(current total 180000 records), lap time = 0.643
[2025-03-08 21:01:07] pool-1-thread-5 - 5000 records committed(current total 175000 records), lap time = 0.640
[2025-03-08 21:01:07] pool-1-thread-4 - 5000 records committed(current total 175000 records), lap time = 0.652
[2025-03-08 21:01:07] pool-1-thread-2 - 5000 records committed(current total 185000 records), lap time = 0.674
[2025-03-08 21:01:07] pool-1-thread-6 - 5000 records committed(current total 175000 records), lap time = 0.933
[2025-03-08 21:01:07] pool-1-thread-5 - 5000 records committed(current total 180000 records), lap time = 0.348
[2025-03-08 21:01:07] pool-1-thread-8 - 5000 records committed(current total 180000 records), lap time = 0.955
[2025-03-08 21:01:07] pool-1-thread-1 - 5000 records committed(current total 180000 records), lap time = 0.941
[2025-03-08 21:01:07] pool-1-thread-9 - 5000 records committed(current total 180000 records), lap time = 0.964
[2025-03-08 21:01:07] pool-1-thread-3 - 5000 records committed(current total 175000 records), lap time = 0.931
[2025-03-08 21:01:07] pool-1-thread-10 - 5000 records committed(current total 185000 records), lap time = 0.359
[2025-03-08 21:01:07] pool-1-thread-7 - 5000 records committed(current total 175000 records), lap time = 0.948
[2025-03-08 21:01:07] pool-1-thread-2 - 5000 records committed(current total 190000 records), lap time = 0.307
[2025-03-08 21:01:07] pool-1-thread-4 - 5000 records committed(current total 180000 records), lap time = 0.329
[2025-03-08 21:01:08] pool-1-thread-6 - 5000 records committed(current total 180000 records), lap time = 0.607
[2025-03-08 21:01:08] pool-1-thread-3 - 5000 records committed(current total 180000 records), lap time = 0.633
[2025-03-08 21:01:08] pool-1-thread-4 - 5000 records committed(current total 185000 records), lap time = 0.643
[2025-03-08 21:01:08] pool-1-thread-1 - 5000 records committed(current total 185000 records), lap time = 0.651
[2025-03-08 21:01:08] pool-1-thread-9 - 5000 records committed(current total 185000 records), lap time = 0.651
[2025-03-08 21:01:08] pool-1-thread-5 - 5000 records committed(current total 185000 records), lap time = 0.651
[2025-03-08 21:01:08] pool-1-thread-2 - 5000 records committed(current total 195000 records), lap time = 0.656
[2025-03-08 21:01:08] pool-1-thread-10 - 5000 records committed(current total 190000 records), lap time = 0.656
[2025-03-08 21:01:08] pool-1-thread-8 - 5000 records committed(current total 185000 records), lap time = 0.669
[2025-03-08 21:01:08] pool-1-thread-7 - 5000 records committed(current total 180000 records), lap time = 0.669
[2025-03-08 21:01:08] pool-1-thread-6 - 5000 records committed(current total 185000 records), lap time = 0.604
[2025-03-08 21:01:08] pool-1-thread-4 - 5000 records committed(current total 190000 records), lap time = 0.585
[2025-03-08 21:01:08] pool-1-thread-3 - 5000 records committed(current total 185000 records), lap time = 0.603
[2025-03-08 21:01:08] pool-1-thread-1 - 5000 records committed(current total 190000 records), lap time = 0.592
[2025-03-08 21:01:08] pool-1-thread-9 - 5000 records committed(current total 190000 records), lap time = 0.592
[2025-03-08 21:01:08] pool-1-thread-5 - 5000 records committed(current total 190000 records), lap time = 0.597
[2025-03-08 21:01:08] pool-1-thread-7 - 5000 records committed(current total 185000 records), lap time = 0.584
[2025-03-08 21:01:08] pool-1-thread-10 - 5000 records committed(current total 195000 records), lap time = 0.598
[2025-03-08 21:01:08] pool-1-thread-2 - 5000 records committed(current total 200000 records), lap time = 0.599
[2025-03-08 21:01:08] pool-1-thread-8 - 5000 records committed(current total 190000 records), lap time = 0.592
[2025-03-08 21:01:09] pool-1-thread-6 - 5000 records committed(current total 190000 records), lap time = 0.549
[2025-03-08 21:01:09] pool-1-thread-4 - 5000 records committed(current total 195000 records), lap time = 0.541
[2025-03-08 21:01:09] pool-1-thread-1 - 5000 records committed(current total 195000 records), lap time = 0.538
[2025-03-08 21:01:09] pool-1-thread-9 - 5000 records committed(current total 195000 records), lap time = 0.538
[2025-03-08 21:01:09] pool-1-thread-3 - 5000 records committed(current total 190000 records), lap time = 0.549
[2025-03-08 21:01:09] pool-1-thread-10 - 5000 records committed(current total 200000 records), lap time = 0.539
[2025-03-08 21:01:09] pool-1-thread-5 - 5000 records committed(current total 195000 records), lap time = 0.556
[2025-03-08 21:01:09] pool-1-thread-7 - 5000 records committed(current total 190000 records), lap time = 0.550
[2025-03-08 21:01:09] pool-1-thread-8 - 5000 records committed(current total 195000 records), lap time = 0.544
[2025-03-08 21:01:09] pool-1-thread-2 - 5000 records committed(current total 205000 records), lap time = 0.549
[2025-03-08 21:01:10] pool-1-thread-6 - 5000 records committed(current total 195000 records), lap time = 0.579
[2025-03-08 21:01:10] pool-1-thread-4 - 5000 records committed(current total 200000 records), lap time = 0.640
[2025-03-08 21:01:10] pool-1-thread-9 - 5000 records committed(current total 200000 records), lap time = 0.638
[2025-03-08 21:01:10] pool-1-thread-1 - 5000 records committed(current total 200000 records), lap time = 0.643
[2025-03-08 21:01:10] pool-1-thread-8 - 5000 records committed(current total 200000 records), lap time = 0.627
[2025-03-08 21:01:10] pool-1-thread-3 - 5000 records committed(current total 195000 records), lap time = 0.651
[2025-03-08 21:01:10] pool-1-thread-10 - 5000 records committed(current total 205000 records), lap time = 0.666
[2025-03-08 21:01:10] pool-1-thread-5 - 5000 records committed(current total 200000 records), lap time = 0.865
[2025-03-08 21:01:10] pool-1-thread-7 - 5000 records committed(current total 195000 records), lap time = 0.865
[2025-03-08 21:01:10] pool-1-thread-2 - 5000 records committed(current total 210000 records), lap time = 0.865
[2025-03-08 21:01:10] pool-1-thread-6 - 5000 records committed(current total 200000 records), lap time = 0.671
[2025-03-08 21:01:10] pool-1-thread-4 - 5000 records committed(current total 205000 records), lap time = 0.647
[2025-03-08 21:01:10] pool-1-thread-9 - 5000 records committed(current total 205000 records), lap time = 0.644
[2025-03-08 21:01:10] pool-1-thread-1 - 5000 records committed(current total 205000 records), lap time = 0.646
[2025-03-08 21:01:10] pool-1-thread-8 - 5000 records committed(current total 205000 records), lap time = 0.663
[2025-03-08 21:01:10] pool-1-thread-3 - 5000 records committed(current total 200000 records), lap time = 0.672
[2025-03-08 21:01:10] pool-1-thread-10 - 5000 records committed(current total 210000 records), lap time = 0.746
[2025-03-08 21:01:11] pool-1-thread-5 - 5000 records committed(current total 205000 records), lap time = 0.738
[2025-03-08 21:01:11] pool-1-thread-7 - 5000 records committed(current total 200000 records), lap time = 0.746
[2025-03-08 21:01:11] pool-1-thread-2 - 5000 records committed(current total 215000 records), lap time = 0.752
[2025-03-08 21:01:11] pool-1-thread-6 - 5000 records committed(current total 205000 records), lap time = 0.613
[2025-03-08 21:01:11] pool-1-thread-9 - 5000 records committed(current total 210000 records), lap time = 0.636
[2025-03-08 21:01:11] pool-1-thread-1 - 5000 records committed(current total 210000 records), lap time = 0.641
[2025-03-08 21:01:11] pool-1-thread-4 - 5000 records committed(current total 210000 records), lap time = 0.661
[2025-03-08 21:01:11] pool-1-thread-8 - 5000 records committed(current total 210000 records), lap time = 0.630
[2025-03-08 21:01:11] pool-1-thread-3 - 5000 records committed(current total 205000 records), lap time = 0.624
[2025-03-08 21:01:11] pool-1-thread-10 - 5000 records committed(current total 215000 records), lap time = 0.539
[2025-03-08 21:01:11] pool-1-thread-5 - 5000 records committed(current total 210000 records), lap time = 0.506
[2025-03-08 21:01:11] pool-1-thread-2 - 5000 records committed(current total 220000 records), lap time = 0.516
[2025-03-08 21:01:11] pool-1-thread-7 - 5000 records committed(current total 205000 records), lap time = 0.528
[2025-03-08 21:01:11] pool-1-thread-6 - 5000 records committed(current total 210000 records), lap time = 0.658
[2025-03-08 21:01:12] pool-1-thread-9 - 5000 records committed(current total 215000 records), lap time = 0.626
[2025-03-08 21:01:12] pool-1-thread-1 - 5000 records committed(current total 215000 records), lap time = 0.634
[2025-03-08 21:01:12] pool-1-thread-4 - 5000 records committed(current total 215000 records), lap time = 0.634
[2025-03-08 21:01:12] pool-1-thread-8 - 5000 records committed(current total 215000 records), lap time = 0.642
[2025-03-08 21:01:12] pool-1-thread-3 - 5000 records committed(current total 210000 records), lap time = 0.649
[2025-03-08 21:01:12] pool-1-thread-10 - 5000 records committed(current total 220000 records), lap time = 0.668
[2025-03-08 21:01:12] pool-1-thread-5 - 5000 records committed(current total 215000 records), lap time = 0.761
[2025-03-08 21:01:12] pool-1-thread-7 - 5000 records committed(current total 210000 records), lap time = 0.749
[2025-03-08 21:01:12] pool-1-thread-2 - 5000 records committed(current total 225000 records), lap time = 0.755
[2025-03-08 21:01:12] pool-1-thread-6 - 5000 records committed(current total 215000 records), lap time = 0.548
[2025-03-08 21:01:12] pool-1-thread-9 - 5000 records committed(current total 220000 records), lap time = 0.581
[2025-03-08 21:01:12] pool-1-thread-4 - 5000 records committed(current total 220000 records), lap time = 0.579
[2025-03-08 21:01:12] pool-1-thread-1 - 5000 records committed(current total 220000 records), lap time = 0.593
[2025-03-08 21:01:12] pool-1-thread-3 - 5000 records committed(current total 215000 records), lap time = 0.565
[2025-03-08 21:01:12] pool-1-thread-8 - 5000 records committed(current total 220000 records), lap time = 0.587
[2025-03-08 21:01:12] pool-1-thread-10 - 5000 records committed(current total 225000 records), lap time = 0.579
[2025-03-08 21:01:13] pool-1-thread-5 - 5000 records committed(current total 220000 records), lap time = 0.730
[2025-03-08 21:01:13] pool-1-thread-2 - 5000 records committed(current total 230000 records), lap time = 0.715
[2025-03-08 21:01:13] pool-1-thread-7 - 5000 records committed(current total 215000 records), lap time = 0.723
[2025-03-08 21:01:13] pool-1-thread-6 - 5000 records committed(current total 220000 records), lap time = 0.772
[2025-03-08 21:01:13] pool-1-thread-9 - 5000 records committed(current total 225000 records), lap time = 0.776
[2025-03-08 21:01:13] pool-1-thread-4 - 5000 records committed(current total 225000 records), lap time = 0.798
[2025-03-08 21:01:13] pool-1-thread-3 - 5000 records committed(current total 220000 records), lap time = 0.794
[2025-03-08 21:01:13] pool-1-thread-8 - 5000 records committed(current total 225000 records), lap time = 0.785
[2025-03-08 21:01:13] pool-1-thread-1 - 5000 records committed(current total 225000 records), lap time = 0.811
[2025-03-08 21:01:13] pool-1-thread-10 - 5000 records committed(current total 230000 records), lap time = 0.763
[2025-03-08 21:01:13] pool-1-thread-2 - 5000 records committed(current total 235000 records), lap time = 0.640
[2025-03-08 21:01:13] pool-1-thread-5 - 5000 records committed(current total 225000 records), lap time = 0.652
[2025-03-08 21:01:13] pool-1-thread-7 - 5000 records committed(current total 220000 records), lap time = 0.672
[2025-03-08 21:01:13] pool-1-thread-6 - 5000 records committed(current total 225000 records), lap time = 0.718
[2025-03-08 21:01:14] pool-1-thread-9 - 5000 records committed(current total 230000 records), lap time = 0.682
[2025-03-08 21:01:14] pool-1-thread-3 - 5000 records committed(current total 225000 records), lap time = 0.702
[2025-03-08 21:01:14] pool-1-thread-4 - 5000 records committed(current total 230000 records), lap time = 0.724
[2025-03-08 21:01:14] pool-1-thread-1 - 5000 records committed(current total 230000 records), lap time = 0.719
[2025-03-08 21:01:14] pool-1-thread-8 - 5000 records committed(current total 230000 records), lap time = 0.736
[2025-03-08 21:01:14] pool-1-thread-10 - 5000 records committed(current total 235000 records), lap time = 0.728
[2025-03-08 21:01:14] pool-1-thread-2 - 5000 records committed(current total 240000 records), lap time = 0.891
[2025-03-08 21:01:14] pool-1-thread-5 - 5000 records committed(current total 230000 records), lap time = 0.904
[2025-03-08 21:01:14] pool-1-thread-7 - 5000 records committed(current total 225000 records), lap time = 0.871
[2025-03-08 21:01:14] pool-1-thread-6 - 5000 records committed(current total 230000 records), lap time = 0.679
[2025-03-08 21:01:14] pool-1-thread-9 - 5000 records committed(current total 235000 records), lap time = 0.598
[2025-03-08 21:01:14] pool-1-thread-4 - 5000 records committed(current total 235000 records), lap time = 0.520
[2025-03-08 21:01:14] pool-1-thread-3 - 5000 records committed(current total 230000 records), lap time = 0.535
[2025-03-08 21:01:14] pool-1-thread-8 - 5000 records committed(current total 235000 records), lap time = 0.532
[2025-03-08 21:01:14] pool-1-thread-1 - 5000 records committed(current total 235000 records), lap time = 0.553
[2025-03-08 21:01:14] pool-1-thread-10 - 5000 records committed(current total 240000 records), lap time = 0.552
[2025-03-08 21:01:15] pool-1-thread-2 - 5000 records committed(current total 245000 records), lap time = 0.590
[2025-03-08 21:01:15] pool-1-thread-9 - 5000 records committed(current total 240000 records), lap time = 0.597
[2025-03-08 21:01:15] pool-1-thread-7 - 5000 records committed(current total 230000 records), lap time = 0.604
[2025-03-08 21:01:15] pool-1-thread-6 - 5000 records committed(current total 235000 records), lap time = 0.614
[2025-03-08 21:01:15] pool-1-thread-4 - 5000 records committed(current total 240000 records), lap time = 0.604
[2025-03-08 21:01:15] pool-1-thread-5 - 5000 records committed(current total 235000 records), lap time = 0.619
[2025-03-08 21:01:15] pool-1-thread-3 - 5000 records committed(current total 235000 records), lap time = 0.609
[2025-03-08 21:01:15] pool-1-thread-8 - 5000 records committed(current total 240000 records), lap time = 0.584
[2025-03-08 21:01:15] pool-1-thread-1 - 5000 records committed(current total 240000 records), lap time = 0.590
[2025-03-08 21:01:15] pool-1-thread-10 - 5000 records committed(current total 245000 records), lap time = 0.584
[2025-03-08 21:01:15] pool-1-thread-2 - 5000 records committed(current total 250000 records), lap time = 0.653
[2025-03-08 21:01:15] pool-1-thread-9 - 5000 records committed(current total 245000 records), lap time = 0.670
[2025-03-08 21:01:15] pool-1-thread-7 - 5000 records committed(current total 235000 records), lap time = 0.673
[2025-03-08 21:01:15] pool-1-thread-4 - 5000 records committed(current total 245000 records), lap time = 0.675
[2025-03-08 21:01:15] pool-1-thread-6 - 5000 records committed(current total 240000 records), lap time = 0.694
[2025-03-08 21:01:15] pool-1-thread-3 - 5000 records committed(current total 240000 records), lap time = 0.697
[2025-03-08 21:01:15] pool-1-thread-8 - 5000 records committed(current total 245000 records), lap time = 0.691
[2025-03-08 21:01:15] pool-1-thread-5 - 5000 records committed(current total 240000 records), lap time = 0.703
[2025-03-08 21:01:16] pool-1-thread-10 - 5000 records committed(current total 250000 records), lap time = 0.695
[2025-03-08 21:01:16] pool-1-thread-1 - 5000 records committed(current total 245000 records), lap time = 0.709
[2025-03-08 21:01:16] pool-1-thread-2 - 5000 records committed(current total 255000 records), lap time = 0.647
[2025-03-08 21:01:16] pool-1-thread-7 - 5000 records committed(current total 240000 records), lap time = 0.625
[2025-03-08 21:01:16] pool-1-thread-9 - 5000 records committed(current total 250000 records), lap time = 0.638
[2025-03-08 21:01:16] pool-1-thread-4 - 5000 records committed(current total 250000 records), lap time = 0.632
[2025-03-08 21:01:16] pool-1-thread-6 - 5000 records committed(current total 245000 records), lap time = 0.639
[2025-03-08 21:01:16] pool-1-thread-3 - 5000 records committed(current total 245000 records), lap time = 0.630
[2025-03-08 21:01:16] pool-1-thread-5 - 5000 records committed(current total 245000 records), lap time = 0.647
[2025-03-08 21:01:16] pool-1-thread-8 - 5000 records committed(current total 250000 records), lap time = 0.658
[2025-03-08 21:01:16] pool-1-thread-1 - 5000 records committed(current total 250000 records), lap time = 0.630
[2025-03-08 21:01:16] pool-1-thread-10 - 5000 records committed(current total 255000 records), lap time = 0.636
[2025-03-08 21:01:17] pool-1-thread-2 - 5000 records committed(current total 260000 records), lap time = 0.745
[2025-03-08 21:01:17] pool-1-thread-9 - 5000 records committed(current total 255000 records), lap time = 0.749
[2025-03-08 21:01:17] pool-1-thread-7 - 5000 records committed(current total 245000 records), lap time = 0.762
[2025-03-08 21:01:17] pool-1-thread-4 - 5000 records committed(current total 255000 records), lap time = 0.752
[2025-03-08 21:01:17] pool-1-thread-6 - 5000 records committed(current total 250000 records), lap time = 0.749
[2025-03-08 21:01:17] pool-1-thread-3 - 5000 records committed(current total 250000 records), lap time = 0.762
[2025-03-08 21:01:17] pool-1-thread-5 - 5000 records committed(current total 250000 records), lap time = 0.749
[2025-03-08 21:01:17] pool-1-thread-8 - 5000 records committed(current total 255000 records), lap time = 0.738
[2025-03-08 21:01:17] pool-1-thread-1 - 5000 records committed(current total 255000 records), lap time = 0.768
[2025-03-08 21:01:17] pool-1-thread-10 - 5000 records committed(current total 260000 records), lap time = 0.776
[2025-03-08 21:01:17] pool-1-thread-2 - 5000 records committed(current total 265000 records), lap time = 0.482
[2025-03-08 21:01:17] pool-1-thread-9 - 5000 records committed(current total 260000 records), lap time = 0.501
[2025-03-08 21:01:17] pool-1-thread-4 - 5000 records committed(current total 260000 records), lap time = 0.535
[2025-03-08 21:01:17] pool-1-thread-7 - 5000 records committed(current total 250000 records), lap time = 0.568
[2025-03-08 21:01:17] pool-1-thread-6 - 5000 records committed(current total 255000 records), lap time = 0.563
[2025-03-08 21:01:17] pool-1-thread-3 - 5000 records committed(current total 255000 records), lap time = 0.559
[2025-03-08 21:01:17] pool-1-thread-8 - 5000 records committed(current total 260000 records), lap time = 0.562
[2025-03-08 21:01:17] pool-1-thread-5 - 5000 records committed(current total 255000 records), lap time = 0.571
[2025-03-08 21:01:17] pool-1-thread-1 - 5000 records committed(current total 260000 records), lap time = 0.562
[2025-03-08 21:01:17] pool-1-thread-10 - 5000 records committed(current total 265000 records), lap time = 0.565
[2025-03-08 21:01:18] pool-1-thread-9 - 5000 records committed(current total 265000 records), lap time = 0.571
[2025-03-08 21:01:18] pool-1-thread-2 - 5000 records committed(current total 270000 records), lap time = 0.637
[2025-03-08 21:01:18] pool-1-thread-4 - 5000 records committed(current total 265000 records), lap time = 0.561
[2025-03-08 21:01:18] pool-1-thread-7 - 5000 records committed(current total 255000 records), lap time = 0.565
[2025-03-08 21:01:18] pool-1-thread-6 - 5000 records committed(current total 260000 records), lap time = 0.565
[2025-03-08 21:01:18] pool-1-thread-3 - 5000 records committed(current total 260000 records), lap time = 0.556
[2025-03-08 21:01:18] pool-1-thread-8 - 5000 records committed(current total 265000 records), lap time = 0.554
[2025-03-08 21:01:18] pool-1-thread-5 - 5000 records committed(current total 260000 records), lap time = 0.550
[2025-03-08 21:01:18] pool-1-thread-1 - 5000 records committed(current total 265000 records), lap time = 0.536
[2025-03-08 21:01:18] pool-1-thread-10 - 5000 records committed(current total 270000 records), lap time = 0.533
[2025-03-08 21:01:19] pool-1-thread-2 - 5000 records committed(current total 275000 records), lap time = 0.710
[2025-03-08 21:01:19] pool-1-thread-9 - 5000 records committed(current total 270000 records), lap time = 0.724
[2025-03-08 21:01:19] pool-1-thread-4 - 5000 records committed(current total 270000 records), lap time = 0.695
[2025-03-08 21:01:19] pool-1-thread-7 - 5000 records committed(current total 260000 records), lap time = 0.691
[2025-03-08 21:01:19] pool-1-thread-6 - 5000 records committed(current total 265000 records), lap time = 0.709
[2025-03-08 21:01:19] pool-1-thread-3 - 5000 records committed(current total 265000 records), lap time = 0.760
[2025-03-08 21:01:19] pool-1-thread-5 - 5000 records committed(current total 265000 records), lap time = 0.941
[2025-03-08 21:01:19] pool-1-thread-8 - 5000 records committed(current total 270000 records), lap time = 0.946
[2025-03-08 21:01:19] pool-1-thread-10 - 5000 records committed(current total 275000 records), lap time = 0.938
[2025-03-08 21:01:19] pool-1-thread-1 - 5000 records committed(current total 270000 records), lap time = 0.945
[2025-03-08 21:01:19] pool-1-thread-2 - 5000 records committed(current total 280000 records), lap time = 0.499
[2025-03-08 21:01:19] pool-1-thread-9 - 5000 records committed(current total 275000 records), lap time = 0.513
[2025-03-08 21:01:19] pool-1-thread-4 - 5000 records committed(current total 275000 records), lap time = 0.515
[2025-03-08 21:01:19] pool-1-thread-7 - 5000 records committed(current total 265000 records), lap time = 0.501
[2025-03-08 21:01:19] pool-1-thread-6 - 5000 records committed(current total 270000 records), lap time = 0.469
[2025-03-08 21:01:19] pool-1-thread-3 - 5000 records committed(current total 270000 records), lap time = 0.494
[2025-03-08 21:01:20] pool-1-thread-5 - 5000 records committed(current total 270000 records), lap time = 0.591
[2025-03-08 21:01:20] pool-1-thread-8 - 5000 records committed(current total 275000 records), lap time = 0.627
[2025-03-08 21:01:20] pool-1-thread-10 - 5000 records committed(current total 280000 records), lap time = 0.633
[2025-03-08 21:01:20] pool-1-thread-1 - 5000 records committed(current total 275000 records), lap time = 0.646
[2025-03-08 21:01:20] pool-1-thread-2 - 5000 records committed(current total 285000 records), lap time = 0.629
[2025-03-08 21:01:20] pool-1-thread-9 - 5000 records committed(current total 280000 records), lap time = 0.651
[2025-03-08 21:01:20] pool-1-thread-4 - 5000 records committed(current total 280000 records), lap time = 0.664
[2025-03-08 21:01:20] pool-1-thread-7 - 5000 records committed(current total 270000 records), lap time = 0.663
[2025-03-08 21:01:20] pool-1-thread-6 - 5000 records committed(current total 275000 records), lap time = 0.672
[2025-03-08 21:01:20] pool-1-thread-3 - 5000 records committed(current total 275000 records), lap time = 0.674
[2025-03-08 21:01:20] pool-1-thread-5 - 5000 records committed(current total 275000 records), lap time = 0.517
[2025-03-08 21:01:20] pool-1-thread-8 - 5000 records committed(current total 280000 records), lap time = 0.492
[2025-03-08 21:01:20] pool-1-thread-1 - 5000 records committed(current total 280000 records), lap time = 0.465
[2025-03-08 21:01:20] pool-1-thread-10 - 5000 records committed(current total 285000 records), lap time = 0.499
[2025-03-08 21:01:20] pool-1-thread-2 - 5000 records committed(current total 290000 records), lap time = 0.479
[2025-03-08 21:01:20] pool-1-thread-9 - 5000 records committed(current total 285000 records), lap time = 0.504
[2025-03-08 21:01:20] pool-1-thread-4 - 5000 records committed(current total 285000 records), lap time = 0.520
[2025-03-08 21:01:20] pool-1-thread-7 - 5000 records committed(current total 275000 records), lap time = 0.527
[2025-03-08 21:01:20] pool-1-thread-6 - 5000 records committed(current total 280000 records), lap time = 0.563
[2025-03-08 21:01:21] pool-1-thread-3 - 5000 records committed(current total 280000 records), lap time = 0.584
[2025-03-08 21:01:21] pool-1-thread-5 - 5000 records committed(current total 280000 records), lap time = 0.763
[2025-03-08 21:01:21] pool-1-thread-1 - 5000 records committed(current total 285000 records), lap time = 0.759
[2025-03-08 21:01:21] pool-1-thread-10 - 5000 records committed(current total 290000 records), lap time = 0.737
[2025-03-08 21:01:21] pool-1-thread-8 - 5000 records committed(current total 285000 records), lap time = 0.770
[2025-03-08 21:01:21] pool-1-thread-2 - 5000 records committed(current total 295000 records), lap time = 0.627
[2025-03-08 21:01:21] pool-1-thread-9 - 5000 records committed(current total 290000 records), lap time = 0.687
[2025-03-08 21:01:21] pool-1-thread-7 - 5000 records committed(current total 280000 records), lap time = 0.634
[2025-03-08 21:01:21] pool-1-thread-4 - 5000 records committed(current total 290000 records), lap time = 0.658
[2025-03-08 21:01:21] pool-1-thread-6 - 5000 records committed(current total 285000 records), lap time = 0.600
[2025-03-08 21:01:21] pool-1-thread-3 - 5000 records committed(current total 285000 records), lap time = 0.561
[2025-03-08 21:01:21] pool-1-thread-1 - 5000 records committed(current total 290000 records), lap time = 0.637
[2025-03-08 21:01:21] pool-1-thread-5 - 5000 records committed(current total 285000 records), lap time = 0.663
[2025-03-08 21:01:21] pool-1-thread-8 - 5000 records committed(current total 290000 records), lap time = 0.657
[2025-03-08 21:01:21] pool-1-thread-2 - 5000 records committed(current total 300000 records), lap time = 0.647
[2025-03-08 21:01:21] pool-1-thread-10 - 5000 records committed(current total 295000 records), lap time = 0.657
[2025-03-08 21:01:22] pool-1-thread-9 - 5000 records committed(current total 295000 records), lap time = 0.607
[2025-03-08 21:01:22] pool-1-thread-7 - 5000 records committed(current total 285000 records), lap time = 0.610
[2025-03-08 21:01:22] pool-1-thread-4 - 5000 records committed(current total 295000 records), lap time = 0.627
[2025-03-08 21:01:22] pool-1-thread-6 - 5000 records committed(current total 290000 records), lap time = 0.626
[2025-03-08 21:01:22] pool-1-thread-3 - 5000 records committed(current total 290000 records), lap time = 0.614
[2025-03-08 21:01:22] pool-1-thread-1 - 5000 records committed(current total 295000 records), lap time = 0.523
[2025-03-08 21:01:22] pool-1-thread-5 - 5000 records committed(current total 290000 records), lap time = 0.530
[2025-03-08 21:01:22] pool-1-thread-10 - 5000 records committed(current total 300000 records), lap time = 0.524
[2025-03-08 21:01:22] pool-1-thread-2 - 5000 records committed(current total 305000 records), lap time = 0.532
[2025-03-08 21:01:22] pool-1-thread-8 - 5000 records committed(current total 295000 records), lap time = 0.563
[2025-03-08 21:01:22] pool-1-thread-9 - 5000 records committed(current total 300000 records), lap time = 0.598
[2025-03-08 21:01:22] pool-1-thread-7 - 5000 records committed(current total 290000 records), lap time = 0.596
[2025-03-08 21:01:22] pool-1-thread-4 - 5000 records committed(current total 300000 records), lap time = 0.588
[2025-03-08 21:01:22] pool-1-thread-6 - 5000 records committed(current total 295000 records), lap time = 0.580
[2025-03-08 21:01:22] pool-1-thread-3 - 5000 records committed(current total 295000 records), lap time = 0.638
[2025-03-08 21:01:23] pool-1-thread-1 - 5000 records committed(current total 300000 records), lap time = 0.840
[2025-03-08 21:01:23] pool-1-thread-8 - 5000 records committed(current total 300000 records), lap time = 0.803
[2025-03-08 21:01:23] pool-1-thread-2 - 5000 records committed(current total 310000 records), lap time = 0.834
[2025-03-08 21:01:23] pool-1-thread-7 - 5000 records committed(current total 295000 records), lap time = 0.673
[2025-03-08 21:01:23] pool-1-thread-5 - 5000 records committed(current total 295000 records), lap time = 0.848
[2025-03-08 21:01:23] pool-1-thread-10 - 5000 records committed(current total 305000 records), lap time = 0.842
[2025-03-08 21:01:23] pool-1-thread-9 - 5000 records committed(current total 305000 records), lap time = 0.682
[2025-03-08 21:01:23] pool-1-thread-4 - 5000 records committed(current total 305000 records), lap time = 0.661
[2025-03-08 21:01:23] pool-1-thread-3 - 5000 records committed(current total 300000 records), lap time = 0.540
[2025-03-08 21:01:23] pool-1-thread-6 - 5000 records committed(current total 300000 records), lap time = 0.654
[2025-03-08 21:01:23] pool-1-thread-1 - 5000 records committed(current total 305000 records), lap time = 0.620
[2025-03-08 21:01:24] pool-1-thread-4 - 5000 records committed(current total 310000 records), lap time = 0.638
[2025-03-08 21:01:24] pool-1-thread-2 - 5000 records committed(current total 315000 records), lap time = 0.662
[2025-03-08 21:01:24] pool-1-thread-3 - 5000 records committed(current total 305000 records), lap time = 0.666
[2025-03-08 21:01:24] pool-1-thread-7 - 5000 records committed(current total 300000 records), lap time = 0.672
[2025-03-08 21:01:24] pool-1-thread-6 - 5000 records committed(current total 305000 records), lap time = 0.666
[2025-03-08 21:01:24] pool-1-thread-8 - 5000 records committed(current total 305000 records), lap time = 0.672
[2025-03-08 21:01:24] pool-1-thread-5 - 5000 records committed(current total 300000 records), lap time = 0.672
[2025-03-08 21:01:24] pool-1-thread-10 - 5000 records committed(current total 310000 records), lap time = 0.672
[2025-03-08 21:01:24] pool-1-thread-9 - 5000 records committed(current total 310000 records), lap time = 0.672
[2025-03-08 21:01:24] pool-1-thread-1 - 5000 records committed(current total 310000 records), lap time = 0.505
[2025-03-08 21:01:24] pool-1-thread-4 - 5000 records committed(current total 315000 records), lap time = 0.532
[2025-03-08 21:01:24] pool-1-thread-9 - 5000 records committed(current total 315000 records), lap time = 0.564
[2025-03-08 21:01:24] pool-1-thread-10 - 5000 records committed(current total 315000 records), lap time = 0.569
[2025-03-08 21:01:24] pool-1-thread-2 - 5000 records committed(current total 320000 records), lap time = 0.580
[2025-03-08 21:01:24] pool-1-thread-8 - 5000 records committed(current total 310000 records), lap time = 0.589
[2025-03-08 21:01:24] pool-1-thread-6 - 5000 records committed(current total 310000 records), lap time = 0.589
[2025-03-08 21:01:24] pool-1-thread-7 - 5000 records committed(current total 305000 records), lap time = 0.589
[2025-03-08 21:01:24] pool-1-thread-5 - 5000 records committed(current total 305000 records), lap time = 0.602
[2025-03-08 21:01:24] pool-1-thread-3 - 5000 records committed(current total 310000 records), lap time = 0.608
[2025-03-08 21:01:25] pool-1-thread-1 - 5000 records committed(current total 315000 records), lap time = 0.724
[2025-03-08 21:01:25] pool-1-thread-4 - 5000 records committed(current total 320000 records), lap time = 0.700
[2025-03-08 21:01:25] pool-1-thread-9 - 5000 records committed(current total 320000 records), lap time = 0.846
[2025-03-08 21:01:25] pool-1-thread-3 - 5000 records committed(current total 315000 records), lap time = 0.843
[2025-03-08 21:01:25] pool-1-thread-4 - 5000 records committed(current total 325000 records), lap time = 0.247
[2025-03-08 21:01:25] pool-1-thread-10 - 5000 records committed(current total 320000 records), lap time = 0.881
[2025-03-08 21:01:25] pool-1-thread-6 - 5000 records committed(current total 315000 records), lap time = 0.862
[2025-03-08 21:01:25] pool-1-thread-5 - 5000 records committed(current total 310000 records), lap time = 0.849
[2025-03-08 21:01:25] pool-1-thread-8 - 5000 records committed(current total 315000 records), lap time = 0.862
[2025-03-08 21:01:25] pool-1-thread-1 - 5000 records committed(current total 320000 records), lap time = 0.294
[2025-03-08 21:01:25] pool-1-thread-2 - 5000 records committed(current total 325000 records), lap time = 0.881
[2025-03-08 21:01:25] pool-1-thread-7 - 5000 records committed(current total 310000 records), lap time = 0.862
[2025-03-08 21:01:26] pool-1-thread-9 - 5000 records committed(current total 325000 records), lap time = 0.811
[2025-03-08 21:01:26] pool-1-thread-1 - 5000 records committed(current total 325000 records), lap time = 0.805
[2025-03-08 21:01:26] pool-1-thread-10 - 5000 records committed(current total 325000 records), lap time = 0.810
[2025-03-08 21:01:26] pool-1-thread-6 - 5000 records committed(current total 320000 records), lap time = 0.831
[2025-03-08 21:01:26] pool-1-thread-5 - 5000 records committed(current total 315000 records), lap time = 0.840
[2025-03-08 21:01:26] pool-1-thread-3 - 5000 records committed(current total 320000 records), lap time = 0.840
[2025-03-08 21:01:26] pool-1-thread-2 - 5000 records committed(current total 330000 records), lap time = 0.840
[2025-03-08 21:01:26] pool-1-thread-8 - 5000 records committed(current total 320000 records), lap time = 0.840
[2025-03-08 21:01:26] pool-1-thread-4 - 5000 records committed(current total 330000 records), lap time = 0.848
[2025-03-08 21:01:26] pool-1-thread-7 - 5000 records committed(current total 315000 records), lap time = 0.848
[2025-03-08 21:01:26] pool-1-thread-9 - 5000 records committed(current total 330000 records), lap time = 0.524
[2025-03-08 21:01:26] pool-1-thread-1 - 5000 records committed(current total 330000 records), lap time = 0.509
[2025-03-08 21:01:26] pool-1-thread-10 - 5000 records committed(current total 330000 records), lap time = 0.508
[2025-03-08 21:01:26] pool-1-thread-6 - 5000 records committed(current total 325000 records), lap time = 0.500
[2025-03-08 21:01:26] pool-1-thread-5 - 5000 records committed(current total 320000 records), lap time = 0.497
[2025-03-08 21:01:26] pool-1-thread-8 - 5000 records committed(current total 325000 records), lap time = 0.504
[2025-03-08 21:01:26] pool-1-thread-3 - 5000 records committed(current total 325000 records), lap time = 0.504
[2025-03-08 21:01:26] pool-1-thread-4 - 5000 records committed(current total 335000 records), lap time = 0.502
[2025-03-08 21:01:26] pool-1-thread-7 - 5000 records committed(current total 320000 records), lap time = 0.511
[2025-03-08 21:01:26] pool-1-thread-2 - 5000 records committed(current total 335000 records), lap time = 0.543
[2025-03-08 21:01:27] pool-1-thread-9 - 5000 records committed(current total 335000 records), lap time = 0.798
[2025-03-08 21:01:27] pool-1-thread-5 - 5000 records committed(current total 325000 records), lap time = 0.776
[2025-03-08 21:01:27] pool-1-thread-2 - 5000 records committed(current total 340000 records), lap time = 0.730
[2025-03-08 21:01:27] pool-1-thread-10 - 5000 records committed(current total 335000 records), lap time = 0.793
[2025-03-08 21:01:27] pool-1-thread-6 - 5000 records committed(current total 330000 records), lap time = 0.782
[2025-03-08 21:01:27] pool-1-thread-8 - 5000 records committed(current total 330000 records), lap time = 0.769
[2025-03-08 21:01:27] pool-1-thread-1 - 5000 records committed(current total 335000 records), lap time = 0.799
[2025-03-08 21:01:27] pool-1-thread-7 - 5000 records committed(current total 325000 records), lap time = 0.754
[2025-03-08 21:01:27] pool-1-thread-4 - 5000 records committed(current total 340000 records), lap time = 0.763
[2025-03-08 21:01:27] pool-1-thread-3 - 5000 records committed(current total 330000 records), lap time = 0.769
[2025-03-08 21:01:28] pool-1-thread-9 - 5000 records committed(current total 340000 records), lap time = 0.683
[2025-03-08 21:01:28] pool-1-thread-6 - 5000 records committed(current total 335000 records), lap time = 0.694
[2025-03-08 21:01:28] pool-1-thread-1 - 5000 records committed(current total 340000 records), lap time = 0.701
[2025-03-08 21:01:28] pool-1-thread-4 - 5000 records committed(current total 345000 records), lap time = 0.701
[2025-03-08 21:01:28] pool-1-thread-5 - 5000 records committed(current total 330000 records), lap time = 0.702
[2025-03-08 21:01:28] pool-1-thread-3 - 5000 records committed(current total 335000 records), lap time = 0.701
[2025-03-08 21:01:28] pool-1-thread-7 - 5000 records committed(current total 330000 records), lap time = 0.714
[2025-03-08 21:01:28] pool-1-thread-2 - 5000 records committed(current total 345000 records), lap time = 0.714
[2025-03-08 21:01:28] pool-1-thread-8 - 5000 records committed(current total 335000 records), lap time = 0.714
[2025-03-08 21:01:28] pool-1-thread-10 - 5000 records committed(current total 340000 records), lap time = 0.714
[2025-03-08 21:01:28] pool-1-thread-9 - 5000 records committed(current total 345000 records), lap time = 0.506
[2025-03-08 21:01:28] pool-1-thread-1 - 5000 records committed(current total 345000 records), lap time = 0.612
[2025-03-08 21:01:28] pool-1-thread-3 - 5000 records committed(current total 340000 records), lap time = 0.625
[2025-03-08 21:01:28] pool-1-thread-4 - 5000 records committed(current total 350000 records), lap time = 0.631
[2025-03-08 21:01:28] pool-1-thread-6 - 5000 records committed(current total 340000 records), lap time = 0.638
[2025-03-08 21:01:28] pool-1-thread-2 - 5000 records committed(current total 350000 records), lap time = 0.623
[2025-03-08 21:01:28] pool-1-thread-8 - 5000 records committed(current total 340000 records), lap time = 0.638
[2025-03-08 21:01:28] pool-1-thread-5 - 5000 records committed(current total 335000 records), lap time = 0.667
[2025-03-08 21:01:28] pool-1-thread-10 - 5000 records committed(current total 345000 records), lap time = 0.653
[2025-03-08 21:01:28] pool-1-thread-7 - 5000 records committed(current total 335000 records), lap time = 0.654
[2025-03-08 21:01:29] pool-1-thread-9 - 5000 records committed(current total 350000 records), lap time = 0.626
[2025-03-08 21:01:29] pool-1-thread-4 - 5000 records committed(current total 355000 records), lap time = 0.524
[2025-03-08 21:01:29] pool-1-thread-1 - 5000 records committed(current total 350000 records), lap time = 0.551
[2025-03-08 21:01:29] pool-1-thread-3 - 5000 records committed(current total 345000 records), lap time = 0.539
[2025-03-08 21:01:29] pool-1-thread-6 - 5000 records committed(current total 345000 records), lap time = 0.539
[2025-03-08 21:01:29] pool-1-thread-2 - 5000 records committed(current total 355000 records), lap time = 0.541
[2025-03-08 21:01:29] pool-1-thread-8 - 5000 records committed(current total 345000 records), lap time = 0.540
[2025-03-08 21:01:29] pool-1-thread-10 - 5000 records committed(current total 350000 records), lap time = 0.536
[2025-03-08 21:01:29] pool-1-thread-7 - 5000 records committed(current total 340000 records), lap time = 0.547
[2025-03-08 21:01:29] pool-1-thread-5 - 5000 records committed(current total 340000 records), lap time = 0.556
[2025-03-08 21:01:29] pool-1-thread-9 - 5000 records committed(current total 355000 records), lap time = 0.522
[2025-03-08 21:01:30] pool-1-thread-4 - 5000 records committed(current total 360000 records), lap time = 0.602
[2025-03-08 21:01:30] pool-1-thread-3 - 5000 records committed(current total 350000 records), lap time = 0.604
[2025-03-08 21:01:30] pool-1-thread-6 - 5000 records committed(current total 350000 records), lap time = 0.608
[2025-03-08 21:01:30] pool-1-thread-1 - 5000 records committed(current total 355000 records), lap time = 0.614
[2025-03-08 21:01:30] pool-1-thread-2 - 5000 records committed(current total 360000 records), lap time = 0.600
[2025-03-08 21:01:30] pool-1-thread-10 - 5000 records committed(current total 355000 records), lap time = 0.584
[2025-03-08 21:01:30] pool-1-thread-7 - 5000 records committed(current total 345000 records), lap time = 0.582
[2025-03-08 21:01:30] pool-1-thread-8 - 5000 records committed(current total 350000 records), lap time = 0.610
[2025-03-08 21:01:30] pool-1-thread-5 - 5000 records committed(current total 345000 records), lap time = 0.585
[2025-03-08 21:01:30] pool-1-thread-9 - 5000 records committed(current total 360000 records), lap time = 0.671
[2025-03-08 21:01:30] pool-1-thread-4 - 5000 records committed(current total 365000 records), lap time = 0.662
[2025-03-08 21:01:30] pool-1-thread-6 - 5000 records committed(current total 355000 records), lap time = 0.657
[2025-03-08 21:01:30] pool-1-thread-2 - 5000 records committed(current total 365000 records), lap time = 0.664
[2025-03-08 21:01:30] pool-1-thread-3 - 5000 records committed(current total 355000 records), lap time = 0.674
[2025-03-08 21:01:30] pool-1-thread-1 - 5000 records committed(current total 360000 records), lap time = 0.673
[2025-03-08 21:01:30] pool-1-thread-7 - 5000 records committed(current total 350000 records), lap time = 0.664
[2025-03-08 21:01:30] pool-1-thread-10 - 5000 records committed(current total 360000 records), lap time = 0.675
[2025-03-08 21:01:30] pool-1-thread-8 - 5000 records committed(current total 355000 records), lap time = 0.665
[2025-03-08 21:01:30] pool-1-thread-5 - 5000 records committed(current total 350000 records), lap time = 0.667
[2025-03-08 21:01:31] pool-1-thread-9 - 5000 records committed(current total 365000 records), lap time = 0.668
[2025-03-08 21:01:31] pool-1-thread-6 - 5000 records committed(current total 360000 records), lap time = 0.647
[2025-03-08 21:01:31] pool-1-thread-4 - 5000 records committed(current total 370000 records), lap time = 0.678
[2025-03-08 21:01:31] pool-1-thread-2 - 5000 records committed(current total 370000 records), lap time = 0.674
[2025-03-08 21:01:31] pool-1-thread-3 - 5000 records committed(current total 360000 records), lap time = 0.683
[2025-03-08 21:01:31] pool-1-thread-1 - 5000 records committed(current total 365000 records), lap time = 0.683
[2025-03-08 21:01:31] pool-1-thread-10 - 5000 records committed(current total 365000 records), lap time = 0.672
[2025-03-08 21:01:31] pool-1-thread-8 - 5000 records committed(current total 360000 records), lap time = 0.673
[2025-03-08 21:01:31] pool-1-thread-7 - 5000 records committed(current total 355000 records), lap time = 0.679
[2025-03-08 21:01:31] pool-1-thread-5 - 5000 records committed(current total 355000 records), lap time = 0.685
[2025-03-08 21:01:31] pool-1-thread-9 - 5000 records committed(current total 370000 records), lap time = 0.563
[2025-03-08 21:01:31] pool-1-thread-4 - 5000 records committed(current total 375000 records), lap time = 0.508
[2025-03-08 21:01:31] pool-1-thread-6 - 5000 records committed(current total 365000 records), lap time = 0.531
[2025-03-08 21:01:31] pool-1-thread-3 - 5000 records committed(current total 365000 records), lap time = 0.557
[2025-03-08 21:01:31] pool-1-thread-2 - 5000 records committed(current total 375000 records), lap time = 0.572
[2025-03-08 21:01:32] pool-1-thread-10 - 5000 records committed(current total 370000 records), lap time = 0.566
[2025-03-08 21:01:32] pool-1-thread-1 - 5000 records committed(current total 370000 records), lap time = 0.574
[2025-03-08 21:01:32] pool-1-thread-7 - 5000 records committed(current total 360000 records), lap time = 0.567
[2025-03-08 21:01:32] pool-1-thread-8 - 5000 records committed(current total 365000 records), lap time = 0.573
[2025-03-08 21:01:32] pool-1-thread-5 - 5000 records committed(current total 360000 records), lap time = 0.562
[2025-03-08 21:01:32] pool-1-thread-9 - 5000 records committed(current total 375000 records), lap time = 0.592
[2025-03-08 21:01:32] pool-1-thread-4 - 5000 records committed(current total 380000 records), lap time = 0.615
[2025-03-08 21:01:32] pool-1-thread-6 - 5000 records committed(current total 370000 records), lap time = 0.621
[2025-03-08 21:01:32] pool-1-thread-2 - 5000 records committed(current total 380000 records), lap time = 0.584
[2025-03-08 21:01:32] pool-1-thread-3 - 5000 records committed(current total 370000 records), lap time = 0.595
[2025-03-08 21:01:32] pool-1-thread-10 - 5000 records committed(current total 375000 records), lap time = 0.587
[2025-03-08 21:01:32] pool-1-thread-7 - 5000 records committed(current total 365000 records), lap time = 0.592
[2025-03-08 21:01:32] pool-1-thread-5 - 5000 records committed(current total 365000 records), lap time = 0.611
[2025-03-08 21:01:32] pool-1-thread-1 - 5000 records committed(current total 375000 records), lap time = 0.631
[2025-03-08 21:01:32] pool-1-thread-8 - 5000 records committed(current total 370000 records), lap time = 0.637
[2025-03-08 21:01:33] pool-1-thread-9 - 5000 records committed(current total 380000 records), lap time = 0.691
[2025-03-08 21:01:33] pool-1-thread-4 - 5000 records committed(current total 385000 records), lap time = 0.683
[2025-03-08 21:01:33] pool-1-thread-6 - 5000 records committed(current total 375000 records), lap time = 0.702
[2025-03-08 21:01:33] pool-1-thread-2 - 5000 records committed(current total 385000 records), lap time = 0.710
[2025-03-08 21:01:33] pool-1-thread-3 - 5000 records committed(current total 375000 records), lap time = 0.713
[2025-03-08 21:01:33] pool-1-thread-10 - 5000 records committed(current total 380000 records), lap time = 0.717
[2025-03-08 21:01:33] pool-1-thread-7 - 5000 records committed(current total 370000 records), lap time = 0.702
[2025-03-08 21:01:33] pool-1-thread-5 - 5000 records committed(current total 370000 records), lap time = 0.677
[2025-03-08 21:01:33] pool-1-thread-8 - 5000 records committed(current total 375000 records), lap time = 0.658
[2025-03-08 21:01:33] pool-1-thread-1 - 5000 records committed(current total 380000 records), lap time = 0.670
[2025-03-08 21:01:33] pool-1-thread-9 - 5000 records committed(current total 385000 records), lap time = 0.616
[2025-03-08 21:01:33] pool-1-thread-4 - 5000 records committed(current total 390000 records), lap time = 0.633
[2025-03-08 21:01:33] pool-1-thread-6 - 5000 records committed(current total 380000 records), lap time = 0.666
[2025-03-08 21:01:33] pool-1-thread-2 - 5000 records committed(current total 390000 records), lap time = 0.710
[2025-03-08 21:01:34] pool-1-thread-3 - 5000 records committed(current total 380000 records), lap time = 0.710
[2025-03-08 21:01:34] pool-1-thread-10 - 5000 records committed(current total 385000 records), lap time = 0.709
[2025-03-08 21:01:34] pool-1-thread-5 - 5000 records committed(current total 375000 records), lap time = 0.709
[2025-03-08 21:01:34] pool-1-thread-8 - 5000 records committed(current total 380000 records), lap time = 0.716
[2025-03-08 21:01:34] pool-1-thread-1 - 5000 records committed(current total 385000 records), lap time = 0.727
[2025-03-08 21:01:34] pool-1-thread-7 - 5000 records committed(current total 375000 records), lap time = 0.745
[2025-03-08 21:01:34] pool-1-thread-9 - 5000 records committed(current total 390000 records), lap time = 0.626
[2025-03-08 21:01:34] pool-1-thread-6 - 5000 records committed(current total 385000 records), lap time = 0.463
[2025-03-08 21:01:34] pool-1-thread-4 - 5000 records committed(current total 395000 records), lap time = 0.529
[2025-03-08 21:01:34] pool-1-thread-2 - 5000 records committed(current total 395000 records), lap time = 0.416
[2025-03-08 21:01:34] pool-1-thread-3 - 5000 records committed(current total 385000 records), lap time = 0.418
[2025-03-08 21:01:34] pool-1-thread-10 - 5000 records committed(current total 390000 records), lap time = 0.414
[2025-03-08 21:01:34] pool-1-thread-8 - 5000 records committed(current total 385000 records), lap time = 0.417
[2025-03-08 21:01:34] pool-1-thread-5 - 5000 records committed(current total 380000 records), lap time = 0.432
[2025-03-08 21:01:34] pool-1-thread-1 - 5000 records committed(current total 390000 records), lap time = 0.419
[2025-03-08 21:01:34] pool-1-thread-7 - 5000 records committed(current total 380000 records), lap time = 0.415
[2025-03-08 21:01:34] pool-1-thread-9 - 5000 records committed(current total 395000 records), lap time = 0.454
[2025-03-08 21:01:34] pool-1-thread-6 - 5000 records committed(current total 390000 records), lap time = 0.464
[2025-03-08 21:01:34] pool-1-thread-4 - 5000 records committed(current total 400000 records), lap time = 0.474
[2025-03-08 21:01:34] pool-1-thread-2 - 5000 records committed(current total 400000 records), lap time = 0.522
[2025-03-08 21:01:34] pool-1-thread-10 - 5000 records committed(current total 395000 records), lap time = 0.540
[2025-03-08 21:01:35] pool-1-thread-3 - 5000 records committed(current total 390000 records), lap time = 0.606
[2025-03-08 21:01:35] pool-1-thread-8 - 5000 records committed(current total 390000 records), lap time = 0.609
[2025-03-08 21:01:35] pool-1-thread-1 - 5000 records committed(current total 395000 records), lap time = 0.609
[2025-03-08 21:01:35] pool-1-thread-5 - 5000 records committed(current total 385000 records), lap time = 0.642
[2025-03-08 21:01:35] pool-1-thread-7 - 5000 records committed(current total 385000 records), lap time = 0.650
[2025-03-08 21:01:35] pool-1-thread-9 - 5000 records committed(current total 400000 records), lap time = 0.723
[2025-03-08 21:01:35] pool-1-thread-6 - 5000 records committed(current total 395000 records), lap time = 0.724
[2025-03-08 21:01:35] pool-1-thread-4 - 5000 records committed(current total 405000 records), lap time = 0.720
[2025-03-08 21:01:35] pool-1-thread-2 - 5000 records committed(current total 405000 records), lap time = 0.651
[2025-03-08 21:01:35] pool-1-thread-10 - 5000 records committed(current total 400000 records), lap time = 0.653
[2025-03-08 21:01:35] pool-1-thread-3 - 5000 records committed(current total 395000 records), lap time = 0.618
[2025-03-08 21:01:35] pool-1-thread-1 - 5000 records committed(current total 400000 records), lap time = 0.625
[2025-03-08 21:01:35] pool-1-thread-8 - 5000 records committed(current total 395000 records), lap time = 0.655
[2025-03-08 21:01:35] pool-1-thread-5 - 5000 records committed(current total 390000 records), lap time = 0.627
[2025-03-08 21:01:35] pool-1-thread-7 - 5000 records committed(current total 390000 records), lap time = 0.644
[2025-03-08 21:01:36] pool-1-thread-9 - 5000 records committed(current total 405000 records), lap time = 0.851
[2025-03-08 21:01:36] pool-1-thread-6 - 5000 records committed(current total 400000 records), lap time = 0.860
[2025-03-08 21:01:36] pool-1-thread-3 - 5000 records committed(current total 400000 records), lap time = 0.772
[2025-03-08 21:01:36] pool-1-thread-8 - 5000 records committed(current total 400000 records), lap time = 0.707
[2025-03-08 21:01:36] pool-1-thread-10 - 5000 records committed(current total 405000 records), lap time = 0.795
[2025-03-08 21:01:36] pool-1-thread-5 - 5000 records committed(current total 395000 records), lap time = 0.695
[2025-03-08 21:01:36] pool-1-thread-2 - 5000 records committed(current total 410000 records), lap time = 0.833
[2025-03-08 21:01:36] pool-1-thread-7 - 5000 records committed(current total 395000 records), lap time = 0.656
[2025-03-08 21:01:36] pool-1-thread-1 - 5000 records committed(current total 405000 records), lap time = 0.724
[2025-03-08 21:01:36] pool-1-thread-4 - 5000 records committed(current total 410000 records), lap time = 0.855
[2025-03-08 21:01:37] pool-1-thread-9 - 5000 records committed(current total 410000 records), lap time = 0.684
[2025-03-08 21:01:37] pool-1-thread-8 - 5000 records committed(current total 405000 records), lap time = 0.699
[2025-03-08 21:01:37] pool-1-thread-6 - 5000 records committed(current total 405000 records), lap time = 0.712
[2025-03-08 21:01:37] pool-1-thread-5 - 5000 records committed(current total 400000 records), lap time = 0.719
[2025-03-08 21:01:37] pool-1-thread-2 - 5000 records committed(current total 415000 records), lap time = 0.719
[2025-03-08 21:01:37] pool-1-thread-3 - 5000 records committed(current total 405000 records), lap time = 0.734
[2025-03-08 21:01:37] pool-1-thread-4 - 5000 records committed(current total 415000 records), lap time = 0.733
[2025-03-08 21:01:37] pool-1-thread-10 - 5000 records committed(current total 410000 records), lap time = 0.734
[2025-03-08 21:01:37] pool-1-thread-7 - 5000 records committed(current total 400000 records), lap time = 0.733
[2025-03-08 21:01:37] pool-1-thread-1 - 5000 records committed(current total 410000 records), lap time = 0.733
[2025-03-08 21:01:37] pool-1-thread-9 - 5000 records committed(current total 415000 records), lap time = 0.601
[2025-03-08 21:01:37] pool-1-thread-8 - 5000 records committed(current total 410000 records), lap time = 0.581
[2025-03-08 21:01:37] pool-1-thread-6 - 5000 records committed(current total 410000 records), lap time = 0.586
[2025-03-08 21:01:37] pool-1-thread-5 - 5000 records committed(current total 405000 records), lap time = 0.590
[2025-03-08 21:01:37] pool-1-thread-2 - 5000 records committed(current total 420000 records), lap time = 0.595
[2025-03-08 21:01:37] pool-1-thread-1 - 5000 records committed(current total 415000 records), lap time = 0.580
[2025-03-08 21:01:37] pool-1-thread-3 - 5000 records committed(current total 410000 records), lap time = 0.587
[2025-03-08 21:01:37] pool-1-thread-10 - 5000 records committed(current total 415000 records), lap time = 0.603
[2025-03-08 21:01:37] pool-1-thread-7 - 5000 records committed(current total 405000 records), lap time = 0.615
[2025-03-08 21:01:37] pool-1-thread-4 - 5000 records committed(current total 420000 records), lap time = 0.616
[2025-03-08 21:01:38] pool-1-thread-9 - 5000 records committed(current total 420000 records), lap time = 0.714
[2025-03-08 21:01:38] pool-1-thread-8 - 5000 records committed(current total 415000 records), lap time = 0.731
[2025-03-08 21:01:38] pool-1-thread-6 - 5000 records committed(current total 415000 records), lap time = 0.722
[2025-03-08 21:01:38] pool-1-thread-5 - 5000 records committed(current total 410000 records), lap time = 0.718
[2025-03-08 21:01:38] pool-1-thread-1 - 5000 records committed(current total 420000 records), lap time = 0.713
[2025-03-08 21:01:38] pool-1-thread-2 - 5000 records committed(current total 425000 records), lap time = 0.713
[2025-03-08 21:01:38] pool-1-thread-3 - 5000 records committed(current total 415000 records), lap time = 0.709
[2025-03-08 21:01:38] pool-1-thread-4 - 5000 records committed(current total 425000 records), lap time = 0.691
[2025-03-08 21:01:38] pool-1-thread-7 - 5000 records committed(current total 410000 records), lap time = 0.697
[2025-03-08 21:01:38] pool-1-thread-10 - 5000 records committed(current total 420000 records), lap time = 0.710
[2025-03-08 21:01:39] pool-1-thread-9 - 5000 records committed(current total 425000 records), lap time = 0.631
[2025-03-08 21:01:39] pool-1-thread-8 - 5000 records committed(current total 420000 records), lap time = 0.657
[2025-03-08 21:01:39] pool-1-thread-6 - 5000 records committed(current total 420000 records), lap time = 0.666
[2025-03-08 21:01:39] pool-1-thread-1 - 5000 records committed(current total 425000 records), lap time = 0.678
[2025-03-08 21:01:39] pool-1-thread-5 - 5000 records committed(current total 415000 records), lap time = 0.688
[2025-03-08 21:01:39] pool-1-thread-2 - 5000 records committed(current total 430000 records), lap time = 0.692
[2025-03-08 21:01:39] pool-1-thread-7 - 5000 records committed(current total 415000 records), lap time = 0.680
[2025-03-08 21:01:39] pool-1-thread-3 - 5000 records committed(current total 420000 records), lap time = 0.696
[2025-03-08 21:01:39] pool-1-thread-4 - 5000 records committed(current total 430000 records), lap time = 0.695
[2025-03-08 21:01:39] pool-1-thread-10 - 5000 records committed(current total 425000 records), lap time = 0.690
[2025-03-08 21:01:39] pool-1-thread-9 - 5000 records committed(current total 430000 records), lap time = 0.572
[2025-03-08 21:01:39] pool-1-thread-6 - 5000 records committed(current total 425000 records), lap time = 0.517
[2025-03-08 21:01:39] pool-1-thread-8 - 5000 records committed(current total 425000 records), lap time = 0.543
[2025-03-08 21:01:39] pool-1-thread-1 - 5000 records committed(current total 430000 records), lap time = 0.533
[2025-03-08 21:01:39] pool-1-thread-5 - 5000 records committed(current total 420000 records), lap time = 0.537
[2025-03-08 21:01:39] pool-1-thread-2 - 5000 records committed(current total 435000 records), lap time = 0.539
[2025-03-08 21:01:39] pool-1-thread-7 - 5000 records committed(current total 420000 records), lap time = 0.531
[2025-03-08 21:01:39] pool-1-thread-3 - 5000 records committed(current total 425000 records), lap time = 0.545
[2025-03-08 21:01:39] pool-1-thread-10 - 5000 records committed(current total 430000 records), lap time = 0.544
[2025-03-08 21:01:39] pool-1-thread-4 - 5000 records committed(current total 435000 records), lap time = 0.555
[2025-03-08 21:01:40] pool-1-thread-9 - 5000 records committed(current total 435000 records), lap time = 0.616
[2025-03-08 21:01:40] pool-1-thread-8 - 5000 records committed(current total 430000 records), lap time = 0.630
[2025-03-08 21:01:40] pool-1-thread-6 - 5000 records committed(current total 430000 records), lap time = 0.649
[2025-03-08 21:01:40] pool-1-thread-1 - 5000 records committed(current total 435000 records), lap time = 0.626
[2025-03-08 21:01:40] pool-1-thread-5 - 5000 records committed(current total 425000 records), lap time = 0.630
[2025-03-08 21:01:40] pool-1-thread-2 - 5000 records committed(current total 440000 records), lap time = 0.641
[2025-03-08 21:01:40] pool-1-thread-10 - 5000 records committed(current total 435000 records), lap time = 0.623
[2025-03-08 21:01:40] pool-1-thread-7 - 5000 records committed(current total 425000 records), lap time = 0.655
[2025-03-08 21:01:40] pool-1-thread-3 - 5000 records committed(current total 430000 records), lap time = 0.641
[2025-03-08 21:01:40] pool-1-thread-4 - 5000 records committed(current total 440000 records), lap time = 0.627
[2025-03-08 21:01:40] pool-1-thread-9 - 5000 records committed(current total 440000 records), lap time = 0.464
[2025-03-08 21:01:40] pool-1-thread-8 - 5000 records committed(current total 435000 records), lap time = 0.475
[2025-03-08 21:01:40] pool-1-thread-6 - 5000 records committed(current total 435000 records), lap time = 0.476
[2025-03-08 21:01:40] pool-1-thread-1 - 5000 records committed(current total 440000 records), lap time = 0.485
[2025-03-08 21:01:40] pool-1-thread-5 - 5000 records committed(current total 430000 records), lap time = 0.481
[2025-03-08 21:01:40] pool-1-thread-2 - 5000 records committed(current total 445000 records), lap time = 0.469
[2025-03-08 21:01:40] pool-1-thread-10 - 5000 records committed(current total 440000 records), lap time = 0.502
[2025-03-08 21:01:40] pool-1-thread-3 - 5000 records committed(current total 435000 records), lap time = 0.515
[2025-03-08 21:01:40] pool-1-thread-7 - 5000 records committed(current total 430000 records), lap time = 0.523
[2025-03-08 21:01:40] pool-1-thread-4 - 5000 records committed(current total 445000 records), lap time = 0.525
[2025-03-08 21:01:41] pool-1-thread-9 - 5000 records committed(current total 445000 records), lap time = 0.709
[2025-03-08 21:01:41] pool-1-thread-8 - 5000 records committed(current total 440000 records), lap time = 0.725
[2025-03-08 21:01:41] pool-1-thread-6 - 5000 records committed(current total 440000 records), lap time = 0.720
[2025-03-08 21:01:41] pool-1-thread-1 - 5000 records committed(current total 445000 records), lap time = 0.706
[2025-03-08 21:01:41] pool-1-thread-5 - 5000 records committed(current total 435000 records), lap time = 0.698
[2025-03-08 21:01:41] pool-1-thread-10 - 5000 records committed(current total 445000 records), lap time = 0.664
[2025-03-08 21:01:41] pool-1-thread-2 - 5000 records committed(current total 450000 records), lap time = 0.711
[2025-03-08 21:01:41] pool-1-thread-3 - 5000 records committed(current total 440000 records), lap time = 0.669
[2025-03-08 21:01:41] pool-1-thread-7 - 5000 records committed(current total 435000 records), lap time = 0.667
[2025-03-08 21:01:41] pool-1-thread-4 - 5000 records committed(current total 450000 records), lap time = 0.660
[2025-03-08 21:01:41] pool-1-thread-9 - 5000 records committed(current total 450000 records), lap time = 0.554
[2025-03-08 21:01:42] pool-1-thread-8 - 5000 records committed(current total 445000 records), lap time = 0.588
[2025-03-08 21:01:42] pool-1-thread-6 - 5000 records committed(current total 445000 records), lap time = 0.592
[2025-03-08 21:01:42] pool-1-thread-1 - 5000 records committed(current total 450000 records), lap time = 0.591
[2025-03-08 21:01:42] pool-1-thread-5 - 5000 records committed(current total 440000 records), lap time = 0.602
[2025-03-08 21:01:42] pool-1-thread-10 - 5000 records committed(current total 450000 records), lap time = 0.623
[2025-03-08 21:01:42] pool-1-thread-2 - 5000 records committed(current total 455000 records), lap time = 0.621
[2025-03-08 21:01:42] pool-1-thread-3 - 5000 records committed(current total 445000 records), lap time = 0.610
[2025-03-08 21:01:42] pool-1-thread-4 - 5000 records committed(current total 455000 records), lap time = 0.622
[2025-03-08 21:01:42] pool-1-thread-7 - 5000 records committed(current total 440000 records), lap time = 0.629
[2025-03-08 21:01:42] pool-1-thread-9 - 5000 records committed(current total 455000 records), lap time = 0.563
[2025-03-08 21:01:42] pool-1-thread-8 - 5000 records committed(current total 450000 records), lap time = 0.533
[2025-03-08 21:01:42] pool-1-thread-6 - 5000 records committed(current total 450000 records), lap time = 0.534
[2025-03-08 21:01:42] pool-1-thread-5 - 5000 records committed(current total 445000 records), lap time = 0.516
[2025-03-08 21:01:42] pool-1-thread-1 - 5000 records committed(current total 455000 records), lap time = 0.541
[2025-03-08 21:01:42] pool-1-thread-10 - 5000 records committed(current total 455000 records), lap time = 0.562
[2025-03-08 21:01:42] pool-1-thread-3 - 5000 records committed(current total 450000 records), lap time = 0.565
[2025-03-08 21:01:42] pool-1-thread-2 - 5000 records committed(current total 460000 records), lap time = 0.582
[2025-03-08 21:01:42] pool-1-thread-7 - 5000 records committed(current total 445000 records), lap time = 0.574
[2025-03-08 21:01:42] pool-1-thread-4 - 5000 records committed(current total 460000 records), lap time = 0.590
[2025-03-08 21:01:43] pool-1-thread-9 - 5000 records committed(current total 460000 records), lap time = 0.690
[2025-03-08 21:01:43] pool-1-thread-8 - 5000 records committed(current total 455000 records), lap time = 0.687
[2025-03-08 21:01:43] pool-1-thread-6 - 5000 records committed(current total 455000 records), lap time = 0.690
[2025-03-08 21:01:43] pool-1-thread-5 - 5000 records committed(current total 450000 records), lap time = 0.689
[2025-03-08 21:01:43] pool-1-thread-1 - 5000 records committed(current total 460000 records), lap time = 0.685
[2025-03-08 21:01:43] pool-1-thread-10 - 5000 records committed(current total 460000 records), lap time = 0.637
[2025-03-08 21:01:43] pool-1-thread-2 - 5000 records committed(current total 465000 records), lap time = 0.649
[2025-03-08 21:01:43] pool-1-thread-3 - 5000 records committed(current total 455000 records), lap time = 0.666
[2025-03-08 21:01:43] pool-1-thread-7 - 5000 records committed(current total 450000 records), lap time = 0.692
[2025-03-08 21:01:43] pool-1-thread-4 - 5000 records committed(current total 465000 records), lap time = 0.727
[2025-03-08 21:01:43] pool-1-thread-9 - 5000 records committed(current total 465000 records), lap time = 0.698
[2025-03-08 21:01:44] pool-1-thread-8 - 5000 records committed(current total 460000 records), lap time = 0.761
[2025-03-08 21:01:44] pool-1-thread-6 - 5000 records committed(current total 460000 records), lap time = 0.757
[2025-03-08 21:01:44] pool-1-thread-5 - 5000 records committed(current total 455000 records), lap time = 0.757
[2025-03-08 21:01:44] pool-1-thread-1 - 5000 records committed(current total 465000 records), lap time = 0.762
[2025-03-08 21:01:44] pool-1-thread-10 - 5000 records committed(current total 465000 records), lap time = 0.749
[2025-03-08 21:01:44] pool-1-thread-3 - 5000 records committed(current total 460000 records), lap time = 0.708
[2025-03-08 21:01:44] pool-1-thread-2 - 5000 records committed(current total 470000 records), lap time = 0.727
[2025-03-08 21:01:44] pool-1-thread-7 - 5000 records committed(current total 455000 records), lap time = 0.740
[2025-03-08 21:01:44] pool-1-thread-4 - 5000 records committed(current total 470000 records), lap time = 0.725
[2025-03-08 21:01:44] pool-1-thread-9 - 5000 records committed(current total 470000 records), lap time = 0.588
[2025-03-08 21:01:44] pool-1-thread-6 - 5000 records committed(current total 465000 records), lap time = 0.540
[2025-03-08 21:01:44] pool-1-thread-8 - 5000 records committed(current total 465000 records), lap time = 0.562
[2025-03-08 21:01:44] pool-1-thread-5 - 5000 records committed(current total 460000 records), lap time = 0.560
[2025-03-08 21:01:44] pool-1-thread-3 - 5000 records committed(current total 465000 records), lap time = 0.548
[2025-03-08 21:01:44] pool-1-thread-2 - 5000 records committed(current total 475000 records), lap time = 0.551
[2025-03-08 21:01:44] pool-1-thread-1 - 5000 records committed(current total 470000 records), lap time = 0.572
[2025-03-08 21:01:44] pool-1-thread-10 - 5000 records committed(current total 470000 records), lap time = 0.573
[2025-03-08 21:01:44] pool-1-thread-7 - 5000 records committed(current total 460000 records), lap time = 0.532
[2025-03-08 21:01:44] pool-1-thread-4 - 5000 records committed(current total 475000 records), lap time = 0.580
[2025-03-08 21:01:45] pool-1-thread-9 - 5000 records committed(current total 475000 records), lap time = 0.755
[2025-03-08 21:01:45] pool-1-thread-6 - 5000 records committed(current total 470000 records), lap time = 0.923
[2025-03-08 21:01:45] pool-1-thread-5 - 5000 records committed(current total 465000 records), lap time = 0.918
[2025-03-08 21:01:45] pool-1-thread-7 - 5000 records committed(current total 465000 records), lap time = 0.832
[2025-03-08 21:01:45] pool-1-thread-1 - 5000 records committed(current total 475000 records), lap time = 0.895
[2025-03-08 21:01:45] pool-1-thread-2 - 5000 records committed(current total 480000 records), lap time = 0.895
[2025-03-08 21:01:45] pool-1-thread-10 - 5000 records committed(current total 475000 records), lap time = 0.889
[2025-03-08 21:01:45] pool-1-thread-8 - 5000 records committed(current total 470000 records), lap time = 0.931
[2025-03-08 21:01:45] pool-1-thread-3 - 5000 records committed(current total 470000 records), lap time = 0.909
[2025-03-08 21:01:45] pool-1-thread-4 - 5000 records committed(current total 480000 records), lap time = 0.756
[2025-03-08 21:01:45] pool-1-thread-9 - 5000 records committed(current total 480000 records), lap time = 0.330
[2025-03-08 21:01:46] pool-1-thread-6 - 5000 records committed(current total 475000 records), lap time = 0.586
[2025-03-08 21:01:46] pool-1-thread-10 - 5000 records committed(current total 480000 records), lap time = 0.618
[2025-03-08 21:01:46] pool-1-thread-1 - 5000 records committed(current total 480000 records), lap time = 0.623
[2025-03-08 21:01:46] pool-1-thread-7 - 5000 records committed(current total 470000 records), lap time = 0.630
[2025-03-08 21:01:46] pool-1-thread-4 - 5000 records committed(current total 485000 records), lap time = 0.630
[2025-03-08 21:01:46] pool-1-thread-3 - 5000 records committed(current total 475000 records), lap time = 0.630
[2025-03-08 21:01:46] pool-1-thread-2 - 5000 records committed(current total 485000 records), lap time = 0.639
[2025-03-08 21:01:46] pool-1-thread-5 - 5000 records committed(current total 470000 records), lap time = 0.639
[2025-03-08 21:01:46] pool-1-thread-8 - 5000 records committed(current total 475000 records), lap time = 0.639
[2025-03-08 21:01:46] pool-1-thread-9 - 5000 records committed(current total 485000 records), lap time = 0.619
[2025-03-08 21:01:46] pool-1-thread-6 - 5000 records committed(current total 480000 records), lap time = 0.414
[2025-03-08 21:01:46] pool-1-thread-10 - 5000 records committed(current total 485000 records), lap time = 0.409
[2025-03-08 21:01:46] pool-1-thread-1 - 5000 records committed(current total 485000 records), lap time = 0.432
[2025-03-08 21:01:46] pool-1-thread-4 - 5000 records committed(current total 490000 records), lap time = 0.435
[2025-03-08 21:01:46] pool-1-thread-2 - 5000 records committed(current total 490000 records), lap time = 0.433
[2025-03-08 21:01:46] pool-1-thread-3 - 5000 records committed(current total 480000 records), lap time = 0.443
[2025-03-08 21:01:46] pool-1-thread-8 - 5000 records committed(current total 480000 records), lap time = 0.456
[2025-03-08 21:01:46] pool-1-thread-7 - 5000 records committed(current total 475000 records), lap time = 0.465
[2025-03-08 21:01:46] pool-1-thread-5 - 5000 records committed(current total 475000 records), lap time = 0.462
[2025-03-08 21:01:46] pool-1-thread-9 - 5000 records committed(current total 490000 records), lap time = 0.455
[2025-03-08 21:01:47] pool-1-thread-6 - 5000 records committed(current total 485000 records), lap time = 0.725
[2025-03-08 21:01:47] pool-1-thread-1 - 5000 records committed(current total 490000 records), lap time = 0.693
[2025-03-08 21:01:47] pool-1-thread-10 - 5000 records committed(current total 490000 records), lap time = 0.728
[2025-03-08 21:01:47] pool-1-thread-4 - 5000 records committed(current total 495000 records), lap time = 0.719
[2025-03-08 21:01:47] pool-1-thread-3 - 5000 records committed(current total 485000 records), lap time = 0.722
[2025-03-08 21:01:47] pool-1-thread-2 - 5000 records committed(current total 495000 records), lap time = 0.723
[2025-03-08 21:01:47] pool-1-thread-8 - 5000 records committed(current total 485000 records), lap time = 0.754
[2025-03-08 21:01:47] pool-1-thread-5 - 5000 records committed(current total 480000 records), lap time = 0.757
[2025-03-08 21:01:47] pool-1-thread-9 - 5000 records committed(current total 495000 records), lap time = 0.763
[2025-03-08 21:01:47] pool-1-thread-7 - 5000 records committed(current total 480000 records), lap time = 0.795
[2025-03-08 21:01:47] pool-1-thread-6 - 5000 records committed(current total 490000 records), lap time = 0.740
[2025-03-08 21:01:48] pool-1-thread-10 - 5000 records committed(current total 495000 records), lap time = 0.742
[2025-03-08 21:01:48] pool-1-thread-1 - 5000 records committed(current total 495000 records), lap time = 0.759
[2025-03-08 21:01:48] pool-1-thread-4 - remain records committed(current total 500000 records), lap time = 0.756
[2025-03-08 21:01:48] pool-1-thread-4 - 500000 records committed, total elapsed time = 62.793
[2025-03-08 21:01:48] pool-1-thread-3 - 5000 records committed(current total 490000 records), lap time = 0.785
[2025-03-08 21:01:48] pool-1-thread-2 - remain records committed(current total 500000 records), lap time = 0.793
[2025-03-08 21:01:48] pool-1-thread-2 - 500000 records committed, total elapsed time = 62.841
[2025-03-08 21:01:48] pool-1-thread-7 - 5000 records committed(current total 485000 records), lap time = 0.738
[2025-03-08 21:01:48] pool-1-thread-9 - remain records committed(current total 500000 records), lap time = 0.771
[2025-03-08 21:01:48] pool-1-thread-9 - 500000 records committed, total elapsed time = 62.887
[2025-03-08 21:01:48] pool-1-thread-5 - 5000 records committed(current total 485000 records), lap time = 0.787
[2025-03-08 21:01:48] pool-1-thread-8 - 5000 records committed(current total 490000 records), lap time = 0.795
[2025-03-08 21:01:48] pool-1-thread-6 - 5000 records committed(current total 495000 records), lap time = 0.612
[2025-03-08 21:01:48] pool-1-thread-10 - remain records committed(current total 500000 records), lap time = 0.602
[2025-03-08 21:01:48] pool-1-thread-10 - 500000 records committed, total elapsed time = 63.351
[2025-03-08 21:01:48] pool-1-thread-1 - remain records committed(current total 500000 records), lap time = 0.606
[2025-03-08 21:01:48] pool-1-thread-1 - 500000 records committed, total elapsed time = 63.366
[2025-03-08 21:01:48] pool-1-thread-3 - 5000 records committed(current total 495000 records), lap time = 0.561
[2025-03-08 21:01:48] pool-1-thread-7 - 5000 records committed(current total 490000 records), lap time = 0.523
[2025-03-08 21:01:48] pool-1-thread-8 - 5000 records committed(current total 495000 records), lap time = 0.515
[2025-03-08 21:01:48] pool-1-thread-5 - 5000 records committed(current total 490000 records), lap time = 0.524
[2025-03-08 21:01:48] pool-1-thread-6 - remain records committed(current total 500000 records), lap time = 0.323
[2025-03-08 21:01:48] pool-1-thread-6 - 500000 records committed, total elapsed time = 63.632
[2025-03-08 21:01:48] pool-1-thread-3 - remain records committed(current total 500000 records), lap time = 0.276
[2025-03-08 21:01:48] pool-1-thread-3 - 500000 records committed, total elapsed time = 63.670
[2025-03-08 21:01:48] pool-1-thread-7 - 5000 records committed(current total 495000 records), lap time = 0.286
[2025-03-08 21:01:48] pool-1-thread-5 - 5000 records committed(current total 495000 records), lap time = 0.296
[2025-03-08 21:01:48] pool-1-thread-8 - remain records committed(current total 500000 records), lap time = 0.313
[2025-03-08 21:01:48] pool-1-thread-8 - 500000 records committed, total elapsed time = 63.726
[2025-03-08 21:01:49] pool-1-thread-7 - remain records committed(current total 500000 records), lap time = 0.140
[2025-03-08 21:01:49] pool-1-thread-7 - 500000 records committed, total elapsed time = 63.830
[2025-03-08 21:01:49] pool-1-thread-5 - remain records committed(current total 500000 records), lap time = 0.142
[2025-03-08 21:01:49] pool-1-thread-5 - 500000 records committed, total elapsed time = 63.860
[2025-03-08 21:01:49] org.littlewings.mysql.UuidBinSwapRunner$UuidBinSwapAsServerPsRunner.main() - UuidBinSwapAsServerPsRunner: 5000000 records inserted, total elapsed time = 64.227
MySQLの倖でUUIDを生成しおデヌタを登録した時の実行ログUUID バヌゞョン4
[INFO] --- exec:3.5.0:java (default-cli) @ mysql-connector-j-uuid ---
[2025-03-08 21:32:45] pool-1-thread-3 - 5000 records committed(current total 5000 records), lap time = 1.044
[2025-03-08 21:32:45] pool-1-thread-9 - 5000 records committed(current total 5000 records), lap time = 1.086
[2025-03-08 21:32:45] pool-1-thread-1 - 5000 records committed(current total 5000 records), lap time = 1.121
[2025-03-08 21:32:45] pool-1-thread-7 - 5000 records committed(current total 5000 records), lap time = 1.121
[2025-03-08 21:32:45] pool-1-thread-6 - 5000 records committed(current total 5000 records), lap time = 1.121
[2025-03-08 21:32:45] pool-1-thread-4 - 5000 records committed(current total 5000 records), lap time = 1.121
[2025-03-08 21:32:45] pool-1-thread-10 - 5000 records committed(current total 5000 records), lap time = 1.121
[2025-03-08 21:32:45] pool-1-thread-2 - 5000 records committed(current total 5000 records), lap time = 1.121
[2025-03-08 21:32:45] pool-1-thread-5 - 5000 records committed(current total 5000 records), lap time = 1.121
[2025-03-08 21:32:45] pool-1-thread-8 - 5000 records committed(current total 5000 records), lap time = 1.121
[2025-03-08 21:32:46] pool-1-thread-3 - 5000 records committed(current total 10000 records), lap time = 0.491
[2025-03-08 21:32:46] pool-1-thread-9 - 5000 records committed(current total 10000 records), lap time = 0.513
[2025-03-08 21:32:46] pool-1-thread-1 - 5000 records committed(current total 10000 records), lap time = 0.511
[2025-03-08 21:32:46] pool-1-thread-5 - 5000 records committed(current total 10000 records), lap time = 0.545
[2025-03-08 21:32:46] pool-1-thread-2 - 5000 records committed(current total 10000 records), lap time = 0.545
[2025-03-08 21:32:46] pool-1-thread-8 - 5000 records committed(current total 10000 records), lap time = 0.545
[2025-03-08 21:32:46] pool-1-thread-7 - 5000 records committed(current total 10000 records), lap time = 0.546
[2025-03-08 21:32:46] pool-1-thread-10 - 5000 records committed(current total 10000 records), lap time = 0.545
[2025-03-08 21:32:46] pool-1-thread-4 - 5000 records committed(current total 10000 records), lap time = 0.546
[2025-03-08 21:32:46] pool-1-thread-6 - 5000 records committed(current total 10000 records), lap time = 0.546
[2025-03-08 21:32:46] pool-1-thread-3 - 5000 records committed(current total 15000 records), lap time = 0.367
[2025-03-08 21:32:46] pool-1-thread-9 - 5000 records committed(current total 15000 records), lap time = 0.610
[2025-03-08 21:32:46] pool-1-thread-1 - 5000 records committed(current total 15000 records), lap time = 0.621
[2025-03-08 21:32:46] pool-1-thread-10 - 5000 records committed(current total 15000 records), lap time = 0.599
[2025-03-08 21:32:46] pool-1-thread-4 - 5000 records committed(current total 15000 records), lap time = 0.599
[2025-03-08 21:32:46] pool-1-thread-7 - 5000 records committed(current total 15000 records), lap time = 0.606
[2025-03-08 21:32:47] pool-1-thread-8 - 5000 records committed(current total 15000 records), lap time = 0.656
[2025-03-08 21:32:47] pool-1-thread-5 - 5000 records committed(current total 15000 records), lap time = 0.675
[2025-03-08 21:32:47] pool-1-thread-6 - 5000 records committed(current total 15000 records), lap time = 0.734
[2025-03-08 21:32:47] pool-1-thread-2 - 5000 records committed(current total 15000 records), lap time = 0.748
[2025-03-08 21:32:47] pool-1-thread-3 - 5000 records committed(current total 20000 records), lap time = 0.771
[2025-03-08 21:32:47] pool-1-thread-1 - 5000 records committed(current total 20000 records), lap time = 0.622
[2025-03-08 21:32:47] pool-1-thread-9 - 5000 records committed(current total 20000 records), lap time = 0.687
[2025-03-08 21:32:47] pool-1-thread-7 - 5000 records committed(current total 20000 records), lap time = 0.634
[2025-03-08 21:32:47] pool-1-thread-5 - 5000 records committed(current total 20000 records), lap time = 0.566
[2025-03-08 21:32:47] pool-1-thread-6 - 5000 records committed(current total 20000 records), lap time = 0.505
[2025-03-08 21:32:47] pool-1-thread-8 - 5000 records committed(current total 20000 records), lap time = 0.609
[2025-03-08 21:32:47] pool-1-thread-10 - 5000 records committed(current total 20000 records), lap time = 0.666
[2025-03-08 21:32:47] pool-1-thread-4 - 5000 records committed(current total 20000 records), lap time = 0.665
[2025-03-08 21:32:47] pool-1-thread-2 - 5000 records committed(current total 20000 records), lap time = 0.517
[2025-03-08 21:32:47] pool-1-thread-3 - 5000 records committed(current total 25000 records), lap time = 0.500
[2025-03-08 21:32:48] pool-1-thread-1 - 5000 records committed(current total 25000 records), lap time = 0.681
[2025-03-08 21:32:48] pool-1-thread-9 - 5000 records committed(current total 25000 records), lap time = 0.686
[2025-03-08 21:32:48] pool-1-thread-4 - 5000 records committed(current total 25000 records), lap time = 0.649
[2025-03-08 21:32:48] pool-1-thread-7 - 5000 records committed(current total 25000 records), lap time = 0.672
[2025-03-08 21:32:48] pool-1-thread-2 - 5000 records committed(current total 25000 records), lap time = 0.649
[2025-03-08 21:32:48] pool-1-thread-6 - 5000 records committed(current total 25000 records), lap time = 0.672
[2025-03-08 21:32:48] pool-1-thread-8 - 5000 records committed(current total 25000 records), lap time = 0.649
[2025-03-08 21:32:48] pool-1-thread-5 - 5000 records committed(current total 25000 records), lap time = 0.672
[2025-03-08 21:32:48] pool-1-thread-10 - 5000 records committed(current total 25000 records), lap time = 0.649
[2025-03-08 21:32:48] pool-1-thread-3 - 5000 records committed(current total 30000 records), lap time = 0.411
[2025-03-08 21:32:48] pool-1-thread-1 - 5000 records committed(current total 30000 records), lap time = 0.330
[2025-03-08 21:32:48] pool-1-thread-4 - 5000 records committed(current total 30000 records), lap time = 0.377
[2025-03-08 21:32:48] pool-1-thread-5 - 5000 records committed(current total 30000 records), lap time = 0.394
[2025-03-08 21:32:48] pool-1-thread-10 - 5000 records committed(current total 30000 records), lap time = 0.394
[2025-03-08 21:32:48] pool-1-thread-7 - 5000 records committed(current total 30000 records), lap time = 0.394
[2025-03-08 21:32:48] pool-1-thread-9 - 5000 records committed(current total 30000 records), lap time = 0.419
[2025-03-08 21:32:48] pool-1-thread-2 - 5000 records committed(current total 30000 records), lap time = 0.424
[2025-03-08 21:32:48] pool-1-thread-3 - 5000 records committed(current total 35000 records), lap time = 0.432
[2025-03-08 21:32:48] pool-1-thread-6 - 5000 records committed(current total 30000 records), lap time = 0.452
[2025-03-08 21:32:48] pool-1-thread-8 - 5000 records committed(current total 30000 records), lap time = 0.460
[2025-03-08 21:32:49] pool-1-thread-1 - 5000 records committed(current total 35000 records), lap time = 0.613
[2025-03-08 21:32:49] pool-1-thread-6 - 5000 records committed(current total 35000 records), lap time = 0.473
[2025-03-08 21:32:49] pool-1-thread-4 - 5000 records committed(current total 35000 records), lap time = 0.556
[2025-03-08 21:32:49] pool-1-thread-9 - 5000 records committed(current total 35000 records), lap time = 0.522
[2025-03-08 21:32:49] pool-1-thread-2 - 5000 records committed(current total 35000 records), lap time = 0.518
[2025-03-08 21:32:49] pool-1-thread-3 - 5000 records committed(current total 40000 records), lap time = 0.503
[2025-03-08 21:32:49] pool-1-thread-7 - 5000 records committed(current total 35000 records), lap time = 0.556
[2025-03-08 21:32:49] pool-1-thread-8 - 5000 records committed(current total 35000 records), lap time = 0.490
[2025-03-08 21:32:49] pool-1-thread-10 - 5000 records committed(current total 35000 records), lap time = 0.563
[2025-03-08 21:32:49] pool-1-thread-5 - 5000 records committed(current total 35000 records), lap time = 0.563
[2025-03-08 21:32:49] pool-1-thread-1 - 5000 records committed(current total 40000 records), lap time = 0.459
[2025-03-08 21:32:49] pool-1-thread-6 - 5000 records committed(current total 40000 records), lap time = 0.460
[2025-03-08 21:32:49] pool-1-thread-2 - 5000 records committed(current total 40000 records), lap time = 0.447
[2025-03-08 21:32:49] pool-1-thread-4 - 5000 records committed(current total 40000 records), lap time = 0.471
[2025-03-08 21:32:49] pool-1-thread-10 - 5000 records committed(current total 40000 records), lap time = 0.501
[2025-03-08 21:32:49] pool-1-thread-8 - 5000 records committed(current total 40000 records), lap time = 0.515
[2025-03-08 21:32:49] pool-1-thread-9 - 5000 records committed(current total 40000 records), lap time = 0.564
[2025-03-08 21:32:49] pool-1-thread-7 - 5000 records committed(current total 40000 records), lap time = 0.559
[2025-03-08 21:32:49] pool-1-thread-3 - 5000 records committed(current total 45000 records), lap time = 0.576
[2025-03-08 21:32:49] pool-1-thread-5 - 5000 records committed(current total 40000 records), lap time = 0.560
[2025-03-08 21:32:50] pool-1-thread-1 - 5000 records committed(current total 45000 records), lap time = 1.001
[2025-03-08 21:32:50] pool-1-thread-4 - 5000 records committed(current total 45000 records), lap time = 1.021
[2025-03-08 21:32:50] pool-1-thread-2 - 5000 records committed(current total 45000 records), lap time = 1.081
[2025-03-08 21:32:50] pool-1-thread-8 - 5000 records committed(current total 45000 records), lap time = 1.022
[2025-03-08 21:32:50] pool-1-thread-6 - 5000 records committed(current total 45000 records), lap time = 1.107
[2025-03-08 21:32:50] pool-1-thread-10 - 5000 records committed(current total 45000 records), lap time = 1.035
[2025-03-08 21:32:50] pool-1-thread-7 - 5000 records committed(current total 45000 records), lap time = 1.006
[2025-03-08 21:32:50] pool-1-thread-5 - 5000 records committed(current total 45000 records), lap time = 1.006
[2025-03-08 21:32:50] pool-1-thread-3 - 5000 records committed(current total 50000 records), lap time = 1.006
[2025-03-08 21:32:50] pool-1-thread-9 - 5000 records committed(current total 45000 records), lap time = 1.045
[2025-03-08 21:32:52] pool-1-thread-1 - 5000 records committed(current total 50000 records), lap time = 1.791
[2025-03-08 21:32:52] pool-1-thread-2 - 5000 records committed(current total 50000 records), lap time = 1.705
[2025-03-08 21:32:52] pool-1-thread-4 - 5000 records committed(current total 50000 records), lap time = 1.768
[2025-03-08 21:32:52] pool-1-thread-8 - 5000 records committed(current total 50000 records), lap time = 1.769
[2025-03-08 21:32:52] pool-1-thread-5 - 5000 records committed(current total 50000 records), lap time = 1.751
[2025-03-08 21:32:52] pool-1-thread-3 - 5000 records committed(current total 55000 records), lap time = 1.759
[2025-03-08 21:32:52] pool-1-thread-10 - 5000 records committed(current total 50000 records), lap time = 1.803
[2025-03-08 21:32:52] pool-1-thread-6 - 5000 records committed(current total 50000 records), lap time = 1.818
[2025-03-08 21:32:52] pool-1-thread-7 - 5000 records committed(current total 50000 records), lap time = 1.834
[2025-03-08 21:32:52] pool-1-thread-9 - 5000 records committed(current total 50000 records), lap time = 1.837
[2025-03-08 21:32:54] pool-1-thread-1 - 5000 records committed(current total 55000 records), lap time = 2.012
[2025-03-08 21:32:54] pool-1-thread-4 - 5000 records committed(current total 55000 records), lap time = 2.014
[2025-03-08 21:32:54] pool-1-thread-2 - 5000 records committed(current total 55000 records), lap time = 2.076
[2025-03-08 21:32:54] pool-1-thread-5 - 5000 records committed(current total 55000 records), lap time = 1.993
[2025-03-08 21:32:54] pool-1-thread-10 - 5000 records committed(current total 55000 records), lap time = 2.079
[2025-03-08 21:32:54] pool-1-thread-8 - 5000 records committed(current total 55000 records), lap time = 2.133
[2025-03-08 21:32:54] pool-1-thread-3 - 5000 records committed(current total 60000 records), lap time = 2.128
[2025-03-08 21:32:54] pool-1-thread-6 - 5000 records committed(current total 55000 records), lap time = 2.142
[2025-03-08 21:32:54] pool-1-thread-7 - 5000 records committed(current total 55000 records), lap time = 2.116
[2025-03-08 21:32:54] pool-1-thread-9 - 5000 records committed(current total 55000 records), lap time = 2.143
[2025-03-08 21:32:56] pool-1-thread-4 - 5000 records committed(current total 60000 records), lap time = 2.209
[2025-03-08 21:32:56] pool-1-thread-2 - 5000 records committed(current total 60000 records), lap time = 2.232
[2025-03-08 21:32:56] pool-1-thread-1 - 5000 records committed(current total 60000 records), lap time = 2.309
[2025-03-08 21:32:56] pool-1-thread-5 - 5000 records committed(current total 60000 records), lap time = 2.238
[2025-03-08 21:32:56] pool-1-thread-3 - 5000 records committed(current total 65000 records), lap time = 2.204
[2025-03-08 21:32:56] pool-1-thread-10 - 5000 records committed(current total 60000 records), lap time = 2.243
[2025-03-08 21:32:56] pool-1-thread-8 - 5000 records committed(current total 60000 records), lap time = 2.252
[2025-03-08 21:32:56] pool-1-thread-6 - 5000 records committed(current total 60000 records), lap time = 2.212
[2025-03-08 21:32:57] pool-1-thread-7 - 5000 records committed(current total 60000 records), lap time = 2.240
[2025-03-08 21:32:57] pool-1-thread-9 - 5000 records committed(current total 60000 records), lap time = 2.239
[2025-03-08 21:32:59] pool-1-thread-4 - 5000 records committed(current total 65000 records), lap time = 2.299
[2025-03-08 21:32:59] pool-1-thread-5 - 5000 records committed(current total 65000 records), lap time = 2.305
[2025-03-08 21:32:59] pool-1-thread-2 - 5000 records committed(current total 65000 records), lap time = 2.352
[2025-03-08 21:32:59] pool-1-thread-1 - 5000 records committed(current total 65000 records), lap time = 2.489
[2025-03-08 21:32:59] pool-1-thread-3 - 5000 records committed(current total 70000 records), lap time = 2.611
[2025-03-08 21:32:59] pool-1-thread-8 - 5000 records committed(current total 65000 records), lap time = 2.598
[2025-03-08 21:32:59] pool-1-thread-10 - 5000 records committed(current total 65000 records), lap time = 2.640
[2025-03-08 21:32:59] pool-1-thread-7 - 5000 records committed(current total 65000 records), lap time = 2.637
[2025-03-08 21:32:59] pool-1-thread-6 - 5000 records committed(current total 65000 records), lap time = 2.698
[2025-03-08 21:32:59] pool-1-thread-9 - 5000 records committed(current total 65000 records), lap time = 2.621
[2025-03-08 21:33:01] pool-1-thread-4 - 5000 records committed(current total 70000 records), lap time = 2.968
[2025-03-08 21:33:02] pool-1-thread-1 - 5000 records committed(current total 70000 records), lap time = 2.835
[2025-03-08 21:33:02] pool-1-thread-5 - 5000 records committed(current total 70000 records), lap time = 3.048
[2025-03-08 21:33:02] pool-1-thread-2 - 5000 records committed(current total 70000 records), lap time = 3.039
[2025-03-08 21:33:02] pool-1-thread-3 - 5000 records committed(current total 75000 records), lap time = 2.682
[2025-03-08 21:33:02] pool-1-thread-8 - 5000 records committed(current total 70000 records), lap time = 2.689
[2025-03-08 21:33:02] pool-1-thread-10 - 5000 records committed(current total 70000 records), lap time = 2.979
[2025-03-08 21:33:02] pool-1-thread-7 - 5000 records committed(current total 70000 records), lap time = 2.913
[2025-03-08 21:33:02] pool-1-thread-6 - 5000 records committed(current total 70000 records), lap time = 2.956
[2025-03-08 21:33:02] pool-1-thread-9 - 5000 records committed(current total 70000 records), lap time = 2.968
[2025-03-08 21:33:04] pool-1-thread-4 - 5000 records committed(current total 75000 records), lap time = 2.775
[2025-03-08 21:33:04] pool-1-thread-3 - 5000 records committed(current total 80000 records), lap time = 2.783
[2025-03-08 21:33:05] pool-1-thread-8 - 5000 records committed(current total 75000 records), lap time = 2.828
[2025-03-08 21:33:05] pool-1-thread-1 - 5000 records committed(current total 75000 records), lap time = 2.962
[2025-03-08 21:33:05] pool-1-thread-5 - 5000 records committed(current total 75000 records), lap time = 2.965
[2025-03-08 21:33:05] pool-1-thread-2 - 5000 records committed(current total 75000 records), lap time = 2.974
[2025-03-08 21:33:05] pool-1-thread-10 - 5000 records committed(current total 75000 records), lap time = 2.693
[2025-03-08 21:33:05] pool-1-thread-7 - 5000 records committed(current total 75000 records), lap time = 2.765
[2025-03-08 21:33:05] pool-1-thread-6 - 5000 records committed(current total 75000 records), lap time = 2.728
[2025-03-08 21:33:05] pool-1-thread-9 - 5000 records committed(current total 75000 records), lap time = 2.766
[2025-03-08 21:33:07] pool-1-thread-4 - 5000 records committed(current total 80000 records), lap time = 2.719
[2025-03-08 21:33:07] pool-1-thread-3 - 5000 records committed(current total 85000 records), lap time = 2.608
[2025-03-08 21:33:07] pool-1-thread-8 - 5000 records committed(current total 80000 records), lap time = 2.860
[2025-03-08 21:33:07] pool-1-thread-1 - 5000 records committed(current total 80000 records), lap time = 2.849
[2025-03-08 21:33:08] pool-1-thread-2 - 5000 records committed(current total 80000 records), lap time = 2.957
[2025-03-08 21:33:08] pool-1-thread-5 - 5000 records committed(current total 80000 records), lap time = 2.990
[2025-03-08 21:33:08] pool-1-thread-10 - 5000 records committed(current total 80000 records), lap time = 2.900
[2025-03-08 21:33:08] pool-1-thread-7 - 5000 records committed(current total 80000 records), lap time = 2.877
[2025-03-08 21:33:08] pool-1-thread-6 - 5000 records committed(current total 80000 records), lap time = 2.949
[2025-03-08 21:33:08] pool-1-thread-9 - 5000 records committed(current total 80000 records), lap time = 2.972
[2025-03-08 21:33:10] pool-1-thread-4 - 5000 records committed(current total 85000 records), lap time = 3.095
[2025-03-08 21:33:10] pool-1-thread-3 - 5000 records committed(current total 90000 records), lap time = 3.199
[2025-03-08 21:33:11] pool-1-thread-8 - 5000 records committed(current total 85000 records), lap time = 3.135
[2025-03-08 21:33:11] pool-1-thread-1 - 5000 records committed(current total 85000 records), lap time = 3.268
[2025-03-08 21:33:11] pool-1-thread-10 - 5000 records committed(current total 85000 records), lap time = 3.100
[2025-03-08 21:33:11] pool-1-thread-5 - 5000 records committed(current total 85000 records), lap time = 3.158
[2025-03-08 21:33:11] pool-1-thread-2 - 5000 records committed(current total 85000 records), lap time = 3.419
[2025-03-08 21:33:11] pool-1-thread-7 - 5000 records committed(current total 85000 records), lap time = 3.379
[2025-03-08 21:33:11] pool-1-thread-9 - 5000 records committed(current total 85000 records), lap time = 3.271
[2025-03-08 21:33:11] pool-1-thread-6 - 5000 records committed(current total 85000 records), lap time = 3.404
[2025-03-08 21:33:14] pool-1-thread-4 - 5000 records committed(current total 90000 records), lap time = 3.561
[2025-03-08 21:33:14] pool-1-thread-8 - 5000 records committed(current total 90000 records), lap time = 3.368
[2025-03-08 21:33:14] pool-1-thread-3 - 5000 records committed(current total 95000 records), lap time = 3.648
[2025-03-08 21:33:14] pool-1-thread-10 - 5000 records committed(current total 90000 records), lap time = 3.245
[2025-03-08 21:33:14] pool-1-thread-1 - 5000 records committed(current total 90000 records), lap time = 3.369
[2025-03-08 21:33:14] pool-1-thread-5 - 5000 records committed(current total 90000 records), lap time = 3.357
[2025-03-08 21:33:14] pool-1-thread-2 - 5000 records committed(current total 90000 records), lap time = 3.131
[2025-03-08 21:33:14] pool-1-thread-7 - 5000 records committed(current total 90000 records), lap time = 3.079
[2025-03-08 21:33:14] pool-1-thread-6 - 5000 records committed(current total 90000 records), lap time = 3.110
[2025-03-08 21:33:15] pool-1-thread-9 - 5000 records committed(current total 90000 records), lap time = 3.464
[2025-03-08 21:33:17] pool-1-thread-4 - 5000 records committed(current total 95000 records), lap time = 3.343
[2025-03-08 21:33:17] pool-1-thread-8 - 5000 records committed(current total 95000 records), lap time = 3.138
[2025-03-08 21:33:17] pool-1-thread-3 - 5000 records committed(current total 100000 records), lap time = 3.250
[2025-03-08 21:33:17] pool-1-thread-10 - 5000 records committed(current total 95000 records), lap time = 3.219
[2025-03-08 21:33:17] pool-1-thread-1 - 5000 records committed(current total 95000 records), lap time = 3.163
[2025-03-08 21:33:17] pool-1-thread-5 - 5000 records committed(current total 95000 records), lap time = 3.128
[2025-03-08 21:33:17] pool-1-thread-7 - 5000 records committed(current total 95000 records), lap time = 3.199
[2025-03-08 21:33:17] pool-1-thread-2 - 5000 records committed(current total 95000 records), lap time = 3.205
[2025-03-08 21:33:17] pool-1-thread-6 - 5000 records committed(current total 95000 records), lap time = 3.169
[2025-03-08 21:33:18] pool-1-thread-9 - 5000 records committed(current total 95000 records), lap time = 3.270
[2025-03-08 21:33:20] pool-1-thread-4 - 5000 records committed(current total 100000 records), lap time = 3.376
[2025-03-08 21:33:20] pool-1-thread-8 - 5000 records committed(current total 100000 records), lap time = 3.393
[2025-03-08 21:33:21] pool-1-thread-10 - 5000 records committed(current total 100000 records), lap time = 3.330
[2025-03-08 21:33:21] pool-1-thread-3 - 5000 records committed(current total 105000 records), lap time = 3.381
[2025-03-08 21:33:21] pool-1-thread-1 - 5000 records committed(current total 100000 records), lap time = 3.500
[2025-03-08 21:33:21] pool-1-thread-5 - 5000 records committed(current total 100000 records), lap time = 3.488
[2025-03-08 21:33:21] pool-1-thread-2 - 5000 records committed(current total 100000 records), lap time = 3.637
[2025-03-08 21:33:21] pool-1-thread-6 - 5000 records committed(current total 100000 records), lap time = 3.692
[2025-03-08 21:33:21] pool-1-thread-7 - 5000 records committed(current total 100000 records), lap time = 3.833
[2025-03-08 21:33:21] pool-1-thread-9 - 5000 records committed(current total 100000 records), lap time = 3.480
[2025-03-08 21:33:24] pool-1-thread-4 - 5000 records committed(current total 105000 records), lap time = 3.295
[2025-03-08 21:33:24] pool-1-thread-10 - 5000 records committed(current total 105000 records), lap time = 3.302
[2025-03-08 21:33:24] pool-1-thread-8 - 5000 records committed(current total 105000 records), lap time = 3.467
[2025-03-08 21:33:24] pool-1-thread-3 - 5000 records committed(current total 110000 records), lap time = 3.495
[2025-03-08 21:33:24] pool-1-thread-1 - 5000 records committed(current total 105000 records), lap time = 3.503
[2025-03-08 21:33:24] pool-1-thread-5 - 5000 records committed(current total 105000 records), lap time = 3.537
[2025-03-08 21:33:24] pool-1-thread-2 - 5000 records committed(current total 105000 records), lap time = 3.341
[2025-03-08 21:33:24] pool-1-thread-7 - 5000 records committed(current total 105000 records), lap time = 3.303
[2025-03-08 21:33:25] pool-1-thread-6 - 5000 records committed(current total 105000 records), lap time = 3.346
[2025-03-08 21:33:25] pool-1-thread-9 - 5000 records committed(current total 105000 records), lap time = 3.382
[2025-03-08 21:33:27] pool-1-thread-4 - 5000 records committed(current total 110000 records), lap time = 3.368
[2025-03-08 21:33:27] pool-1-thread-10 - 5000 records committed(current total 110000 records), lap time = 3.604
[2025-03-08 21:33:27] pool-1-thread-3 - 5000 records committed(current total 115000 records), lap time = 3.411
[2025-03-08 21:33:27] pool-1-thread-8 - 5000 records committed(current total 110000 records), lap time = 3.567
[2025-03-08 21:33:28] pool-1-thread-1 - 5000 records committed(current total 110000 records), lap time = 3.327
[2025-03-08 21:33:28] pool-1-thread-5 - 5000 records committed(current total 110000 records), lap time = 3.335
[2025-03-08 21:33:28] pool-1-thread-2 - 5000 records committed(current total 110000 records), lap time = 3.356
[2025-03-08 21:33:28] pool-1-thread-7 - 5000 records committed(current total 110000 records), lap time = 3.259
[2025-03-08 21:33:28] pool-1-thread-6 - 5000 records committed(current total 110000 records), lap time = 3.315
[2025-03-08 21:33:28] pool-1-thread-9 - 5000 records committed(current total 110000 records), lap time = 3.542
[2025-03-08 21:33:31] pool-1-thread-4 - 5000 records committed(current total 115000 records), lap time = 3.510
[2025-03-08 21:33:31] pool-1-thread-3 - 5000 records committed(current total 120000 records), lap time = 3.229
[2025-03-08 21:33:31] pool-1-thread-10 - 5000 records committed(current total 115000 records), lap time = 3.299
[2025-03-08 21:33:31] pool-1-thread-8 - 5000 records committed(current total 115000 records), lap time = 3.263
[2025-03-08 21:33:31] pool-1-thread-1 - 5000 records committed(current total 115000 records), lap time = 3.261
[2025-03-08 21:33:31] pool-1-thread-5 - 5000 records committed(current total 115000 records), lap time = 3.289
[2025-03-08 21:33:31] pool-1-thread-2 - 5000 records committed(current total 115000 records), lap time = 3.235
[2025-03-08 21:33:31] pool-1-thread-6 - 5000 records committed(current total 115000 records), lap time = 3.486
[2025-03-08 21:33:31] pool-1-thread-7 - 5000 records committed(current total 115000 records), lap time = 3.582
[2025-03-08 21:33:32] pool-1-thread-9 - 5000 records committed(current total 115000 records), lap time = 3.286
[2025-03-08 21:33:34] pool-1-thread-4 - 5000 records committed(current total 120000 records), lap time = 3.059
[2025-03-08 21:33:34] pool-1-thread-8 - 5000 records committed(current total 120000 records), lap time = 3.191
[2025-03-08 21:33:34] pool-1-thread-3 - 5000 records committed(current total 125000 records), lap time = 3.232
[2025-03-08 21:33:34] pool-1-thread-10 - 5000 records committed(current total 120000 records), lap time = 3.260
[2025-03-08 21:33:34] pool-1-thread-1 - 5000 records committed(current total 120000 records), lap time = 3.211
[2025-03-08 21:33:34] pool-1-thread-5 - 5000 records committed(current total 120000 records), lap time = 3.237
[2025-03-08 21:33:34] pool-1-thread-2 - 5000 records committed(current total 120000 records), lap time = 3.507
[2025-03-08 21:33:35] pool-1-thread-6 - 5000 records committed(current total 120000 records), lap time = 3.260
[2025-03-08 21:33:35] pool-1-thread-7 - 5000 records committed(current total 120000 records), lap time = 3.262
[2025-03-08 21:33:35] pool-1-thread-9 - 5000 records committed(current total 120000 records), lap time = 3.383
[2025-03-08 21:33:37] pool-1-thread-4 - 5000 records committed(current total 125000 records), lap time = 3.546
[2025-03-08 21:33:37] pool-1-thread-8 - 5000 records committed(current total 125000 records), lap time = 3.280
[2025-03-08 21:33:37] pool-1-thread-3 - 5000 records committed(current total 130000 records), lap time = 3.323
[2025-03-08 21:33:37] pool-1-thread-1 - 5000 records committed(current total 125000 records), lap time = 3.242
[2025-03-08 21:33:38] pool-1-thread-10 - 5000 records committed(current total 125000 records), lap time = 3.611
[2025-03-08 21:33:38] pool-1-thread-5 - 5000 records committed(current total 125000 records), lap time = 3.582
[2025-03-08 21:33:38] pool-1-thread-2 - 5000 records committed(current total 125000 records), lap time = 3.402
[2025-03-08 21:33:38] pool-1-thread-6 - 5000 records committed(current total 125000 records), lap time = 3.368
[2025-03-08 21:33:38] pool-1-thread-7 - 5000 records committed(current total 125000 records), lap time = 3.423
[2025-03-08 21:33:38] pool-1-thread-9 - 5000 records committed(current total 125000 records), lap time = 3.359
[2025-03-08 21:33:41] pool-1-thread-4 - 5000 records committed(current total 130000 records), lap time = 3.827
[2025-03-08 21:33:41] pool-1-thread-8 - 5000 records committed(current total 130000 records), lap time = 3.808
[2025-03-08 21:33:41] pool-1-thread-3 - 5000 records committed(current total 135000 records), lap time = 3.800
[2025-03-08 21:33:41] pool-1-thread-10 - 5000 records committed(current total 130000 records), lap time = 3.494
[2025-03-08 21:33:41] pool-1-thread-1 - 5000 records committed(current total 130000 records), lap time = 3.870
[2025-03-08 21:33:41] pool-1-thread-5 - 5000 records committed(current total 130000 records), lap time = 3.571
[2025-03-08 21:33:41] pool-1-thread-2 - 5000 records committed(current total 130000 records), lap time = 3.552
[2025-03-08 21:33:42] pool-1-thread-7 - 5000 records committed(current total 130000 records), lap time = 3.506
[2025-03-08 21:33:42] pool-1-thread-6 - 5000 records committed(current total 130000 records), lap time = 3.687
[2025-03-08 21:33:42] pool-1-thread-9 - 5000 records committed(current total 130000 records), lap time = 3.825
[2025-03-08 21:33:45] pool-1-thread-4 - 5000 records committed(current total 135000 records), lap time = 3.596
[2025-03-08 21:33:45] pool-1-thread-10 - 5000 records committed(current total 135000 records), lap time = 3.572
[2025-03-08 21:33:45] pool-1-thread-1 - 5000 records committed(current total 135000 records), lap time = 3.595
[2025-03-08 21:33:45] pool-1-thread-3 - 5000 records committed(current total 140000 records), lap time = 3.678
[2025-03-08 21:33:45] pool-1-thread-8 - 5000 records committed(current total 135000 records), lap time = 3.794
[2025-03-08 21:33:45] pool-1-thread-5 - 5000 records committed(current total 135000 records), lap time = 3.830
[2025-03-08 21:33:45] pool-1-thread-2 - 5000 records committed(current total 135000 records), lap time = 3.758
[2025-03-08 21:33:45] pool-1-thread-7 - 5000 records committed(current total 135000 records), lap time = 3.737
[2025-03-08 21:33:45] pool-1-thread-6 - 5000 records committed(current total 135000 records), lap time = 3.787
[2025-03-08 21:33:46] pool-1-thread-9 - 5000 records committed(current total 135000 records), lap time = 3.626
[2025-03-08 21:33:48] pool-1-thread-4 - 5000 records committed(current total 140000 records), lap time = 3.889
[2025-03-08 21:33:48] pool-1-thread-3 - 5000 records committed(current total 145000 records), lap time = 3.728
[2025-03-08 21:33:48] pool-1-thread-1 - 5000 records committed(current total 140000 records), lap time = 3.755
[2025-03-08 21:33:49] pool-1-thread-10 - 5000 records committed(current total 140000 records), lap time = 3.843
[2025-03-08 21:33:49] pool-1-thread-2 - 5000 records committed(current total 140000 records), lap time = 3.589
[2025-03-08 21:33:49] pool-1-thread-8 - 5000 records committed(current total 140000 records), lap time = 4.223
[2025-03-08 21:33:49] pool-1-thread-5 - 5000 records committed(current total 140000 records), lap time = 3.928
[2025-03-08 21:33:49] pool-1-thread-7 - 5000 records committed(current total 140000 records), lap time = 3.884
[2025-03-08 21:33:50] pool-1-thread-6 - 5000 records committed(current total 140000 records), lap time = 4.072
[2025-03-08 21:33:50] pool-1-thread-9 - 5000 records committed(current total 140000 records), lap time = 3.976
[2025-03-08 21:33:53] pool-1-thread-10 - 5000 records committed(current total 145000 records), lap time = 4.035
[2025-03-08 21:33:53] pool-1-thread-4 - 5000 records committed(current total 145000 records), lap time = 4.128
[2025-03-08 21:33:53] pool-1-thread-1 - 5000 records committed(current total 145000 records), lap time = 4.132
[2025-03-08 21:33:53] pool-1-thread-3 - 5000 records committed(current total 150000 records), lap time = 4.295
[2025-03-08 21:33:53] pool-1-thread-5 - 5000 records committed(current total 145000 records), lap time = 3.764
[2025-03-08 21:33:53] pool-1-thread-2 - 5000 records committed(current total 145000 records), lap time = 4.131
[2025-03-08 21:33:53] pool-1-thread-8 - 5000 records committed(current total 145000 records), lap time = 3.886
[2025-03-08 21:33:53] pool-1-thread-7 - 5000 records committed(current total 145000 records), lap time = 3.821
[2025-03-08 21:33:53] pool-1-thread-6 - 5000 records committed(current total 145000 records), lap time = 3.680
[2025-03-08 21:33:54] pool-1-thread-9 - 5000 records committed(current total 145000 records), lap time = 3.955
[2025-03-08 21:33:56] pool-1-thread-1 - 5000 records committed(current total 150000 records), lap time = 3.864
[2025-03-08 21:33:57] pool-1-thread-4 - 5000 records committed(current total 150000 records), lap time = 3.960
[2025-03-08 21:33:57] pool-1-thread-10 - 5000 records committed(current total 150000 records), lap time = 4.051
[2025-03-08 21:33:57] pool-1-thread-3 - 5000 records committed(current total 155000 records), lap time = 4.465
[2025-03-08 21:33:57] pool-1-thread-5 - 5000 records committed(current total 150000 records), lap time = 4.603
[2025-03-08 21:33:58] pool-1-thread-2 - 5000 records committed(current total 150000 records), lap time = 4.841
[2025-03-08 21:33:58] pool-1-thread-8 - 5000 records committed(current total 150000 records), lap time = 4.922
[2025-03-08 21:33:58] pool-1-thread-7 - 5000 records committed(current total 150000 records), lap time = 4.966
[2025-03-08 21:33:58] pool-1-thread-6 - 5000 records committed(current total 150000 records), lap time = 5.080
[2025-03-08 21:33:59] pool-1-thread-9 - 5000 records committed(current total 150000 records), lap time = 4.840
[2025-03-08 21:34:03] pool-1-thread-1 - 5000 records committed(current total 155000 records), lap time = 6.031
[2025-03-08 21:34:03] pool-1-thread-4 - 5000 records committed(current total 155000 records), lap time = 6.654
[2025-03-08 21:34:03] pool-1-thread-10 - 5000 records committed(current total 155000 records), lap time = 6.687
[2025-03-08 21:34:04] pool-1-thread-3 - 5000 records committed(current total 160000 records), lap time = 6.275
[2025-03-08 21:34:04] pool-1-thread-5 - 5000 records committed(current total 155000 records), lap time = 6.433
[2025-03-08 21:34:04] pool-1-thread-7 - 5000 records committed(current total 155000 records), lap time = 6.074
[2025-03-08 21:34:04] pool-1-thread-8 - 5000 records committed(current total 155000 records), lap time = 6.475
[2025-03-08 21:34:04] pool-1-thread-2 - 5000 records committed(current total 155000 records), lap time = 6.616
[2025-03-08 21:34:05] pool-1-thread-9 - 5000 records committed(current total 155000 records), lap time = 6.040
[2025-03-08 21:34:05] pool-1-thread-6 - 5000 records committed(current total 155000 records), lap time = 6.438
[2025-03-08 21:34:09] pool-1-thread-1 - 5000 records committed(current total 160000 records), lap time = 6.159
[2025-03-08 21:34:09] pool-1-thread-10 - 5000 records committed(current total 160000 records), lap time = 5.859
[2025-03-08 21:34:10] pool-1-thread-4 - 5000 records committed(current total 160000 records), lap time = 6.340
[2025-03-08 21:34:10] pool-1-thread-3 - 5000 records committed(current total 165000 records), lap time = 6.049
[2025-03-08 21:34:10] pool-1-thread-5 - 5000 records committed(current total 160000 records), lap time = 6.521
[2025-03-08 21:34:10] pool-1-thread-7 - 5000 records committed(current total 160000 records), lap time = 6.459
[2025-03-08 21:34:11] pool-1-thread-2 - 5000 records committed(current total 160000 records), lap time = 6.262
[2025-03-08 21:34:11] pool-1-thread-9 - 5000 records committed(current total 160000 records), lap time = 6.260
[2025-03-08 21:34:11] pool-1-thread-8 - 5000 records committed(current total 160000 records), lap time = 6.584
[2025-03-08 21:34:11] pool-1-thread-6 - 5000 records committed(current total 160000 records), lap time = 6.570
[2025-03-08 21:34:15] pool-1-thread-1 - 5000 records committed(current total 165000 records), lap time = 6.552
[2025-03-08 21:34:16] pool-1-thread-10 - 5000 records committed(current total 165000 records), lap time = 6.874
[2025-03-08 21:34:16] pool-1-thread-3 - 5000 records committed(current total 170000 records), lap time = 6.537
[2025-03-08 21:34:17] pool-1-thread-4 - 5000 records committed(current total 165000 records), lap time = 6.991
[2025-03-08 21:34:17] pool-1-thread-2 - 5000 records committed(current total 165000 records), lap time = 6.160
[2025-03-08 21:34:17] pool-1-thread-5 - 5000 records committed(current total 165000 records), lap time = 6.503
[2025-03-08 21:34:17] pool-1-thread-8 - 5000 records committed(current total 165000 records), lap time = 6.233
[2025-03-08 21:34:17] pool-1-thread-7 - 5000 records committed(current total 165000 records), lap time = 6.695
[2025-03-08 21:34:17] pool-1-thread-9 - 5000 records committed(current total 165000 records), lap time = 6.312
[2025-03-08 21:34:17] pool-1-thread-6 - 5000 records committed(current total 165000 records), lap time = 6.055
[2025-03-08 21:34:21] pool-1-thread-1 - 5000 records committed(current total 170000 records), lap time = 6.183
[2025-03-08 21:34:22] pool-1-thread-10 - 5000 records committed(current total 170000 records), lap time = 5.930
[2025-03-08 21:34:23] pool-1-thread-2 - 5000 records committed(current total 170000 records), lap time = 5.895
[2025-03-08 21:34:23] pool-1-thread-3 - 5000 records committed(current total 175000 records), lap time = 6.602
[2025-03-08 21:34:23] pool-1-thread-4 - 5000 records committed(current total 170000 records), lap time = 6.319
[2025-03-08 21:34:23] pool-1-thread-5 - 5000 records committed(current total 170000 records), lap time = 6.066
[2025-03-08 21:34:23] pool-1-thread-9 - 5000 records committed(current total 170000 records), lap time = 5.838
[2025-03-08 21:34:23] pool-1-thread-7 - 5000 records committed(current total 170000 records), lap time = 6.266
[2025-03-08 21:34:24] pool-1-thread-6 - 5000 records committed(current total 170000 records), lap time = 6.181
[2025-03-08 21:34:24] pool-1-thread-8 - 5000 records committed(current total 170000 records), lap time = 6.479
[2025-03-08 21:34:28] pool-1-thread-1 - 5000 records committed(current total 175000 records), lap time = 6.308
[2025-03-08 21:34:29] pool-1-thread-10 - 5000 records committed(current total 175000 records), lap time = 6.787
[2025-03-08 21:34:29] pool-1-thread-2 - 5000 records committed(current total 175000 records), lap time = 6.175
[2025-03-08 21:34:29] pool-1-thread-3 - 5000 records committed(current total 180000 records), lap time = 6.211
[2025-03-08 21:34:29] pool-1-thread-9 - 5000 records committed(current total 175000 records), lap time = 6.318
[2025-03-08 21:34:29] pool-1-thread-4 - 5000 records committed(current total 175000 records), lap time = 6.530
[2025-03-08 21:34:30] pool-1-thread-5 - 5000 records committed(current total 175000 records), lap time = 6.692
[2025-03-08 21:34:30] pool-1-thread-6 - 5000 records committed(current total 175000 records), lap time = 6.389
[2025-03-08 21:34:30] pool-1-thread-7 - 5000 records committed(current total 175000 records), lap time = 6.497
[2025-03-08 21:34:30] pool-1-thread-8 - 5000 records committed(current total 175000 records), lap time = 6.439
[2025-03-08 21:34:34] pool-1-thread-1 - 5000 records committed(current total 180000 records), lap time = 6.185
[2025-03-08 21:34:34] pool-1-thread-2 - 5000 records committed(current total 180000 records), lap time = 5.650
[2025-03-08 21:34:35] pool-1-thread-3 - 5000 records committed(current total 185000 records), lap time = 5.985
[2025-03-08 21:34:35] pool-1-thread-10 - 5000 records committed(current total 180000 records), lap time = 6.435
[2025-03-08 21:34:36] pool-1-thread-4 - 5000 records committed(current total 180000 records), lap time = 6.166
[2025-03-08 21:34:36] pool-1-thread-5 - 5000 records committed(current total 180000 records), lap time = 5.912
[2025-03-08 21:34:36] pool-1-thread-7 - 5000 records committed(current total 180000 records), lap time = 5.706
[2025-03-08 21:34:36] pool-1-thread-6 - 5000 records committed(current total 180000 records), lap time = 6.073
[2025-03-08 21:34:36] pool-1-thread-9 - 5000 records committed(current total 180000 records), lap time = 6.668
[2025-03-08 21:34:37] pool-1-thread-8 - 5000 records committed(current total 180000 records), lap time = 6.863
[2025-03-08 21:34:40] pool-1-thread-1 - 5000 records committed(current total 185000 records), lap time = 6.556
[2025-03-08 21:34:41] pool-1-thread-2 - 5000 records committed(current total 185000 records), lap time = 6.678
[2025-03-08 21:34:42] pool-1-thread-3 - 5000 records committed(current total 190000 records), lap time = 6.714
[2025-03-08 21:34:42] pool-1-thread-5 - 5000 records committed(current total 185000 records), lap time = 6.232
[2025-03-08 21:34:42] pool-1-thread-10 - 5000 records committed(current total 185000 records), lap time = 7.026
[2025-03-08 21:34:42] pool-1-thread-7 - 5000 records committed(current total 185000 records), lap time = 6.686
[2025-03-08 21:34:42] pool-1-thread-4 - 5000 records committed(current total 185000 records), lap time = 6.790
[2025-03-08 21:34:42] pool-1-thread-9 - 5000 records committed(current total 185000 records), lap time = 6.433
[2025-03-08 21:34:42] pool-1-thread-6 - 5000 records committed(current total 185000 records), lap time = 6.497
[2025-03-08 21:34:43] pool-1-thread-8 - 5000 records committed(current total 185000 records), lap time = 6.260
[2025-03-08 21:34:47] pool-1-thread-1 - 5000 records committed(current total 190000 records), lap time = 6.144
[2025-03-08 21:34:48] pool-1-thread-2 - 5000 records committed(current total 190000 records), lap time = 6.568
[2025-03-08 21:34:48] pool-1-thread-3 - 5000 records committed(current total 195000 records), lap time = 6.288
[2025-03-08 21:34:48] pool-1-thread-5 - 5000 records committed(current total 190000 records), lap time = 6.466
[2025-03-08 21:34:49] pool-1-thread-7 - 5000 records committed(current total 190000 records), lap time = 6.311
[2025-03-08 21:34:49] pool-1-thread-6 - 5000 records committed(current total 190000 records), lap time = 6.218
[2025-03-08 21:34:49] pool-1-thread-10 - 5000 records committed(current total 190000 records), lap time = 6.585
[2025-03-08 21:34:49] pool-1-thread-9 - 5000 records committed(current total 190000 records), lap time = 6.366
[2025-03-08 21:34:49] pool-1-thread-4 - 5000 records committed(current total 190000 records), lap time = 6.497
[2025-03-08 21:34:50] pool-1-thread-8 - 5000 records committed(current total 190000 records), lap time = 6.546
[2025-03-08 21:34:53] pool-1-thread-1 - 5000 records committed(current total 195000 records), lap time = 6.250
[2025-03-08 21:34:54] pool-1-thread-2 - 5000 records committed(current total 195000 records), lap time = 6.242
[2025-03-08 21:34:54] pool-1-thread-3 - 5000 records committed(current total 200000 records), lap time = 6.201
[2025-03-08 21:34:54] pool-1-thread-5 - 5000 records committed(current total 195000 records), lap time = 6.234
[2025-03-08 21:34:55] pool-1-thread-9 - 5000 records committed(current total 195000 records), lap time = 6.049
[2025-03-08 21:34:55] pool-1-thread-7 - 5000 records committed(current total 195000 records), lap time = 6.319
[2025-03-08 21:34:55] pool-1-thread-6 - 5000 records committed(current total 195000 records), lap time = 6.307
[2025-03-08 21:34:55] pool-1-thread-10 - 5000 records committed(current total 195000 records), lap time = 6.351
[2025-03-08 21:34:55] pool-1-thread-4 - 5000 records committed(current total 195000 records), lap time = 6.367
[2025-03-08 21:34:56] pool-1-thread-8 - 5000 records committed(current total 195000 records), lap time = 6.118
[2025-03-08 21:34:59] pool-1-thread-1 - 5000 records committed(current total 200000 records), lap time = 6.537
[2025-03-08 21:35:01] pool-1-thread-3 - 5000 records committed(current total 205000 records), lap time = 6.405
[2025-03-08 21:35:01] pool-1-thread-2 - 5000 records committed(current total 200000 records), lap time = 6.643
[2025-03-08 21:35:01] pool-1-thread-6 - 5000 records committed(current total 200000 records), lap time = 6.466
[2025-03-08 21:35:02] pool-1-thread-9 - 5000 records committed(current total 200000 records), lap time = 6.680
[2025-03-08 21:35:02] pool-1-thread-7 - 5000 records committed(current total 200000 records), lap time = 6.684
[2025-03-08 21:35:02] pool-1-thread-5 - 5000 records committed(current total 200000 records), lap time = 7.177
[2025-03-08 21:35:02] pool-1-thread-4 - 5000 records committed(current total 200000 records), lap time = 6.883
[2025-03-08 21:35:02] pool-1-thread-10 - 5000 records committed(current total 200000 records), lap time = 6.957
[2025-03-08 21:35:02] pool-1-thread-8 - 5000 records committed(current total 200000 records), lap time = 6.542
[2025-03-08 21:35:06] pool-1-thread-1 - 5000 records committed(current total 205000 records), lap time = 6.392
[2025-03-08 21:35:07] pool-1-thread-3 - 5000 records committed(current total 210000 records), lap time = 6.024
[2025-03-08 21:35:07] pool-1-thread-2 - 5000 records committed(current total 205000 records), lap time = 6.130
[2025-03-08 21:35:08] pool-1-thread-9 - 5000 records committed(current total 205000 records), lap time = 6.199
[2025-03-08 21:35:08] pool-1-thread-6 - 5000 records committed(current total 205000 records), lap time = 6.297
[2025-03-08 21:35:08] pool-1-thread-7 - 5000 records committed(current total 205000 records), lap time = 6.238
[2025-03-08 21:35:08] pool-1-thread-5 - 5000 records committed(current total 205000 records), lap time = 6.322
[2025-03-08 21:35:08] pool-1-thread-4 - 5000 records committed(current total 205000 records), lap time = 5.913
[2025-03-08 21:35:08] pool-1-thread-10 - 5000 records committed(current total 205000 records), lap time = 6.273
[2025-03-08 21:35:09] pool-1-thread-8 - 5000 records committed(current total 205000 records), lap time = 6.133
[2025-03-08 21:35:12] pool-1-thread-1 - 5000 records committed(current total 210000 records), lap time = 6.178
[2025-03-08 21:35:13] pool-1-thread-3 - 5000 records committed(current total 215000 records), lap time = 6.328
[2025-03-08 21:35:13] pool-1-thread-2 - 5000 records committed(current total 210000 records), lap time = 6.422
[2025-03-08 21:35:14] pool-1-thread-6 - 5000 records committed(current total 210000 records), lap time = 6.091
[2025-03-08 21:35:14] pool-1-thread-9 - 5000 records committed(current total 210000 records), lap time = 6.190
[2025-03-08 21:35:14] pool-1-thread-7 - 5000 records committed(current total 210000 records), lap time = 6.073
[2025-03-08 21:35:14] pool-1-thread-4 - 5000 records committed(current total 210000 records), lap time = 6.076
[2025-03-08 21:35:14] pool-1-thread-5 - 5000 records committed(current total 210000 records), lap time = 6.146
[2025-03-08 21:35:14] pool-1-thread-10 - 5000 records committed(current total 210000 records), lap time = 5.907
[2025-03-08 21:35:15] pool-1-thread-8 - 5000 records committed(current total 210000 records), lap time = 6.282
[2025-03-08 21:35:18] pool-1-thread-1 - 5000 records committed(current total 215000 records), lap time = 6.509
[2025-03-08 21:35:19] pool-1-thread-3 - 5000 records committed(current total 220000 records), lap time = 6.309
[2025-03-08 21:35:19] pool-1-thread-2 - 5000 records committed(current total 215000 records), lap time = 6.328
[2025-03-08 21:35:20] pool-1-thread-7 - 5000 records committed(current total 215000 records), lap time = 6.250
[2025-03-08 21:35:20] pool-1-thread-9 - 5000 records committed(current total 215000 records), lap time = 6.319
[2025-03-08 21:35:20] pool-1-thread-6 - 5000 records committed(current total 215000 records), lap time = 6.409
[2025-03-08 21:35:20] pool-1-thread-4 - 5000 records committed(current total 215000 records), lap time = 6.335
[2025-03-08 21:35:20] pool-1-thread-5 - 5000 records committed(current total 215000 records), lap time = 6.316
[2025-03-08 21:35:21] pool-1-thread-10 - 5000 records committed(current total 215000 records), lap time = 6.281
[2025-03-08 21:35:21] pool-1-thread-8 - 5000 records committed(current total 215000 records), lap time = 6.297
[2025-03-08 21:35:24] pool-1-thread-1 - 5000 records committed(current total 220000 records), lap time = 5.767
[2025-03-08 21:35:25] pool-1-thread-3 - 5000 records committed(current total 225000 records), lap time = 5.703
[2025-03-08 21:35:25] pool-1-thread-2 - 5000 records committed(current total 220000 records), lap time = 5.964
[2025-03-08 21:35:26] pool-1-thread-7 - 5000 records committed(current total 220000 records), lap time = 5.950
[2025-03-08 21:35:26] pool-1-thread-6 - 5000 records committed(current total 220000 records), lap time = 5.914
[2025-03-08 21:35:26] pool-1-thread-9 - 5000 records committed(current total 220000 records), lap time = 6.040
[2025-03-08 21:35:26] pool-1-thread-4 - 5000 records committed(current total 220000 records), lap time = 5.923
[2025-03-08 21:35:26] pool-1-thread-5 - 5000 records committed(current total 220000 records), lap time = 5.940
[2025-03-08 21:35:27] pool-1-thread-10 - 5000 records committed(current total 220000 records), lap time = 6.044
[2025-03-08 21:35:27] pool-1-thread-8 - 5000 records committed(current total 220000 records), lap time = 5.785
[2025-03-08 21:35:30] pool-1-thread-1 - 5000 records committed(current total 225000 records), lap time = 5.538
[2025-03-08 21:35:31] pool-1-thread-3 - 5000 records committed(current total 230000 records), lap time = 5.933
[2025-03-08 21:35:31] pool-1-thread-2 - 5000 records committed(current total 225000 records), lap time = 5.784
[2025-03-08 21:35:32] pool-1-thread-7 - 5000 records committed(current total 225000 records), lap time = 5.770
[2025-03-08 21:35:32] pool-1-thread-6 - 5000 records committed(current total 225000 records), lap time = 5.751
[2025-03-08 21:35:32] pool-1-thread-9 - 5000 records committed(current total 225000 records), lap time = 5.857
[2025-03-08 21:35:32] pool-1-thread-4 - 5000 records committed(current total 225000 records), lap time = 5.842
[2025-03-08 21:35:33] pool-1-thread-5 - 5000 records committed(current total 225000 records), lap time = 6.108
[2025-03-08 21:35:33] pool-1-thread-10 - 5000 records committed(current total 225000 records), lap time = 6.108
[2025-03-08 21:35:33] pool-1-thread-8 - 5000 records committed(current total 225000 records), lap time = 6.028
[2025-03-08 21:35:36] pool-1-thread-1 - 5000 records committed(current total 230000 records), lap time = 6.327
[2025-03-08 21:35:37] pool-1-thread-3 - 5000 records committed(current total 235000 records), lap time = 6.051
[2025-03-08 21:35:38] pool-1-thread-2 - 5000 records committed(current total 230000 records), lap time = 6.326
[2025-03-08 21:35:38] pool-1-thread-7 - 5000 records committed(current total 230000 records), lap time = 6.292
[2025-03-08 21:35:38] pool-1-thread-6 - 5000 records committed(current total 230000 records), lap time = 6.310
[2025-03-08 21:35:38] pool-1-thread-9 - 5000 records committed(current total 230000 records), lap time = 6.318
[2025-03-08 21:35:39] pool-1-thread-4 - 5000 records committed(current total 230000 records), lap time = 6.370
[2025-03-08 21:35:39] pool-1-thread-5 - 5000 records committed(current total 230000 records), lap time = 6.154
[2025-03-08 21:35:39] pool-1-thread-10 - 5000 records committed(current total 230000 records), lap time = 6.620
[2025-03-08 21:35:39] pool-1-thread-8 - 5000 records committed(current total 230000 records), lap time = 6.423
[2025-03-08 21:35:42] pool-1-thread-1 - 5000 records committed(current total 235000 records), lap time = 6.296
[2025-03-08 21:35:43] pool-1-thread-3 - 5000 records committed(current total 240000 records), lap time = 6.491
[2025-03-08 21:35:44] pool-1-thread-2 - 5000 records committed(current total 235000 records), lap time = 6.047
[2025-03-08 21:35:44] pool-1-thread-7 - 5000 records committed(current total 235000 records), lap time = 6.181
[2025-03-08 21:35:44] pool-1-thread-6 - 5000 records committed(current total 235000 records), lap time = 6.217
[2025-03-08 21:35:45] pool-1-thread-9 - 5000 records committed(current total 235000 records), lap time = 6.144
[2025-03-08 21:35:45] pool-1-thread-5 - 5000 records committed(current total 235000 records), lap time = 6.098
[2025-03-08 21:35:45] pool-1-thread-4 - 5000 records committed(current total 235000 records), lap time = 6.305
[2025-03-08 21:35:46] pool-1-thread-10 - 5000 records committed(current total 235000 records), lap time = 6.208
[2025-03-08 21:35:46] pool-1-thread-8 - 5000 records committed(current total 235000 records), lap time = 6.262
[2025-03-08 21:35:48] pool-1-thread-1 - 5000 records committed(current total 240000 records), lap time = 6.016
[2025-03-08 21:35:49] pool-1-thread-3 - 5000 records committed(current total 245000 records), lap time = 6.098
[2025-03-08 21:35:49] pool-1-thread-2 - 5000 records committed(current total 240000 records), lap time = 5.874
[2025-03-08 21:35:50] pool-1-thread-6 - 5000 records committed(current total 240000 records), lap time = 5.887
[2025-03-08 21:35:50] pool-1-thread-7 - 5000 records committed(current total 240000 records), lap time = 5.958
[2025-03-08 21:35:51] pool-1-thread-9 - 5000 records committed(current total 240000 records), lap time = 5.957
[2025-03-08 21:35:51] pool-1-thread-5 - 5000 records committed(current total 240000 records), lap time = 5.876
[2025-03-08 21:35:51] pool-1-thread-4 - 5000 records committed(current total 240000 records), lap time = 6.001
[2025-03-08 21:35:51] pool-1-thread-10 - 5000 records committed(current total 240000 records), lap time = 5.512
[2025-03-08 21:35:51] pool-1-thread-8 - 5000 records committed(current total 240000 records), lap time = 5.759
[2025-03-08 21:35:54] pool-1-thread-1 - 5000 records committed(current total 245000 records), lap time = 5.549
[2025-03-08 21:35:55] pool-1-thread-3 - 5000 records committed(current total 250000 records), lap time = 5.647
[2025-03-08 21:35:55] pool-1-thread-2 - 5000 records committed(current total 245000 records), lap time = 5.647
[2025-03-08 21:35:56] pool-1-thread-6 - 5000 records committed(current total 245000 records), lap time = 5.835
[2025-03-08 21:35:56] pool-1-thread-7 - 5000 records committed(current total 245000 records), lap time = 5.868
[2025-03-08 21:35:56] pool-1-thread-9 - 5000 records committed(current total 245000 records), lap time = 5.800
[2025-03-08 21:35:56] pool-1-thread-5 - 5000 records committed(current total 245000 records), lap time = 5.809
[2025-03-08 21:35:57] pool-1-thread-4 - 5000 records committed(current total 245000 records), lap time = 5.966
[2025-03-08 21:35:57] pool-1-thread-10 - 5000 records committed(current total 245000 records), lap time = 6.011
[2025-03-08 21:35:57] pool-1-thread-8 - 5000 records committed(current total 245000 records), lap time = 5.802
[2025-03-08 21:36:01] pool-1-thread-1 - 5000 records committed(current total 250000 records), lap time = 6.586
[2025-03-08 21:36:02] pool-1-thread-3 - 5000 records committed(current total 255000 records), lap time = 6.452
[2025-03-08 21:36:02] pool-1-thread-2 - 5000 records committed(current total 250000 records), lap time = 6.584
[2025-03-08 21:36:03] pool-1-thread-5 - 5000 records committed(current total 250000 records), lap time = 6.125
[2025-03-08 21:36:03] pool-1-thread-6 - 5000 records committed(current total 250000 records), lap time = 6.435
[2025-03-08 21:36:03] pool-1-thread-7 - 5000 records committed(current total 250000 records), lap time = 6.409
[2025-03-08 21:36:03] pool-1-thread-9 - 5000 records committed(current total 250000 records), lap time = 6.413
[2025-03-08 21:36:03] pool-1-thread-4 - 5000 records committed(current total 250000 records), lap time = 6.614
[2025-03-08 21:36:03] pool-1-thread-10 - 5000 records committed(current total 250000 records), lap time = 6.383
[2025-03-08 21:36:04] pool-1-thread-8 - 5000 records committed(current total 250000 records), lap time = 6.535
[2025-03-08 21:36:07] pool-1-thread-1 - 5000 records committed(current total 255000 records), lap time = 5.967
[2025-03-08 21:36:08] pool-1-thread-3 - 5000 records committed(current total 260000 records), lap time = 6.075
[2025-03-08 21:36:08] pool-1-thread-2 - 5000 records committed(current total 255000 records), lap time = 6.108
[2025-03-08 21:36:09] pool-1-thread-5 - 5000 records committed(current total 255000 records), lap time = 6.241
[2025-03-08 21:36:09] pool-1-thread-7 - 5000 records committed(current total 255000 records), lap time = 6.210
[2025-03-08 21:36:09] pool-1-thread-6 - 5000 records committed(current total 255000 records), lap time = 6.265
[2025-03-08 21:36:09] pool-1-thread-9 - 5000 records committed(current total 255000 records), lap time = 6.340
[2025-03-08 21:36:09] pool-1-thread-4 - 5000 records committed(current total 255000 records), lap time = 5.882
[2025-03-08 21:36:09] pool-1-thread-10 - 5000 records committed(current total 255000 records), lap time = 5.957
[2025-03-08 21:36:10] pool-1-thread-8 - 5000 records committed(current total 255000 records), lap time = 6.296
[2025-03-08 21:36:12] pool-1-thread-1 - 5000 records committed(current total 260000 records), lap time = 5.920
[2025-03-08 21:36:14] pool-1-thread-3 - 5000 records committed(current total 265000 records), lap time = 6.434
[2025-03-08 21:36:14] pool-1-thread-2 - 5000 records committed(current total 260000 records), lap time = 6.488
[2025-03-08 21:36:15] pool-1-thread-5 - 5000 records committed(current total 260000 records), lap time = 6.317
[2025-03-08 21:36:15] pool-1-thread-7 - 5000 records committed(current total 260000 records), lap time = 6.317
[2025-03-08 21:36:15] pool-1-thread-9 - 5000 records committed(current total 260000 records), lap time = 6.110
[2025-03-08 21:36:15] pool-1-thread-6 - 5000 records committed(current total 260000 records), lap time = 6.441
[2025-03-08 21:36:16] pool-1-thread-10 - 5000 records committed(current total 260000 records), lap time = 6.613
[2025-03-08 21:36:16] pool-1-thread-4 - 5000 records committed(current total 260000 records), lap time = 6.743
[2025-03-08 21:36:16] pool-1-thread-8 - 5000 records committed(current total 260000 records), lap time = 6.289
[2025-03-08 21:36:19] pool-1-thread-1 - 5000 records committed(current total 265000 records), lap time = 6.839
[2025-03-08 21:36:20] pool-1-thread-3 - 5000 records committed(current total 270000 records), lap time = 6.335
[2025-03-08 21:36:20] pool-1-thread-2 - 5000 records committed(current total 265000 records), lap time = 6.108
[2025-03-08 21:36:21] pool-1-thread-5 - 5000 records committed(current total 265000 records), lap time = 6.297
[2025-03-08 21:36:22] pool-1-thread-9 - 5000 records committed(current total 265000 records), lap time = 6.326
[2025-03-08 21:36:22] pool-1-thread-6 - 5000 records committed(current total 265000 records), lap time = 6.360
[2025-03-08 21:36:22] pool-1-thread-7 - 5000 records committed(current total 265000 records), lap time = 6.590
[2025-03-08 21:36:23] pool-1-thread-4 - 5000 records committed(current total 265000 records), lap time = 6.502
[2025-03-08 21:36:23] pool-1-thread-10 - 5000 records committed(current total 265000 records), lap time = 6.812
[2025-03-08 21:36:23] pool-1-thread-8 - 5000 records committed(current total 265000 records), lap time = 7.003
[2025-03-08 21:36:26] pool-1-thread-1 - 5000 records committed(current total 270000 records), lap time = 6.737
[2025-03-08 21:36:27] pool-1-thread-3 - 5000 records committed(current total 275000 records), lap time = 6.493
[2025-03-08 21:36:27] pool-1-thread-2 - 5000 records committed(current total 270000 records), lap time = 6.582
[2025-03-08 21:36:28] pool-1-thread-5 - 5000 records committed(current total 270000 records), lap time = 6.886
[2025-03-08 21:36:28] pool-1-thread-7 - 5000 records committed(current total 270000 records), lap time = 6.649
[2025-03-08 21:36:28] pool-1-thread-9 - 5000 records committed(current total 270000 records), lap time = 6.901
[2025-03-08 21:36:28] pool-1-thread-6 - 5000 records committed(current total 270000 records), lap time = 6.805
[2025-03-08 21:36:29] pool-1-thread-4 - 5000 records committed(current total 270000 records), lap time = 6.000
[2025-03-08 21:36:29] pool-1-thread-10 - 5000 records committed(current total 270000 records), lap time = 6.162
[2025-03-08 21:36:29] pool-1-thread-8 - 5000 records committed(current total 270000 records), lap time = 6.086
[2025-03-08 21:36:33] pool-1-thread-1 - 5000 records committed(current total 275000 records), lap time = 6.535
[2025-03-08 21:36:33] pool-1-thread-3 - 5000 records committed(current total 280000 records), lap time = 6.288
[2025-03-08 21:36:34] pool-1-thread-2 - 5000 records committed(current total 275000 records), lap time = 6.728
[2025-03-08 21:36:35] pool-1-thread-6 - 5000 records committed(current total 275000 records), lap time = 6.171
[2025-03-08 21:36:35] pool-1-thread-5 - 5000 records committed(current total 275000 records), lap time = 6.372
[2025-03-08 21:36:35] pool-1-thread-9 - 5000 records committed(current total 275000 records), lap time = 6.351
[2025-03-08 21:36:35] pool-1-thread-4 - 5000 records committed(current total 275000 records), lap time = 6.267
[2025-03-08 21:36:35] pool-1-thread-7 - 5000 records committed(current total 275000 records), lap time = 6.475
[2025-03-08 21:36:35] pool-1-thread-10 - 5000 records committed(current total 275000 records), lap time = 6.166
[2025-03-08 21:36:36] pool-1-thread-8 - 5000 records committed(current total 275000 records), lap time = 6.520
[2025-03-08 21:36:39] pool-1-thread-1 - 5000 records committed(current total 280000 records), lap time = 6.046
[2025-03-08 21:36:40] pool-1-thread-3 - 5000 records committed(current total 285000 records), lap time = 6.330
[2025-03-08 21:36:40] pool-1-thread-2 - 5000 records committed(current total 280000 records), lap time = 6.582
[2025-03-08 21:36:41] pool-1-thread-6 - 5000 records committed(current total 280000 records), lap time = 6.026
[2025-03-08 21:36:41] pool-1-thread-5 - 5000 records committed(current total 280000 records), lap time = 6.606
[2025-03-08 21:36:41] pool-1-thread-9 - 5000 records committed(current total 280000 records), lap time = 6.530
[2025-03-08 21:36:41] pool-1-thread-4 - 5000 records committed(current total 280000 records), lap time = 6.588
[2025-03-08 21:36:42] pool-1-thread-7 - 5000 records committed(current total 280000 records), lap time = 6.677
[2025-03-08 21:36:42] pool-1-thread-10 - 5000 records committed(current total 280000 records), lap time = 6.540
[2025-03-08 21:36:43] pool-1-thread-8 - 5000 records committed(current total 280000 records), lap time = 6.752
[2025-03-08 21:36:46] pool-1-thread-1 - 5000 records committed(current total 285000 records), lap time = 6.953
[2025-03-08 21:36:46] pool-1-thread-3 - 5000 records committed(current total 290000 records), lap time = 6.815
[2025-03-08 21:36:47] pool-1-thread-2 - 5000 records committed(current total 285000 records), lap time = 6.583
[2025-03-08 21:36:48] pool-1-thread-6 - 5000 records committed(current total 285000 records), lap time = 6.919
[2025-03-08 21:36:48] pool-1-thread-5 - 5000 records committed(current total 285000 records), lap time = 6.598
[2025-03-08 21:36:48] pool-1-thread-9 - 5000 records committed(current total 285000 records), lap time = 6.662
[2025-03-08 21:36:48] pool-1-thread-4 - 5000 records committed(current total 285000 records), lap time = 7.061
[2025-03-08 21:36:49] pool-1-thread-7 - 5000 records committed(current total 285000 records), lap time = 7.046
[2025-03-08 21:36:49] pool-1-thread-10 - 5000 records committed(current total 285000 records), lap time = 6.913
[2025-03-08 21:36:50] pool-1-thread-8 - 5000 records committed(current total 285000 records), lap time = 7.169
[2025-03-08 21:36:52] pool-1-thread-1 - 5000 records committed(current total 290000 records), lap time = 6.462
[2025-03-08 21:36:53] pool-1-thread-3 - 5000 records committed(current total 295000 records), lap time = 6.504
[2025-03-08 21:36:53] pool-1-thread-2 - 5000 records committed(current total 290000 records), lap time = 6.064
[2025-03-08 21:36:54] pool-1-thread-6 - 5000 records committed(current total 290000 records), lap time = 6.305
[2025-03-08 21:36:54] pool-1-thread-5 - 5000 records committed(current total 290000 records), lap time = 6.070
[2025-03-08 21:36:55] pool-1-thread-9 - 5000 records committed(current total 290000 records), lap time = 6.535
[2025-03-08 21:36:55] pool-1-thread-4 - 5000 records committed(current total 290000 records), lap time = 6.232
[2025-03-08 21:36:55] pool-1-thread-10 - 5000 records committed(current total 290000 records), lap time = 6.274
[2025-03-08 21:36:55] pool-1-thread-7 - 5000 records committed(current total 290000 records), lap time = 6.339
[2025-03-08 21:36:56] pool-1-thread-8 - 5000 records committed(current total 290000 records), lap time = 6.261
[2025-03-08 21:36:58] pool-1-thread-1 - 5000 records committed(current total 295000 records), lap time = 6.168
[2025-03-08 21:36:59] pool-1-thread-3 - 5000 records committed(current total 300000 records), lap time = 6.097
[2025-03-08 21:37:00] pool-1-thread-2 - 5000 records committed(current total 295000 records), lap time = 6.748
[2025-03-08 21:37:00] pool-1-thread-6 - 5000 records committed(current total 295000 records), lap time = 6.286
[2025-03-08 21:37:00] pool-1-thread-5 - 5000 records committed(current total 295000 records), lap time = 6.357
[2025-03-08 21:37:01] pool-1-thread-9 - 5000 records committed(current total 295000 records), lap time = 6.519
[2025-03-08 21:37:01] pool-1-thread-4 - 5000 records committed(current total 295000 records), lap time = 6.445
[2025-03-08 21:37:01] pool-1-thread-10 - 5000 records committed(current total 295000 records), lap time = 6.317
[2025-03-08 21:37:01] pool-1-thread-7 - 5000 records committed(current total 295000 records), lap time = 6.388
[2025-03-08 21:37:03] pool-1-thread-8 - 5000 records committed(current total 295000 records), lap time = 6.798
[2025-03-08 21:37:05] pool-1-thread-1 - 5000 records committed(current total 300000 records), lap time = 6.707
[2025-03-08 21:37:06] pool-1-thread-3 - 5000 records committed(current total 305000 records), lap time = 6.654
[2025-03-08 21:37:06] pool-1-thread-2 - 5000 records committed(current total 300000 records), lap time = 6.569
[2025-03-08 21:37:07] pool-1-thread-5 - 5000 records committed(current total 300000 records), lap time = 6.738
[2025-03-08 21:37:07] pool-1-thread-6 - 5000 records committed(current total 300000 records), lap time = 6.877
[2025-03-08 21:37:08] pool-1-thread-4 - 5000 records committed(current total 300000 records), lap time = 6.857
[2025-03-08 21:37:08] pool-1-thread-9 - 5000 records committed(current total 300000 records), lap time = 7.011
[2025-03-08 21:37:08] pool-1-thread-10 - 5000 records committed(current total 300000 records), lap time = 6.907
[2025-03-08 21:37:08] pool-1-thread-7 - 5000 records committed(current total 300000 records), lap time = 7.017
[2025-03-08 21:37:10] pool-1-thread-8 - 5000 records committed(current total 300000 records), lap time = 6.847
[2025-03-08 21:37:11] pool-1-thread-1 - 5000 records committed(current total 305000 records), lap time = 6.375
[2025-03-08 21:37:12] pool-1-thread-3 - 5000 records committed(current total 310000 records), lap time = 6.723
[2025-03-08 21:37:13] pool-1-thread-2 - 5000 records committed(current total 305000 records), lap time = 6.280
[2025-03-08 21:37:13] pool-1-thread-5 - 5000 records committed(current total 305000 records), lap time = 6.394
[2025-03-08 21:37:14] pool-1-thread-6 - 5000 records committed(current total 305000 records), lap time = 6.505
[2025-03-08 21:37:14] pool-1-thread-4 - 5000 records committed(current total 305000 records), lap time = 6.208
[2025-03-08 21:37:14] pool-1-thread-9 - 5000 records committed(current total 305000 records), lap time = 6.281
[2025-03-08 21:37:14] pool-1-thread-10 - 5000 records committed(current total 305000 records), lap time = 6.292
[2025-03-08 21:37:15] pool-1-thread-7 - 5000 records committed(current total 305000 records), lap time = 6.415
[2025-03-08 21:37:16] pool-1-thread-8 - 5000 records committed(current total 305000 records), lap time = 6.221
[2025-03-08 21:37:18] pool-1-thread-1 - 5000 records committed(current total 310000 records), lap time = 6.371
[2025-03-08 21:37:18] pool-1-thread-3 - 5000 records committed(current total 315000 records), lap time = 6.167
[2025-03-08 21:37:19] pool-1-thread-2 - 5000 records committed(current total 310000 records), lap time = 6.247
[2025-03-08 21:37:20] pool-1-thread-5 - 5000 records committed(current total 310000 records), lap time = 6.324
[2025-03-08 21:37:20] pool-1-thread-6 - 5000 records committed(current total 310000 records), lap time = 6.223
[2025-03-08 21:37:20] pool-1-thread-4 - 5000 records committed(current total 310000 records), lap time = 6.035
[2025-03-08 21:37:21] pool-1-thread-10 - 5000 records committed(current total 310000 records), lap time = 6.318
[2025-03-08 21:37:21] pool-1-thread-9 - 5000 records committed(current total 310000 records), lap time = 6.432
[2025-03-08 21:37:21] pool-1-thread-7 - 5000 records committed(current total 310000 records), lap time = 6.581
[2025-03-08 21:37:23] pool-1-thread-8 - 5000 records committed(current total 310000 records), lap time = 6.767
[2025-03-08 21:37:24] pool-1-thread-1 - 5000 records committed(current total 315000 records), lap time = 6.575
[2025-03-08 21:37:25] pool-1-thread-3 - 5000 records committed(current total 320000 records), lap time = 6.412
[2025-03-08 21:37:25] pool-1-thread-2 - 5000 records committed(current total 315000 records), lap time = 6.539
[2025-03-08 21:37:27] pool-1-thread-5 - 5000 records committed(current total 315000 records), lap time = 7.127
[2025-03-08 21:37:27] pool-1-thread-6 - 5000 records committed(current total 315000 records), lap time = 7.339
[2025-03-08 21:37:27] pool-1-thread-4 - 5000 records committed(current total 315000 records), lap time = 6.921
[2025-03-08 21:37:28] pool-1-thread-10 - 5000 records committed(current total 315000 records), lap time = 6.829
[2025-03-08 21:37:28] pool-1-thread-9 - 5000 records committed(current total 315000 records), lap time = 6.841
[2025-03-08 21:37:28] pool-1-thread-7 - 5000 records committed(current total 315000 records), lap time = 6.888
[2025-03-08 21:37:29] pool-1-thread-8 - 5000 records committed(current total 315000 records), lap time = 6.753
[2025-03-08 21:37:31] pool-1-thread-1 - 5000 records committed(current total 320000 records), lap time = 6.645
[2025-03-08 21:37:32] pool-1-thread-3 - 5000 records committed(current total 325000 records), lap time = 6.819
[2025-03-08 21:37:33] pool-1-thread-2 - 5000 records committed(current total 320000 records), lap time = 7.148
[2025-03-08 21:37:33] pool-1-thread-5 - 5000 records committed(current total 320000 records), lap time = 6.459
[2025-03-08 21:37:34] pool-1-thread-4 - 5000 records committed(current total 320000 records), lap time = 6.465
[2025-03-08 21:37:34] pool-1-thread-6 - 5000 records committed(current total 320000 records), lap time = 6.620
[2025-03-08 21:37:34] pool-1-thread-10 - 5000 records committed(current total 320000 records), lap time = 6.320
[2025-03-08 21:37:34] pool-1-thread-9 - 5000 records committed(current total 320000 records), lap time = 6.749
[2025-03-08 21:37:35] pool-1-thread-7 - 5000 records committed(current total 320000 records), lap time = 6.382
[2025-03-08 21:37:36] pool-1-thread-8 - 5000 records committed(current total 320000 records), lap time = 6.636
[2025-03-08 21:37:37] pool-1-thread-1 - 5000 records committed(current total 325000 records), lap time = 6.418
[2025-03-08 21:37:38] pool-1-thread-3 - 5000 records committed(current total 330000 records), lap time = 6.285
[2025-03-08 21:37:39] pool-1-thread-2 - 5000 records committed(current total 325000 records), lap time = 6.305
[2025-03-08 21:37:39] pool-1-thread-4 - 5000 records committed(current total 325000 records), lap time = 5.636
[2025-03-08 21:37:39] pool-1-thread-5 - 5000 records committed(current total 325000 records), lap time = 5.987
[2025-03-08 21:37:40] pool-1-thread-10 - 5000 records committed(current total 325000 records), lap time = 6.041
[2025-03-08 21:37:40] pool-1-thread-6 - 5000 records committed(current total 325000 records), lap time = 6.204
[2025-03-08 21:37:40] pool-1-thread-9 - 5000 records committed(current total 325000 records), lap time = 5.903
[2025-03-08 21:37:41] pool-1-thread-7 - 5000 records committed(current total 325000 records), lap time = 6.094
[2025-03-08 21:37:42] pool-1-thread-8 - 5000 records committed(current total 325000 records), lap time = 5.943
[2025-03-08 21:37:43] pool-1-thread-1 - 5000 records committed(current total 330000 records), lap time = 6.196
[2025-03-08 21:37:44] pool-1-thread-3 - 5000 records committed(current total 335000 records), lap time = 5.999
[2025-03-08 21:37:45] pool-1-thread-2 - 5000 records committed(current total 330000 records), lap time = 6.089
[2025-03-08 21:37:45] pool-1-thread-4 - 5000 records committed(current total 330000 records), lap time = 6.076
[2025-03-08 21:37:45] pool-1-thread-5 - 5000 records committed(current total 330000 records), lap time = 6.009
[2025-03-08 21:37:46] pool-1-thread-10 - 5000 records committed(current total 330000 records), lap time = 6.115
[2025-03-08 21:37:46] pool-1-thread-6 - 5000 records committed(current total 330000 records), lap time = 6.185
[2025-03-08 21:37:47] pool-1-thread-9 - 5000 records committed(current total 330000 records), lap time = 6.229
[2025-03-08 21:37:47] pool-1-thread-7 - 5000 records committed(current total 330000 records), lap time = 6.072
[2025-03-08 21:37:48] pool-1-thread-8 - 5000 records committed(current total 330000 records), lap time = 6.324
[2025-03-08 21:37:50] pool-1-thread-1 - 5000 records committed(current total 335000 records), lap time = 6.169
[2025-03-08 21:37:50] pool-1-thread-3 - 5000 records committed(current total 340000 records), lap time = 6.200
[2025-03-08 21:37:51] pool-1-thread-2 - 5000 records committed(current total 335000 records), lap time = 6.520
[2025-03-08 21:37:52] pool-1-thread-5 - 5000 records committed(current total 335000 records), lap time = 6.432
[2025-03-08 21:37:52] pool-1-thread-4 - 5000 records committed(current total 335000 records), lap time = 6.565
[2025-03-08 21:37:53] pool-1-thread-10 - 5000 records committed(current total 335000 records), lap time = 6.503
[2025-03-08 21:37:53] pool-1-thread-6 - 5000 records committed(current total 335000 records), lap time = 6.610
[2025-03-08 21:37:53] pool-1-thread-7 - 5000 records committed(current total 335000 records), lap time = 6.446
[2025-03-08 21:37:53] pool-1-thread-9 - 5000 records committed(current total 335000 records), lap time = 6.720
[2025-03-08 21:37:55] pool-1-thread-8 - 5000 records committed(current total 335000 records), lap time = 7.018
[2025-03-08 21:37:57] pool-1-thread-1 - 5000 records committed(current total 340000 records), lap time = 6.859
[2025-03-08 21:37:57] pool-1-thread-3 - 5000 records committed(current total 345000 records), lap time = 6.801
[2025-03-08 21:37:58] pool-1-thread-2 - 5000 records committed(current total 340000 records), lap time = 6.562
[2025-03-08 21:37:59] pool-1-thread-5 - 5000 records committed(current total 340000 records), lap time = 6.776
[2025-03-08 21:37:59] pool-1-thread-4 - 5000 records committed(current total 340000 records), lap time = 6.889
[2025-03-08 21:37:59] pool-1-thread-10 - 5000 records committed(current total 340000 records), lap time = 6.464
[2025-03-08 21:37:59] pool-1-thread-6 - 5000 records committed(current total 340000 records), lap time = 6.681
[2025-03-08 21:38:00] pool-1-thread-9 - 5000 records committed(current total 340000 records), lap time = 6.639
[2025-03-08 21:38:00] pool-1-thread-7 - 5000 records committed(current total 340000 records), lap time = 6.860
[2025-03-08 21:38:02] pool-1-thread-8 - 5000 records committed(current total 340000 records), lap time = 6.123
[2025-03-08 21:38:03] pool-1-thread-1 - 5000 records committed(current total 345000 records), lap time = 6.452
[2025-03-08 21:38:04] pool-1-thread-3 - 5000 records committed(current total 350000 records), lap time = 6.834
[2025-03-08 21:38:05] pool-1-thread-2 - 5000 records committed(current total 345000 records), lap time = 6.721
[2025-03-08 21:38:05] pool-1-thread-5 - 5000 records committed(current total 345000 records), lap time = 6.365
[2025-03-08 21:38:05] pool-1-thread-4 - 5000 records committed(current total 345000 records), lap time = 6.466
[2025-03-08 21:38:05] pool-1-thread-10 - 5000 records committed(current total 345000 records), lap time = 6.331
[2025-03-08 21:38:06] pool-1-thread-6 - 5000 records committed(current total 345000 records), lap time = 6.679
[2025-03-08 21:38:07] pool-1-thread-9 - 5000 records committed(current total 345000 records), lap time = 6.655
[2025-03-08 21:38:07] pool-1-thread-7 - 5000 records committed(current total 345000 records), lap time = 6.473
[2025-03-08 21:38:08] pool-1-thread-8 - 5000 records committed(current total 345000 records), lap time = 6.219
[2025-03-08 21:38:09] pool-1-thread-1 - 5000 records committed(current total 350000 records), lap time = 6.391
[2025-03-08 21:38:10] pool-1-thread-3 - 5000 records committed(current total 355000 records), lap time = 6.297
[2025-03-08 21:38:11] pool-1-thread-2 - 5000 records committed(current total 350000 records), lap time = 6.525
[2025-03-08 21:38:12] pool-1-thread-5 - 5000 records committed(current total 350000 records), lap time = 6.635
[2025-03-08 21:38:12] pool-1-thread-10 - 5000 records committed(current total 350000 records), lap time = 6.809
[2025-03-08 21:38:12] pool-1-thread-4 - 5000 records committed(current total 350000 records), lap time = 6.907
[2025-03-08 21:38:13] pool-1-thread-7 - 5000 records committed(current total 350000 records), lap time = 6.134
[2025-03-08 21:38:13] pool-1-thread-6 - 5000 records committed(current total 350000 records), lap time = 6.654
[2025-03-08 21:38:13] pool-1-thread-9 - 5000 records committed(current total 350000 records), lap time = 6.657
[2025-03-08 21:38:14] pool-1-thread-8 - 5000 records committed(current total 350000 records), lap time = 6.596
[2025-03-08 21:38:17] pool-1-thread-1 - 5000 records committed(current total 355000 records), lap time = 7.204
[2025-03-08 21:38:17] pool-1-thread-3 - 5000 records committed(current total 360000 records), lap time = 7.017
[2025-03-08 21:38:18] pool-1-thread-2 - 5000 records committed(current total 355000 records), lap time = 6.847
[2025-03-08 21:38:18] pool-1-thread-5 - 5000 records committed(current total 355000 records), lap time = 6.837
[2025-03-08 21:38:19] pool-1-thread-10 - 5000 records committed(current total 355000 records), lap time = 6.907
[2025-03-08 21:38:19] pool-1-thread-4 - 5000 records committed(current total 355000 records), lap time = 7.264
[2025-03-08 21:38:20] pool-1-thread-7 - 5000 records committed(current total 355000 records), lap time = 7.044
[2025-03-08 21:38:20] pool-1-thread-6 - 5000 records committed(current total 355000 records), lap time = 6.980
[2025-03-08 21:38:20] pool-1-thread-9 - 5000 records committed(current total 355000 records), lap time = 6.820
[2025-03-08 21:38:21] pool-1-thread-8 - 5000 records committed(current total 355000 records), lap time = 7.101
[2025-03-08 21:38:23] pool-1-thread-1 - 5000 records committed(current total 360000 records), lap time = 6.537
[2025-03-08 21:38:24] pool-1-thread-3 - 5000 records committed(current total 365000 records), lap time = 6.639
[2025-03-08 21:38:25] pool-1-thread-2 - 5000 records committed(current total 360000 records), lap time = 6.632
[2025-03-08 21:38:25] pool-1-thread-5 - 5000 records committed(current total 360000 records), lap time = 6.480
[2025-03-08 21:38:26] pool-1-thread-4 - 5000 records committed(current total 360000 records), lap time = 6.349
[2025-03-08 21:38:26] pool-1-thread-10 - 5000 records committed(current total 360000 records), lap time = 6.867
[2025-03-08 21:38:26] pool-1-thread-9 - 5000 records committed(current total 360000 records), lap time = 6.209
[2025-03-08 21:38:26] pool-1-thread-7 - 5000 records committed(current total 360000 records), lap time = 6.512
[2025-03-08 21:38:26] pool-1-thread-6 - 5000 records committed(current total 360000 records), lap time = 6.569
[2025-03-08 21:38:28] pool-1-thread-8 - 5000 records committed(current total 360000 records), lap time = 6.739
[2025-03-08 21:38:30] pool-1-thread-1 - 5000 records committed(current total 365000 records), lap time = 6.452
[2025-03-08 21:38:30] pool-1-thread-3 - 5000 records committed(current total 370000 records), lap time = 6.261
[2025-03-08 21:38:31] pool-1-thread-2 - 5000 records committed(current total 365000 records), lap time = 6.539
[2025-03-08 21:38:31] pool-1-thread-5 - 5000 records committed(current total 365000 records), lap time = 6.455
[2025-03-08 21:38:32] pool-1-thread-4 - 5000 records committed(current total 365000 records), lap time = 6.215
[2025-03-08 21:38:32] pool-1-thread-10 - 5000 records committed(current total 365000 records), lap time = 6.135
[2025-03-08 21:38:32] pool-1-thread-9 - 5000 records committed(current total 365000 records), lap time = 6.123
[2025-03-08 21:38:32] pool-1-thread-6 - 5000 records committed(current total 365000 records), lap time = 6.090
[2025-03-08 21:38:32] pool-1-thread-7 - 5000 records committed(current total 365000 records), lap time = 6.224
[2025-03-08 21:38:35] pool-1-thread-8 - 5000 records committed(current total 365000 records), lap time = 6.383
[2025-03-08 21:38:36] pool-1-thread-1 - 5000 records committed(current total 370000 records), lap time = 6.216
[2025-03-08 21:38:36] pool-1-thread-3 - 5000 records committed(current total 375000 records), lap time = 6.188
[2025-03-08 21:38:37] pool-1-thread-5 - 5000 records committed(current total 370000 records), lap time = 6.055
[2025-03-08 21:38:38] pool-1-thread-2 - 5000 records committed(current total 370000 records), lap time = 6.440
[2025-03-08 21:38:39] pool-1-thread-4 - 5000 records committed(current total 370000 records), lap time = 6.577
[2025-03-08 21:38:39] pool-1-thread-10 - 5000 records committed(current total 370000 records), lap time = 6.635
[2025-03-08 21:38:39] pool-1-thread-9 - 5000 records committed(current total 370000 records), lap time = 6.636
[2025-03-08 21:38:39] pool-1-thread-6 - 5000 records committed(current total 370000 records), lap time = 6.871
[2025-03-08 21:38:39] pool-1-thread-7 - 5000 records committed(current total 370000 records), lap time = 6.868
[2025-03-08 21:38:41] pool-1-thread-8 - 5000 records committed(current total 370000 records), lap time = 6.846
[2025-03-08 21:38:43] pool-1-thread-1 - 5000 records committed(current total 375000 records), lap time = 6.751
[2025-03-08 21:38:43] pool-1-thread-3 - 5000 records committed(current total 380000 records), lap time = 7.010
[2025-03-08 21:38:45] pool-1-thread-5 - 5000 records committed(current total 375000 records), lap time = 7.255
[2025-03-08 21:38:45] pool-1-thread-2 - 5000 records committed(current total 375000 records), lap time = 6.992
[2025-03-08 21:38:45] pool-1-thread-4 - 5000 records committed(current total 375000 records), lap time = 6.704
[2025-03-08 21:38:46] pool-1-thread-10 - 5000 records committed(current total 375000 records), lap time = 6.920
[2025-03-08 21:38:46] pool-1-thread-9 - 5000 records committed(current total 375000 records), lap time = 6.745
[2025-03-08 21:38:46] pool-1-thread-7 - 5000 records committed(current total 375000 records), lap time = 6.475
[2025-03-08 21:38:46] pool-1-thread-6 - 5000 records committed(current total 375000 records), lap time = 6.611
[2025-03-08 21:38:48] pool-1-thread-8 - 5000 records committed(current total 375000 records), lap time = 6.548
[2025-03-08 21:38:49] pool-1-thread-1 - 5000 records committed(current total 380000 records), lap time = 6.473
[2025-03-08 21:38:49] pool-1-thread-3 - 5000 records committed(current total 385000 records), lap time = 6.114
[2025-03-08 21:38:51] pool-1-thread-5 - 5000 records committed(current total 380000 records), lap time = 6.372
[2025-03-08 21:38:51] pool-1-thread-2 - 5000 records committed(current total 380000 records), lap time = 6.441
[2025-03-08 21:38:52] pool-1-thread-4 - 5000 records committed(current total 380000 records), lap time = 6.423
[2025-03-08 21:38:52] pool-1-thread-10 - 5000 records committed(current total 380000 records), lap time = 6.568
[2025-03-08 21:38:52] pool-1-thread-9 - 5000 records committed(current total 380000 records), lap time = 6.597
[2025-03-08 21:38:52] pool-1-thread-7 - 5000 records committed(current total 380000 records), lap time = 6.535
[2025-03-08 21:38:52] pool-1-thread-6 - 5000 records committed(current total 380000 records), lap time = 6.598
[2025-03-08 21:38:54] pool-1-thread-8 - 5000 records committed(current total 380000 records), lap time = 6.477
[2025-03-08 21:38:55] pool-1-thread-1 - 5000 records committed(current total 385000 records), lap time = 6.431
[2025-03-08 21:38:56] pool-1-thread-3 - 5000 records committed(current total 390000 records), lap time = 6.497
[2025-03-08 21:38:57] pool-1-thread-5 - 5000 records committed(current total 385000 records), lap time = 6.247
[2025-03-08 21:38:57] pool-1-thread-2 - 5000 records committed(current total 385000 records), lap time = 6.176
[2025-03-08 21:38:58] pool-1-thread-4 - 5000 records committed(current total 385000 records), lap time = 6.174
[2025-03-08 21:38:58] pool-1-thread-10 - 5000 records committed(current total 385000 records), lap time = 5.761
[2025-03-08 21:38:58] pool-1-thread-9 - 5000 records committed(current total 385000 records), lap time = 6.077
[2025-03-08 21:38:59] pool-1-thread-7 - 5000 records committed(current total 385000 records), lap time = 6.191
[2025-03-08 21:38:59] pool-1-thread-6 - 5000 records committed(current total 385000 records), lap time = 6.209
[2025-03-08 21:39:01] pool-1-thread-8 - 5000 records committed(current total 385000 records), lap time = 6.637
[2025-03-08 21:39:02] pool-1-thread-1 - 5000 records committed(current total 390000 records), lap time = 6.293
[2025-03-08 21:39:02] pool-1-thread-3 - 5000 records committed(current total 395000 records), lap time = 6.496
[2025-03-08 21:39:04] pool-1-thread-5 - 5000 records committed(current total 390000 records), lap time = 6.248
[2025-03-08 21:39:04] pool-1-thread-2 - 5000 records committed(current total 390000 records), lap time = 6.219
[2025-03-08 21:39:05] pool-1-thread-10 - 5000 records committed(current total 390000 records), lap time = 6.599
[2025-03-08 21:39:05] pool-1-thread-4 - 5000 records committed(current total 390000 records), lap time = 6.736
[2025-03-08 21:39:05] pool-1-thread-9 - 5000 records committed(current total 390000 records), lap time = 6.449
[2025-03-08 21:39:05] pool-1-thread-7 - 5000 records committed(current total 390000 records), lap time = 6.571
[2025-03-08 21:39:05] pool-1-thread-6 - 5000 records committed(current total 390000 records), lap time = 6.544
[2025-03-08 21:39:08] pool-1-thread-8 - 5000 records committed(current total 390000 records), lap time = 6.674
[2025-03-08 21:39:08] pool-1-thread-1 - 5000 records committed(current total 395000 records), lap time = 6.572
[2025-03-08 21:39:09] pool-1-thread-3 - 5000 records committed(current total 400000 records), lap time = 6.699
[2025-03-08 21:39:10] pool-1-thread-5 - 5000 records committed(current total 395000 records), lap time = 6.554
[2025-03-08 21:39:10] pool-1-thread-2 - 5000 records committed(current total 395000 records), lap time = 6.669
[2025-03-08 21:39:11] pool-1-thread-10 - 5000 records committed(current total 395000 records), lap time = 6.300
[2025-03-08 21:39:11] pool-1-thread-4 - 5000 records committed(current total 395000 records), lap time = 6.394
[2025-03-08 21:39:11] pool-1-thread-9 - 5000 records committed(current total 395000 records), lap time = 6.452
[2025-03-08 21:39:12] pool-1-thread-7 - 5000 records committed(current total 395000 records), lap time = 6.470
[2025-03-08 21:39:12] pool-1-thread-6 - 5000 records committed(current total 395000 records), lap time = 6.627
[2025-03-08 21:39:14] pool-1-thread-8 - 5000 records committed(current total 395000 records), lap time = 6.364
[2025-03-08 21:39:15] pool-1-thread-1 - 5000 records committed(current total 400000 records), lap time = 6.663
[2025-03-08 21:39:16] pool-1-thread-3 - 5000 records committed(current total 405000 records), lap time = 6.631
[2025-03-08 21:39:17] pool-1-thread-2 - 5000 records committed(current total 400000 records), lap time = 6.341
[2025-03-08 21:39:17] pool-1-thread-5 - 5000 records committed(current total 400000 records), lap time = 6.489
[2025-03-08 21:39:17] pool-1-thread-10 - 5000 records committed(current total 400000 records), lap time = 6.337
[2025-03-08 21:39:17] pool-1-thread-4 - 5000 records committed(current total 400000 records), lap time = 6.281
[2025-03-08 21:39:18] pool-1-thread-9 - 5000 records committed(current total 400000 records), lap time = 6.415
[2025-03-08 21:39:18] pool-1-thread-7 - 5000 records committed(current total 400000 records), lap time = 6.564
[2025-03-08 21:39:19] pool-1-thread-6 - 5000 records committed(current total 400000 records), lap time = 7.129
[2025-03-08 21:39:20] pool-1-thread-8 - 5000 records committed(current total 400000 records), lap time = 6.314
[2025-03-08 21:39:21] pool-1-thread-1 - 5000 records committed(current total 405000 records), lap time = 6.425
[2025-03-08 21:39:22] pool-1-thread-3 - 5000 records committed(current total 410000 records), lap time = 6.570
[2025-03-08 21:39:23] pool-1-thread-2 - 5000 records committed(current total 405000 records), lap time = 6.610
[2025-03-08 21:39:23] pool-1-thread-5 - 5000 records committed(current total 405000 records), lap time = 6.763
[2025-03-08 21:39:24] pool-1-thread-4 - 5000 records committed(current total 405000 records), lap time = 6.358
[2025-03-08 21:39:24] pool-1-thread-10 - 5000 records committed(current total 405000 records), lap time = 6.517
[2025-03-08 21:39:24] pool-1-thread-9 - 5000 records committed(current total 405000 records), lap time = 6.554
[2025-03-08 21:39:25] pool-1-thread-7 - 5000 records committed(current total 405000 records), lap time = 6.690
[2025-03-08 21:39:26] pool-1-thread-6 - 5000 records committed(current total 405000 records), lap time = 6.713
[2025-03-08 21:39:27] pool-1-thread-8 - 5000 records committed(current total 405000 records), lap time = 6.934
[2025-03-08 21:39:28] pool-1-thread-1 - 5000 records committed(current total 410000 records), lap time = 6.676
[2025-03-08 21:39:29] pool-1-thread-3 - 5000 records committed(current total 415000 records), lap time = 6.746
[2025-03-08 21:39:30] pool-1-thread-2 - 5000 records committed(current total 410000 records), lap time = 6.642
[2025-03-08 21:39:30] pool-1-thread-5 - 5000 records committed(current total 410000 records), lap time = 6.561
[2025-03-08 21:39:30] pool-1-thread-10 - 5000 records committed(current total 410000 records), lap time = 6.788
[2025-03-08 21:39:31] pool-1-thread-4 - 5000 records committed(current total 410000 records), lap time = 6.908
[2025-03-08 21:39:31] pool-1-thread-9 - 5000 records committed(current total 410000 records), lap time = 6.768
[2025-03-08 21:39:32] pool-1-thread-7 - 5000 records committed(current total 410000 records), lap time = 7.149
[2025-03-08 21:39:32] pool-1-thread-6 - 5000 records committed(current total 410000 records), lap time = 6.383
[2025-03-08 21:39:34] pool-1-thread-8 - 5000 records committed(current total 410000 records), lap time = 6.267
[2025-03-08 21:39:35] pool-1-thread-1 - 5000 records committed(current total 415000 records), lap time = 6.606
[2025-03-08 21:39:35] pool-1-thread-3 - 5000 records committed(current total 420000 records), lap time = 6.282
[2025-03-08 21:39:36] pool-1-thread-2 - 5000 records committed(current total 415000 records), lap time = 6.464
[2025-03-08 21:39:36] pool-1-thread-5 - 5000 records committed(current total 415000 records), lap time = 6.428
[2025-03-08 21:39:37] pool-1-thread-10 - 5000 records committed(current total 415000 records), lap time = 6.463
[2025-03-08 21:39:37] pool-1-thread-4 - 5000 records committed(current total 415000 records), lap time = 6.480
[2025-03-08 21:39:38] pool-1-thread-9 - 5000 records committed(current total 415000 records), lap time = 6.754
[2025-03-08 21:39:38] pool-1-thread-7 - 5000 records committed(current total 415000 records), lap time = 6.460
[2025-03-08 21:39:38] pool-1-thread-6 - 5000 records committed(current total 415000 records), lap time = 6.372
[2025-03-08 21:39:39] pool-1-thread-8 - 5000 records committed(current total 415000 records), lap time = 5.851
[2025-03-08 21:39:40] pool-1-thread-1 - 5000 records committed(current total 420000 records), lap time = 5.674
[2025-03-08 21:39:41] pool-1-thread-3 - 5000 records committed(current total 425000 records), lap time = 5.523
[2025-03-08 21:39:41] pool-1-thread-5 - 5000 records committed(current total 420000 records), lap time = 4.940
[2025-03-08 21:39:41] pool-1-thread-2 - 5000 records committed(current total 420000 records), lap time = 5.034
[2025-03-08 21:39:42] pool-1-thread-10 - 5000 records committed(current total 420000 records), lap time = 4.864
[2025-03-08 21:39:42] pool-1-thread-4 - 5000 records committed(current total 420000 records), lap time = 4.817
[2025-03-08 21:39:42] pool-1-thread-9 - 5000 records committed(current total 420000 records), lap time = 4.398
[2025-03-08 21:39:43] pool-1-thread-6 - 5000 records committed(current total 420000 records), lap time = 4.350
[2025-03-08 21:39:43] pool-1-thread-7 - 5000 records committed(current total 420000 records), lap time = 4.473
[2025-03-08 21:39:44] pool-1-thread-8 - 5000 records committed(current total 420000 records), lap time = 4.597
[2025-03-08 21:39:45] pool-1-thread-1 - 5000 records committed(current total 425000 records), lap time = 4.484
[2025-03-08 21:39:45] pool-1-thread-3 - 5000 records committed(current total 430000 records), lap time = 4.438
[2025-03-08 21:39:46] pool-1-thread-5 - 5000 records committed(current total 425000 records), lap time = 4.460
[2025-03-08 21:39:46] pool-1-thread-2 - 5000 records committed(current total 425000 records), lap time = 4.551
[2025-03-08 21:39:46] pool-1-thread-10 - 5000 records committed(current total 425000 records), lap time = 4.424
[2025-03-08 21:39:46] pool-1-thread-4 - 5000 records committed(current total 425000 records), lap time = 4.444
[2025-03-08 21:39:47] pool-1-thread-9 - 5000 records committed(current total 425000 records), lap time = 4.479
[2025-03-08 21:39:47] pool-1-thread-6 - 5000 records committed(current total 425000 records), lap time = 4.157
[2025-03-08 21:39:47] pool-1-thread-7 - 5000 records committed(current total 425000 records), lap time = 4.411
[2025-03-08 21:39:48] pool-1-thread-8 - 5000 records committed(current total 425000 records), lap time = 4.107
[2025-03-08 21:39:49] pool-1-thread-1 - 5000 records committed(current total 430000 records), lap time = 4.120
[2025-03-08 21:39:50] pool-1-thread-3 - 5000 records committed(current total 435000 records), lap time = 4.300
[2025-03-08 21:39:50] pool-1-thread-5 - 5000 records committed(current total 430000 records), lap time = 4.321
[2025-03-08 21:39:50] pool-1-thread-2 - 5000 records committed(current total 430000 records), lap time = 4.299
[2025-03-08 21:39:51] pool-1-thread-10 - 5000 records committed(current total 430000 records), lap time = 4.307
[2025-03-08 21:39:51] pool-1-thread-4 - 5000 records committed(current total 430000 records), lap time = 4.325
[2025-03-08 21:39:51] pool-1-thread-9 - 5000 records committed(current total 430000 records), lap time = 4.193
[2025-03-08 21:39:52] pool-1-thread-6 - 5000 records committed(current total 430000 records), lap time = 4.549
[2025-03-08 21:39:52] pool-1-thread-7 - 5000 records committed(current total 430000 records), lap time = 4.331
[2025-03-08 21:39:52] pool-1-thread-8 - 5000 records committed(current total 430000 records), lap time = 4.277
[2025-03-08 21:39:53] pool-1-thread-1 - 5000 records committed(current total 435000 records), lap time = 3.980
[2025-03-08 21:39:54] pool-1-thread-3 - 5000 records committed(current total 440000 records), lap time = 4.136
[2025-03-08 21:39:55] pool-1-thread-5 - 5000 records committed(current total 435000 records), lap time = 4.890
[2025-03-08 21:39:55] pool-1-thread-2 - 5000 records committed(current total 435000 records), lap time = 4.853
[2025-03-08 21:39:55] pool-1-thread-10 - 5000 records committed(current total 435000 records), lap time = 4.805
[2025-03-08 21:39:56] pool-1-thread-4 - 5000 records committed(current total 435000 records), lap time = 5.201
[2025-03-08 21:39:56] pool-1-thread-9 - 5000 records committed(current total 435000 records), lap time = 5.111
[2025-03-08 21:39:57] pool-1-thread-6 - 5000 records committed(current total 435000 records), lap time = 5.435
[2025-03-08 21:39:57] pool-1-thread-7 - 5000 records committed(current total 435000 records), lap time = 5.501
[2025-03-08 21:39:58] pool-1-thread-8 - 5000 records committed(current total 435000 records), lap time = 5.799
[2025-03-08 21:40:00] pool-1-thread-1 - 5000 records committed(current total 440000 records), lap time = 6.678
[2025-03-08 21:40:00] pool-1-thread-3 - 5000 records committed(current total 445000 records), lap time = 6.541
[2025-03-08 21:40:02] pool-1-thread-2 - 5000 records committed(current total 440000 records), lap time = 6.628
[2025-03-08 21:40:02] pool-1-thread-5 - 5000 records committed(current total 440000 records), lap time = 6.719
[2025-03-08 21:40:02] pool-1-thread-10 - 5000 records committed(current total 440000 records), lap time = 6.796
[2025-03-08 21:40:02] pool-1-thread-9 - 5000 records committed(current total 440000 records), lap time = 6.508
[2025-03-08 21:40:03] pool-1-thread-4 - 5000 records committed(current total 440000 records), lap time = 6.663
[2025-03-08 21:40:03] pool-1-thread-7 - 5000 records committed(current total 440000 records), lap time = 6.229
[2025-03-08 21:40:03] pool-1-thread-6 - 5000 records committed(current total 440000 records), lap time = 6.476
[2025-03-08 21:40:05] pool-1-thread-8 - 5000 records committed(current total 440000 records), lap time = 6.490
[2025-03-08 21:40:06] pool-1-thread-1 - 5000 records committed(current total 445000 records), lap time = 6.284
[2025-03-08 21:40:06] pool-1-thread-3 - 5000 records committed(current total 450000 records), lap time = 6.273
[2025-03-08 21:40:08] pool-1-thread-2 - 5000 records committed(current total 445000 records), lap time = 6.154
[2025-03-08 21:40:08] pool-1-thread-5 - 5000 records committed(current total 445000 records), lap time = 6.336
[2025-03-08 21:40:08] pool-1-thread-10 - 5000 records committed(current total 445000 records), lap time = 5.872
[2025-03-08 21:40:09] pool-1-thread-9 - 5000 records committed(current total 445000 records), lap time = 6.222
[2025-03-08 21:40:09] pool-1-thread-4 - 5000 records committed(current total 445000 records), lap time = 6.266
[2025-03-08 21:40:10] pool-1-thread-7 - 5000 records committed(current total 445000 records), lap time = 6.281
[2025-03-08 21:40:10] pool-1-thread-6 - 5000 records committed(current total 445000 records), lap time = 6.379
[2025-03-08 21:40:11] pool-1-thread-8 - 5000 records committed(current total 445000 records), lap time = 6.490
[2025-03-08 21:40:12] pool-1-thread-1 - 5000 records committed(current total 450000 records), lap time = 6.325
[2025-03-08 21:40:13] pool-1-thread-3 - 5000 records committed(current total 455000 records), lap time = 6.365
[2025-03-08 21:40:14] pool-1-thread-2 - 5000 records committed(current total 450000 records), lap time = 6.280
[2025-03-08 21:40:14] pool-1-thread-5 - 5000 records committed(current total 450000 records), lap time = 6.321
[2025-03-08 21:40:14] pool-1-thread-10 - 5000 records committed(current total 450000 records), lap time = 6.343
[2025-03-08 21:40:15] pool-1-thread-9 - 5000 records committed(current total 450000 records), lap time = 6.403
[2025-03-08 21:40:15] pool-1-thread-4 - 5000 records committed(current total 450000 records), lap time = 6.544
[2025-03-08 21:40:16] pool-1-thread-6 - 5000 records committed(current total 450000 records), lap time = 6.363
[2025-03-08 21:40:16] pool-1-thread-7 - 5000 records committed(current total 450000 records), lap time = 6.604
[2025-03-08 21:40:18] pool-1-thread-8 - 5000 records committed(current total 450000 records), lap time = 6.419
[2025-03-08 21:40:18] pool-1-thread-1 - 5000 records committed(current total 455000 records), lap time = 6.241
[2025-03-08 21:40:19] pool-1-thread-3 - 5000 records committed(current total 460000 records), lap time = 6.560
[2025-03-08 21:40:21] pool-1-thread-2 - 5000 records committed(current total 455000 records), lap time = 6.708
[2025-03-08 21:40:21] pool-1-thread-5 - 5000 records committed(current total 455000 records), lap time = 6.746
[2025-03-08 21:40:21] pool-1-thread-10 - 5000 records committed(current total 455000 records), lap time = 6.751
[2025-03-08 21:40:22] pool-1-thread-9 - 5000 records committed(current total 455000 records), lap time = 6.447
[2025-03-08 21:40:22] pool-1-thread-4 - 5000 records committed(current total 455000 records), lap time = 6.897
[2025-03-08 21:40:23] pool-1-thread-7 - 5000 records committed(current total 455000 records), lap time = 6.349
[2025-03-08 21:40:23] pool-1-thread-6 - 5000 records committed(current total 455000 records), lap time = 6.587
[2025-03-08 21:40:25] pool-1-thread-8 - 5000 records committed(current total 455000 records), lap time = 6.857
[2025-03-08 21:40:25] pool-1-thread-1 - 5000 records committed(current total 460000 records), lap time = 6.780
[2025-03-08 21:40:26] pool-1-thread-3 - 5000 records committed(current total 465000 records), lap time = 6.435
[2025-03-08 21:40:27] pool-1-thread-2 - 5000 records committed(current total 460000 records), lap time = 6.166
[2025-03-08 21:40:27] pool-1-thread-10 - 5000 records committed(current total 460000 records), lap time = 6.033
[2025-03-08 21:40:27] pool-1-thread-5 - 5000 records committed(current total 460000 records), lap time = 6.244
[2025-03-08 21:40:28] pool-1-thread-9 - 5000 records committed(current total 460000 records), lap time = 6.256
[2025-03-08 21:40:28] pool-1-thread-4 - 5000 records committed(current total 460000 records), lap time = 6.270
[2025-03-08 21:40:29] pool-1-thread-7 - 5000 records committed(current total 460000 records), lap time = 6.331
[2025-03-08 21:40:29] pool-1-thread-6 - 5000 records committed(current total 460000 records), lap time = 6.235
[2025-03-08 21:40:30] pool-1-thread-8 - 5000 records committed(current total 460000 records), lap time = 5.801
[2025-03-08 21:40:31] pool-1-thread-1 - 5000 records committed(current total 465000 records), lap time = 5.493
[2025-03-08 21:40:31] pool-1-thread-3 - 5000 records committed(current total 470000 records), lap time = 5.463
[2025-03-08 21:40:32] pool-1-thread-2 - 5000 records committed(current total 465000 records), lap time = 4.911
[2025-03-08 21:40:32] pool-1-thread-5 - 5000 records committed(current total 465000 records), lap time = 4.685
[2025-03-08 21:40:32] pool-1-thread-10 - 5000 records committed(current total 465000 records), lap time = 4.906
[2025-03-08 21:40:33] pool-1-thread-9 - 5000 records committed(current total 465000 records), lap time = 4.777
[2025-03-08 21:40:33] pool-1-thread-4 - 5000 records committed(current total 465000 records), lap time = 4.434
[2025-03-08 21:40:33] pool-1-thread-6 - 5000 records committed(current total 465000 records), lap time = 4.119
[2025-03-08 21:40:33] pool-1-thread-7 - 5000 records committed(current total 465000 records), lap time = 4.392
[2025-03-08 21:40:35] pool-1-thread-8 - 5000 records committed(current total 465000 records), lap time = 4.212
[2025-03-08 21:40:35] pool-1-thread-1 - 5000 records committed(current total 470000 records), lap time = 4.077
[2025-03-08 21:40:36] pool-1-thread-3 - 5000 records committed(current total 475000 records), lap time = 4.225
[2025-03-08 21:40:36] pool-1-thread-2 - 5000 records committed(current total 470000 records), lap time = 4.383
[2025-03-08 21:40:36] pool-1-thread-5 - 5000 records committed(current total 470000 records), lap time = 4.316
[2025-03-08 21:40:36] pool-1-thread-10 - 5000 records committed(current total 470000 records), lap time = 4.364
[2025-03-08 21:40:37] pool-1-thread-9 - 5000 records committed(current total 470000 records), lap time = 4.276
[2025-03-08 21:40:38] pool-1-thread-4 - 5000 records committed(current total 470000 records), lap time = 4.678
[2025-03-08 21:40:38] pool-1-thread-6 - 5000 records committed(current total 470000 records), lap time = 4.742
[2025-03-08 21:40:38] pool-1-thread-7 - 5000 records committed(current total 470000 records), lap time = 4.569
[2025-03-08 21:40:39] pool-1-thread-8 - 5000 records committed(current total 470000 records), lap time = 4.404
[2025-03-08 21:40:39] pool-1-thread-1 - 5000 records committed(current total 475000 records), lap time = 4.486
[2025-03-08 21:40:40] pool-1-thread-3 - 5000 records committed(current total 480000 records), lap time = 4.569
[2025-03-08 21:40:41] pool-1-thread-2 - 5000 records committed(current total 475000 records), lap time = 4.628
[2025-03-08 21:40:41] pool-1-thread-5 - 5000 records committed(current total 475000 records), lap time = 4.665
[2025-03-08 21:40:41] pool-1-thread-10 - 5000 records committed(current total 475000 records), lap time = 4.760
[2025-03-08 21:40:41] pool-1-thread-9 - 5000 records committed(current total 475000 records), lap time = 4.575
[2025-03-08 21:40:42] pool-1-thread-4 - 5000 records committed(current total 475000 records), lap time = 4.599
[2025-03-08 21:40:42] pool-1-thread-6 - 5000 records committed(current total 475000 records), lap time = 4.452
[2025-03-08 21:40:42] pool-1-thread-7 - 5000 records committed(current total 475000 records), lap time = 4.507
[2025-03-08 21:40:44] pool-1-thread-8 - 5000 records committed(current total 475000 records), lap time = 4.571
[2025-03-08 21:40:44] pool-1-thread-1 - 5000 records committed(current total 480000 records), lap time = 4.565
[2025-03-08 21:40:44] pool-1-thread-3 - 5000 records committed(current total 485000 records), lap time = 4.183
[2025-03-08 21:40:45] pool-1-thread-2 - 5000 records committed(current total 480000 records), lap time = 4.130
[2025-03-08 21:40:46] pool-1-thread-5 - 5000 records committed(current total 480000 records), lap time = 4.858
[2025-03-08 21:40:46] pool-1-thread-10 - 5000 records committed(current total 480000 records), lap time = 4.863
[2025-03-08 21:40:46] pool-1-thread-9 - 5000 records committed(current total 480000 records), lap time = 4.888
[2025-03-08 21:40:47] pool-1-thread-4 - 5000 records committed(current total 480000 records), lap time = 4.905
[2025-03-08 21:40:47] pool-1-thread-6 - 5000 records committed(current total 480000 records), lap time = 4.840
[2025-03-08 21:40:48] pool-1-thread-7 - 5000 records committed(current total 480000 records), lap time = 5.171
[2025-03-08 21:40:49] pool-1-thread-8 - 5000 records committed(current total 480000 records), lap time = 5.437
[2025-03-08 21:40:50] pool-1-thread-1 - 5000 records committed(current total 485000 records), lap time = 5.774
[2025-03-08 21:40:51] pool-1-thread-3 - 5000 records committed(current total 490000 records), lap time = 6.239
[2025-03-08 21:40:52] pool-1-thread-2 - 5000 records committed(current total 485000 records), lap time = 6.746
[2025-03-08 21:40:52] pool-1-thread-5 - 5000 records committed(current total 485000 records), lap time = 6.265
[2025-03-08 21:40:52] pool-1-thread-10 - 5000 records committed(current total 485000 records), lap time = 6.393
[2025-03-08 21:40:53] pool-1-thread-9 - 5000 records committed(current total 485000 records), lap time = 6.272
[2025-03-08 21:40:53] pool-1-thread-4 - 5000 records committed(current total 485000 records), lap time = 6.119
[2025-03-08 21:40:53] pool-1-thread-6 - 5000 records committed(current total 485000 records), lap time = 6.149
[2025-03-08 21:40:54] pool-1-thread-7 - 5000 records committed(current total 485000 records), lap time = 6.149
[2025-03-08 21:40:55] pool-1-thread-8 - 5000 records committed(current total 485000 records), lap time = 6.386
[2025-03-08 21:40:56] pool-1-thread-1 - 5000 records committed(current total 490000 records), lap time = 6.350
[2025-03-08 21:40:57] pool-1-thread-3 - 5000 records committed(current total 495000 records), lap time = 6.566
[2025-03-08 21:40:58] pool-1-thread-2 - 5000 records committed(current total 490000 records), lap time = 5.931
[2025-03-08 21:40:59] pool-1-thread-5 - 5000 records committed(current total 490000 records), lap time = 7.022
[2025-03-08 21:40:59] pool-1-thread-10 - 5000 records committed(current total 490000 records), lap time = 6.792
[2025-03-08 21:40:59] pool-1-thread-9 - 5000 records committed(current total 490000 records), lap time = 6.739
[2025-03-08 21:41:00] pool-1-thread-4 - 5000 records committed(current total 490000 records), lap time = 7.258
[2025-03-08 21:41:01] pool-1-thread-7 - 5000 records committed(current total 490000 records), lap time = 6.764
[2025-03-08 21:41:01] pool-1-thread-6 - 5000 records committed(current total 490000 records), lap time = 7.215
[2025-03-08 21:41:02] pool-1-thread-8 - 5000 records committed(current total 490000 records), lap time = 6.920
[2025-03-08 21:41:03] pool-1-thread-1 - 5000 records committed(current total 495000 records), lap time = 6.797
[2025-03-08 21:41:04] pool-1-thread-3 - remain records committed(current total 500000 records), lap time = 6.686
[2025-03-08 21:41:04] pool-1-thread-3 - 500000 records committed, total elapsed time = 499.571
[2025-03-08 21:41:04] pool-1-thread-2 - 5000 records committed(current total 495000 records), lap time = 6.810
[2025-03-08 21:41:06] pool-1-thread-10 - 5000 records committed(current total 495000 records), lap time = 6.283
[2025-03-08 21:41:06] pool-1-thread-5 - 5000 records committed(current total 495000 records), lap time = 6.426
[2025-03-08 21:41:06] pool-1-thread-9 - 5000 records committed(current total 495000 records), lap time = 6.225
[2025-03-08 21:41:07] pool-1-thread-4 - 5000 records committed(current total 495000 records), lap time = 6.085
[2025-03-08 21:41:07] pool-1-thread-6 - 5000 records committed(current total 495000 records), lap time = 6.222
[2025-03-08 21:41:07] pool-1-thread-7 - 5000 records committed(current total 495000 records), lap time = 6.247
[2025-03-08 21:41:08] pool-1-thread-8 - 5000 records committed(current total 495000 records), lap time = 5.739
[2025-03-08 21:41:09] pool-1-thread-1 - remain records committed(current total 500000 records), lap time = 6.004
[2025-03-08 21:41:09] pool-1-thread-1 - 500000 records committed, total elapsed time = 504.560
[2025-03-08 21:41:10] pool-1-thread-2 - remain records committed(current total 500000 records), lap time = 5.351
[2025-03-08 21:41:10] pool-1-thread-2 - 500000 records committed, total elapsed time = 505.606
[2025-03-08 21:41:11] pool-1-thread-5 - remain records committed(current total 500000 records), lap time = 5.222
[2025-03-08 21:41:11] pool-1-thread-5 - 500000 records committed, total elapsed time = 506.541
[2025-03-08 21:41:11] pool-1-thread-9 - remain records committed(current total 500000 records), lap time = 5.230
[2025-03-08 21:41:11] pool-1-thread-9 - 500000 records committed, total elapsed time = 506.577
[2025-03-08 21:41:11] pool-1-thread-10 - remain records committed(current total 500000 records), lap time = 5.317
[2025-03-08 21:41:11] pool-1-thread-10 - 500000 records committed, total elapsed time = 506.609
[2025-03-08 21:41:11] pool-1-thread-7 - remain records committed(current total 500000 records), lap time = 4.541
[2025-03-08 21:41:11] pool-1-thread-7 - 500000 records committed, total elapsed time = 507.093
[2025-03-08 21:41:11] pool-1-thread-6 - remain records committed(current total 500000 records), lap time = 4.577
[2025-03-08 21:41:11] pool-1-thread-6 - 500000 records committed, total elapsed time = 507.110
[2025-03-08 21:41:11] pool-1-thread-4 - remain records committed(current total 500000 records), lap time = 4.778
[2025-03-08 21:41:11] pool-1-thread-4 - 500000 records committed, total elapsed time = 507.130
[2025-03-08 21:41:12] pool-1-thread-8 - remain records committed(current total 500000 records), lap time = 3.659
[2025-03-08 21:41:12] pool-1-thread-8 - 500000 records committed, total elapsed time = 507.438
[2025-03-08 21:41:12] org.littlewings.mysql.UuidV4StringRunner$UuidV4StringAsServerPsRunner.main() - UuidV4StringAsServerPsRunner: 5000000 records inserted, total elapsed time = 507.793
MySQLの倖でUUIDを生成しおデヌタを登録した時の実行ログUUID バヌゞョン7
[INFO] --- exec:3.5.0:java (default-cli) @ mysql-connector-j-uuid ---
[2025-03-08 21:49:09] pool-1-thread-7 - 5000 records committed(current total 5000 records), lap time = 1.009
[2025-03-08 21:49:09] pool-1-thread-10 - 5000 records committed(current total 5000 records), lap time = 1.040
[2025-03-08 21:49:09] pool-1-thread-3 - 5000 records committed(current total 5000 records), lap time = 1.040
[2025-03-08 21:49:09] pool-1-thread-6 - 5000 records committed(current total 5000 records), lap time = 1.040
[2025-03-08 21:49:09] pool-1-thread-8 - 5000 records committed(current total 5000 records), lap time = 1.040
[2025-03-08 21:49:09] pool-1-thread-4 - 5000 records committed(current total 5000 records), lap time = 1.040
[2025-03-08 21:49:09] pool-1-thread-1 - 5000 records committed(current total 5000 records), lap time = 1.040
[2025-03-08 21:49:09] pool-1-thread-2 - 5000 records committed(current total 5000 records), lap time = 1.040
[2025-03-08 21:49:09] pool-1-thread-5 - 5000 records committed(current total 5000 records), lap time = 1.040
[2025-03-08 21:49:09] pool-1-thread-9 - 5000 records committed(current total 5000 records), lap time = 1.040
[2025-03-08 21:49:09] pool-1-thread-7 - 5000 records committed(current total 10000 records), lap time = 0.495
[2025-03-08 21:49:09] pool-1-thread-4 - 5000 records committed(current total 10000 records), lap time = 0.501
[2025-03-08 21:49:09] pool-1-thread-8 - 5000 records committed(current total 10000 records), lap time = 0.507
[2025-03-08 21:49:09] pool-1-thread-9 - 5000 records committed(current total 10000 records), lap time = 0.517
[2025-03-08 21:49:09] pool-1-thread-2 - 5000 records committed(current total 10000 records), lap time = 0.517
[2025-03-08 21:49:09] pool-1-thread-5 - 5000 records committed(current total 10000 records), lap time = 0.517
[2025-03-08 21:49:09] pool-1-thread-1 - 5000 records committed(current total 10000 records), lap time = 0.517
[2025-03-08 21:49:09] pool-1-thread-10 - 5000 records committed(current total 10000 records), lap time = 0.518
[2025-03-08 21:49:09] pool-1-thread-3 - 5000 records committed(current total 10000 records), lap time = 0.531
[2025-03-08 21:49:09] pool-1-thread-6 - 5000 records committed(current total 10000 records), lap time = 0.531
[2025-03-08 21:49:10] pool-1-thread-7 - 5000 records committed(current total 15000 records), lap time = 0.396
[2025-03-08 21:49:10] pool-1-thread-4 - 5000 records committed(current total 15000 records), lap time = 0.444
[2025-03-08 21:49:10] pool-1-thread-8 - 5000 records committed(current total 15000 records), lap time = 0.456
[2025-03-08 21:49:10] pool-1-thread-9 - 5000 records committed(current total 15000 records), lap time = 0.456
[2025-03-08 21:49:10] pool-1-thread-2 - 5000 records committed(current total 15000 records), lap time = 0.466
[2025-03-08 21:49:10] pool-1-thread-5 - 5000 records committed(current total 15000 records), lap time = 0.478
[2025-03-08 21:49:10] pool-1-thread-10 - 5000 records committed(current total 15000 records), lap time = 0.491
[2025-03-08 21:49:10] pool-1-thread-1 - 5000 records committed(current total 15000 records), lap time = 0.504
[2025-03-08 21:49:10] pool-1-thread-6 - 5000 records committed(current total 15000 records), lap time = 0.504
[2025-03-08 21:49:10] pool-1-thread-3 - 5000 records committed(current total 15000 records), lap time = 0.512
[2025-03-08 21:49:10] pool-1-thread-7 - 5000 records committed(current total 20000 records), lap time = 0.577
[2025-03-08 21:49:11] pool-1-thread-4 - 5000 records committed(current total 20000 records), lap time = 0.652
[2025-03-08 21:49:11] pool-1-thread-8 - 5000 records committed(current total 20000 records), lap time = 0.645
[2025-03-08 21:49:11] pool-1-thread-2 - 5000 records committed(current total 20000 records), lap time = 0.632
[2025-03-08 21:49:11] pool-1-thread-9 - 5000 records committed(current total 20000 records), lap time = 0.652
[2025-03-08 21:49:11] pool-1-thread-5 - 5000 records committed(current total 20000 records), lap time = 0.633
[2025-03-08 21:49:11] pool-1-thread-10 - 5000 records committed(current total 20000 records), lap time = 0.628
[2025-03-08 21:49:11] pool-1-thread-6 - 5000 records committed(current total 20000 records), lap time = 0.611
[2025-03-08 21:49:11] pool-1-thread-1 - 5000 records committed(current total 20000 records), lap time = 0.632
[2025-03-08 21:49:11] pool-1-thread-3 - 5000 records committed(current total 20000 records), lap time = 0.631
[2025-03-08 21:49:11] pool-1-thread-7 - 5000 records committed(current total 25000 records), lap time = 0.613
[2025-03-08 21:49:11] pool-1-thread-4 - 5000 records committed(current total 25000 records), lap time = 0.532
[2025-03-08 21:49:11] pool-1-thread-8 - 5000 records committed(current total 25000 records), lap time = 0.543
[2025-03-08 21:49:11] pool-1-thread-9 - 5000 records committed(current total 25000 records), lap time = 0.534
[2025-03-08 21:49:11] pool-1-thread-2 - 5000 records committed(current total 25000 records), lap time = 0.552
[2025-03-08 21:49:11] pool-1-thread-10 - 5000 records committed(current total 25000 records), lap time = 0.541
[2025-03-08 21:49:11] pool-1-thread-5 - 5000 records committed(current total 25000 records), lap time = 0.559
[2025-03-08 21:49:11] pool-1-thread-6 - 5000 records committed(current total 25000 records), lap time = 0.550
[2025-03-08 21:49:11] pool-1-thread-1 - 5000 records committed(current total 25000 records), lap time = 0.548
[2025-03-08 21:49:11] pool-1-thread-3 - 5000 records committed(current total 25000 records), lap time = 0.535
[2025-03-08 21:49:12] pool-1-thread-7 - 5000 records committed(current total 30000 records), lap time = 0.572
[2025-03-08 21:49:12] pool-1-thread-4 - 5000 records committed(current total 30000 records), lap time = 0.509
[2025-03-08 21:49:12] pool-1-thread-8 - 5000 records committed(current total 30000 records), lap time = 0.489
[2025-03-08 21:49:12] pool-1-thread-9 - 5000 records committed(current total 30000 records), lap time = 0.504
[2025-03-08 21:49:12] pool-1-thread-2 - 5000 records committed(current total 30000 records), lap time = 0.497
[2025-03-08 21:49:12] pool-1-thread-5 - 5000 records committed(current total 30000 records), lap time = 0.481
[2025-03-08 21:49:12] pool-1-thread-10 - 5000 records committed(current total 30000 records), lap time = 0.499
[2025-03-08 21:49:12] pool-1-thread-1 - 5000 records committed(current total 30000 records), lap time = 0.500
[2025-03-08 21:49:12] pool-1-thread-6 - 5000 records committed(current total 30000 records), lap time = 0.525
[2025-03-08 21:49:12] pool-1-thread-3 - 5000 records committed(current total 30000 records), lap time = 0.525
[2025-03-08 21:49:12] pool-1-thread-7 - 5000 records committed(current total 35000 records), lap time = 0.438
[2025-03-08 21:49:12] pool-1-thread-8 - 5000 records committed(current total 35000 records), lap time = 0.432
[2025-03-08 21:49:12] pool-1-thread-4 - 5000 records committed(current total 35000 records), lap time = 0.442
[2025-03-08 21:49:12] pool-1-thread-2 - 5000 records committed(current total 35000 records), lap time = 0.426
[2025-03-08 21:49:12] pool-1-thread-9 - 5000 records committed(current total 35000 records), lap time = 0.438
[2025-03-08 21:49:12] pool-1-thread-10 - 5000 records committed(current total 35000 records), lap time = 0.433
[2025-03-08 21:49:12] pool-1-thread-5 - 5000 records committed(current total 35000 records), lap time = 0.442
[2025-03-08 21:49:12] pool-1-thread-1 - 5000 records committed(current total 35000 records), lap time = 0.418
[2025-03-08 21:49:12] pool-1-thread-6 - 5000 records committed(current total 35000 records), lap time = 0.419
[2025-03-08 21:49:12] pool-1-thread-3 - 5000 records committed(current total 35000 records), lap time = 0.440
[2025-03-08 21:49:13] pool-1-thread-7 - 5000 records committed(current total 40000 records), lap time = 0.576
[2025-03-08 21:49:13] pool-1-thread-8 - 5000 records committed(current total 40000 records), lap time = 0.580
[2025-03-08 21:49:13] pool-1-thread-2 - 5000 records committed(current total 40000 records), lap time = 0.565
[2025-03-08 21:49:13] pool-1-thread-4 - 5000 records committed(current total 40000 records), lap time = 0.580
[2025-03-08 21:49:13] pool-1-thread-5 - 5000 records committed(current total 40000 records), lap time = 0.572
[2025-03-08 21:49:13] pool-1-thread-6 - 5000 records committed(current total 40000 records), lap time = 0.550
[2025-03-08 21:49:13] pool-1-thread-9 - 5000 records committed(current total 40000 records), lap time = 0.587
[2025-03-08 21:49:13] pool-1-thread-10 - 5000 records committed(current total 40000 records), lap time = 0.581
[2025-03-08 21:49:13] pool-1-thread-1 - 5000 records committed(current total 40000 records), lap time = 0.571
[2025-03-08 21:49:13] pool-1-thread-3 - 5000 records committed(current total 40000 records), lap time = 0.528
[2025-03-08 21:49:13] pool-1-thread-7 - 5000 records committed(current total 45000 records), lap time = 0.803
[2025-03-08 21:49:13] pool-1-thread-8 - 5000 records committed(current total 45000 records), lap time = 0.822
[2025-03-08 21:49:13] pool-1-thread-1 - 5000 records committed(current total 45000 records), lap time = 0.781
[2025-03-08 21:49:13] pool-1-thread-5 - 5000 records committed(current total 45000 records), lap time = 0.790
[2025-03-08 21:49:13] pool-1-thread-4 - 5000 records committed(current total 45000 records), lap time = 0.810
[2025-03-08 21:49:13] pool-1-thread-6 - 5000 records committed(current total 45000 records), lap time = 0.781
[2025-03-08 21:49:13] pool-1-thread-2 - 5000 records committed(current total 45000 records), lap time = 0.816
[2025-03-08 21:49:13] pool-1-thread-9 - 5000 records committed(current total 45000 records), lap time = 0.781
[2025-03-08 21:49:13] pool-1-thread-10 - 5000 records committed(current total 45000 records), lap time = 0.781
[2025-03-08 21:49:13] pool-1-thread-3 - 5000 records committed(current total 45000 records), lap time = 0.770
[2025-03-08 21:49:14] pool-1-thread-7 - 5000 records committed(current total 50000 records), lap time = 0.473
[2025-03-08 21:49:14] pool-1-thread-6 - 5000 records committed(current total 50000 records), lap time = 0.567
[2025-03-08 21:49:14] pool-1-thread-5 - 5000 records committed(current total 50000 records), lap time = 0.576
[2025-03-08 21:49:14] pool-1-thread-3 - 5000 records committed(current total 50000 records), lap time = 0.587
[2025-03-08 21:49:14] pool-1-thread-8 - 5000 records committed(current total 50000 records), lap time = 0.588
[2025-03-08 21:49:14] pool-1-thread-1 - 5000 records committed(current total 50000 records), lap time = 0.588
[2025-03-08 21:49:14] pool-1-thread-2 - 5000 records committed(current total 50000 records), lap time = 0.588
[2025-03-08 21:49:14] pool-1-thread-10 - 5000 records committed(current total 50000 records), lap time = 0.588
[2025-03-08 21:49:14] pool-1-thread-9 - 5000 records committed(current total 50000 records), lap time = 0.588
[2025-03-08 21:49:14] pool-1-thread-4 - 5000 records committed(current total 50000 records), lap time = 0.598
[2025-03-08 21:49:14] pool-1-thread-7 - 5000 records committed(current total 55000 records), lap time = 0.571
[2025-03-08 21:49:15] pool-1-thread-6 - 5000 records committed(current total 55000 records), lap time = 0.595
[2025-03-08 21:49:15] pool-1-thread-5 - 5000 records committed(current total 55000 records), lap time = 0.602
[2025-03-08 21:49:15] pool-1-thread-10 - 5000 records committed(current total 55000 records), lap time = 0.622
[2025-03-08 21:49:15] pool-1-thread-9 - 5000 records committed(current total 55000 records), lap time = 0.632
[2025-03-08 21:49:15] pool-1-thread-4 - 5000 records committed(current total 55000 records), lap time = 0.637
[2025-03-08 21:49:15] pool-1-thread-1 - 5000 records committed(current total 55000 records), lap time = 0.647
[2025-03-08 21:49:15] pool-1-thread-8 - 5000 records committed(current total 55000 records), lap time = 0.647
[2025-03-08 21:49:15] pool-1-thread-3 - 5000 records committed(current total 55000 records), lap time = 0.652
[2025-03-08 21:49:15] pool-1-thread-2 - 5000 records committed(current total 55000 records), lap time = 0.652
[2025-03-08 21:49:15] pool-1-thread-7 - 5000 records committed(current total 60000 records), lap time = 0.508
[2025-03-08 21:49:15] pool-1-thread-6 - 5000 records committed(current total 60000 records), lap time = 0.537
[2025-03-08 21:49:15] pool-1-thread-5 - 5000 records committed(current total 60000 records), lap time = 0.544
[2025-03-08 21:49:15] pool-1-thread-9 - 5000 records committed(current total 60000 records), lap time = 0.514
[2025-03-08 21:49:15] pool-1-thread-10 - 5000 records committed(current total 60000 records), lap time = 0.531
[2025-03-08 21:49:15] pool-1-thread-3 - 5000 records committed(current total 60000 records), lap time = 0.525
[2025-03-08 21:49:15] pool-1-thread-1 - 5000 records committed(current total 60000 records), lap time = 0.541
[2025-03-08 21:49:15] pool-1-thread-2 - 5000 records committed(current total 60000 records), lap time = 0.536
[2025-03-08 21:49:15] pool-1-thread-4 - 5000 records committed(current total 60000 records), lap time = 0.541
[2025-03-08 21:49:15] pool-1-thread-8 - 5000 records committed(current total 60000 records), lap time = 0.564
[2025-03-08 21:49:16] pool-1-thread-7 - 5000 records committed(current total 65000 records), lap time = 0.753
[2025-03-08 21:49:16] pool-1-thread-6 - 5000 records committed(current total 65000 records), lap time = 0.697
[2025-03-08 21:49:16] pool-1-thread-5 - 5000 records committed(current total 65000 records), lap time = 0.687
[2025-03-08 21:49:16] pool-1-thread-9 - 5000 records committed(current total 65000 records), lap time = 0.690
[2025-03-08 21:49:16] pool-1-thread-10 - 5000 records committed(current total 65000 records), lap time = 0.688
[2025-03-08 21:49:16] pool-1-thread-2 - 5000 records committed(current total 65000 records), lap time = 0.660
[2025-03-08 21:49:16] pool-1-thread-4 - 5000 records committed(current total 65000 records), lap time = 0.669
[2025-03-08 21:49:16] pool-1-thread-3 - 5000 records committed(current total 65000 records), lap time = 0.681
[2025-03-08 21:49:16] pool-1-thread-1 - 5000 records committed(current total 65000 records), lap time = 0.679
[2025-03-08 21:49:16] pool-1-thread-8 - 5000 records committed(current total 65000 records), lap time = 0.655
[2025-03-08 21:49:16] pool-1-thread-7 - 5000 records committed(current total 70000 records), lap time = 0.586
[2025-03-08 21:49:16] pool-1-thread-5 - 5000 records committed(current total 70000 records), lap time = 0.639
[2025-03-08 21:49:16] pool-1-thread-6 - 5000 records committed(current total 70000 records), lap time = 0.659
[2025-03-08 21:49:16] pool-1-thread-9 - 5000 records committed(current total 70000 records), lap time = 0.642
[2025-03-08 21:49:16] pool-1-thread-10 - 5000 records committed(current total 70000 records), lap time = 0.643
[2025-03-08 21:49:16] pool-1-thread-2 - 5000 records committed(current total 70000 records), lap time = 0.643
[2025-03-08 21:49:16] pool-1-thread-3 - 5000 records committed(current total 70000 records), lap time = 0.641
[2025-03-08 21:49:16] pool-1-thread-4 - 5000 records committed(current total 70000 records), lap time = 0.647
[2025-03-08 21:49:16] pool-1-thread-1 - 5000 records committed(current total 70000 records), lap time = 0.644
[2025-03-08 21:49:16] pool-1-thread-8 - 5000 records committed(current total 70000 records), lap time = 0.644
[2025-03-08 21:49:17] pool-1-thread-7 - 5000 records committed(current total 75000 records), lap time = 0.596
[2025-03-08 21:49:17] pool-1-thread-5 - 5000 records committed(current total 75000 records), lap time = 0.524
[2025-03-08 21:49:17] pool-1-thread-10 - 5000 records committed(current total 75000 records), lap time = 0.537
[2025-03-08 21:49:17] pool-1-thread-6 - 5000 records committed(current total 75000 records), lap time = 0.563
[2025-03-08 21:49:17] pool-1-thread-9 - 5000 records committed(current total 75000 records), lap time = 0.560
[2025-03-08 21:49:17] pool-1-thread-2 - 5000 records committed(current total 75000 records), lap time = 0.554
[2025-03-08 21:49:17] pool-1-thread-3 - 5000 records committed(current total 75000 records), lap time = 0.561
[2025-03-08 21:49:17] pool-1-thread-8 - 5000 records committed(current total 75000 records), lap time = 0.562
[2025-03-08 21:49:17] pool-1-thread-4 - 5000 records committed(current total 75000 records), lap time = 0.576
[2025-03-08 21:49:17] pool-1-thread-1 - 5000 records committed(current total 75000 records), lap time = 0.584
[2025-03-08 21:49:18] pool-1-thread-7 - 5000 records committed(current total 80000 records), lap time = 0.800
[2025-03-08 21:49:18] pool-1-thread-5 - 5000 records committed(current total 80000 records), lap time = 0.758
[2025-03-08 21:49:18] pool-1-thread-10 - 5000 records committed(current total 80000 records), lap time = 0.737
[2025-03-08 21:49:18] pool-1-thread-6 - 5000 records committed(current total 80000 records), lap time = 0.751
[2025-03-08 21:49:18] pool-1-thread-2 - 5000 records committed(current total 80000 records), lap time = 0.745
[2025-03-08 21:49:18] pool-1-thread-9 - 5000 records committed(current total 80000 records), lap time = 0.768
[2025-03-08 21:49:18] pool-1-thread-3 - 5000 records committed(current total 80000 records), lap time = 0.753
[2025-03-08 21:49:18] pool-1-thread-8 - 5000 records committed(current total 80000 records), lap time = 0.760
[2025-03-08 21:49:18] pool-1-thread-4 - 5000 records committed(current total 80000 records), lap time = 0.760
[2025-03-08 21:49:18] pool-1-thread-1 - 5000 records committed(current total 80000 records), lap time = 0.759
[2025-03-08 21:49:18] pool-1-thread-7 - 5000 records committed(current total 85000 records), lap time = 0.746
[2025-03-08 21:49:19] pool-1-thread-5 - 5000 records committed(current total 85000 records), lap time = 0.792
[2025-03-08 21:49:19] pool-1-thread-10 - 5000 records committed(current total 85000 records), lap time = 0.786
[2025-03-08 21:49:19] pool-1-thread-2 - 5000 records committed(current total 85000 records), lap time = 0.768
[2025-03-08 21:49:19] pool-1-thread-6 - 5000 records committed(current total 85000 records), lap time = 0.789
[2025-03-08 21:49:19] pool-1-thread-9 - 5000 records committed(current total 85000 records), lap time = 0.777
[2025-03-08 21:49:19] pool-1-thread-3 - 5000 records committed(current total 85000 records), lap time = 0.770
[2025-03-08 21:49:19] pool-1-thread-8 - 5000 records committed(current total 85000 records), lap time = 0.759
[2025-03-08 21:49:19] pool-1-thread-4 - 5000 records committed(current total 85000 records), lap time = 0.750
[2025-03-08 21:49:19] pool-1-thread-1 - 5000 records committed(current total 85000 records), lap time = 0.750
[2025-03-08 21:49:19] pool-1-thread-7 - 5000 records committed(current total 90000 records), lap time = 0.643
[2025-03-08 21:49:19] pool-1-thread-5 - 5000 records committed(current total 90000 records), lap time = 0.615
[2025-03-08 21:49:19] pool-1-thread-2 - 5000 records committed(current total 90000 records), lap time = 0.611
[2025-03-08 21:49:19] pool-1-thread-10 - 5000 records committed(current total 90000 records), lap time = 0.631
[2025-03-08 21:49:19] pool-1-thread-9 - 5000 records committed(current total 90000 records), lap time = 0.653
[2025-03-08 21:49:19] pool-1-thread-3 - 5000 records committed(current total 90000 records), lap time = 0.666
[2025-03-08 21:49:19] pool-1-thread-6 - 5000 records committed(current total 90000 records), lap time = 0.678
[2025-03-08 21:49:19] pool-1-thread-1 - 5000 records committed(current total 90000 records), lap time = 0.647
[2025-03-08 21:49:19] pool-1-thread-4 - 5000 records committed(current total 90000 records), lap time = 0.658
[2025-03-08 21:49:19] pool-1-thread-8 - 5000 records committed(current total 90000 records), lap time = 0.664
[2025-03-08 21:49:20] pool-1-thread-7 - 5000 records committed(current total 95000 records), lap time = 0.990
[2025-03-08 21:49:20] pool-1-thread-10 - 5000 records committed(current total 95000 records), lap time = 0.910
[2025-03-08 21:49:20] pool-1-thread-6 - 5000 records committed(current total 95000 records), lap time = 0.837
[2025-03-08 21:49:20] pool-1-thread-8 - 5000 records committed(current total 95000 records), lap time = 0.830
[2025-03-08 21:49:20] pool-1-thread-2 - 5000 records committed(current total 95000 records), lap time = 0.918
[2025-03-08 21:49:20] pool-1-thread-4 - 5000 records committed(current total 95000 records), lap time = 0.837
[2025-03-08 21:49:20] pool-1-thread-5 - 5000 records committed(current total 95000 records), lap time = 0.936
[2025-03-08 21:49:20] pool-1-thread-3 - 5000 records committed(current total 95000 records), lap time = 0.837
[2025-03-08 21:49:20] pool-1-thread-1 - 5000 records committed(current total 95000 records), lap time = 0.837
[2025-03-08 21:49:20] pool-1-thread-9 - 5000 records committed(current total 95000 records), lap time = 0.850
[2025-03-08 21:49:21] pool-1-thread-7 - 5000 records committed(current total 100000 records), lap time = 0.666
[2025-03-08 21:49:21] pool-1-thread-8 - 5000 records committed(current total 100000 records), lap time = 0.683
[2025-03-08 21:49:21] pool-1-thread-2 - 5000 records committed(current total 100000 records), lap time = 0.693
[2025-03-08 21:49:21] pool-1-thread-10 - 5000 records committed(current total 100000 records), lap time = 0.693
[2025-03-08 21:49:21] pool-1-thread-6 - 5000 records committed(current total 100000 records), lap time = 0.703
[2025-03-08 21:49:21] pool-1-thread-4 - 5000 records committed(current total 100000 records), lap time = 0.702
[2025-03-08 21:49:21] pool-1-thread-9 - 5000 records committed(current total 100000 records), lap time = 0.702
[2025-03-08 21:49:21] pool-1-thread-5 - 5000 records committed(current total 100000 records), lap time = 0.702
[2025-03-08 21:49:21] pool-1-thread-1 - 5000 records committed(current total 100000 records), lap time = 0.702
[2025-03-08 21:49:21] pool-1-thread-3 - 5000 records committed(current total 100000 records), lap time = 0.702
[2025-03-08 21:49:21] pool-1-thread-7 - 5000 records committed(current total 105000 records), lap time = 0.596
[2025-03-08 21:49:21] pool-1-thread-8 - 5000 records committed(current total 105000 records), lap time = 0.675
[2025-03-08 21:49:21] pool-1-thread-10 - 5000 records committed(current total 105000 records), lap time = 0.680
[2025-03-08 21:49:21] pool-1-thread-2 - 5000 records committed(current total 105000 records), lap time = 0.686
[2025-03-08 21:49:21] pool-1-thread-9 - 5000 records committed(current total 105000 records), lap time = 0.696
[2025-03-08 21:49:21] pool-1-thread-3 - 5000 records committed(current total 105000 records), lap time = 0.704
[2025-03-08 21:49:21] pool-1-thread-1 - 5000 records committed(current total 105000 records), lap time = 0.716
[2025-03-08 21:49:21] pool-1-thread-5 - 5000 records committed(current total 105000 records), lap time = 0.716
[2025-03-08 21:49:21] pool-1-thread-4 - 5000 records committed(current total 105000 records), lap time = 0.717
[2025-03-08 21:49:22] pool-1-thread-6 - 5000 records committed(current total 105000 records), lap time = 0.723
[2025-03-08 21:49:22] pool-1-thread-7 - 5000 records committed(current total 110000 records), lap time = 0.597
[2025-03-08 21:49:22] pool-1-thread-8 - 5000 records committed(current total 110000 records), lap time = 0.587
[2025-03-08 21:49:22] pool-1-thread-2 - 5000 records committed(current total 110000 records), lap time = 0.582
[2025-03-08 21:49:22] pool-1-thread-10 - 5000 records committed(current total 110000 records), lap time = 0.600
[2025-03-08 21:49:22] pool-1-thread-9 - 5000 records committed(current total 110000 records), lap time = 0.605
[2025-03-08 21:49:22] pool-1-thread-5 - 5000 records committed(current total 110000 records), lap time = 0.599
[2025-03-08 21:49:22] pool-1-thread-6 - 5000 records committed(current total 110000 records), lap time = 0.605
[2025-03-08 21:49:22] pool-1-thread-3 - 5000 records committed(current total 110000 records), lap time = 0.629
[2025-03-08 21:49:22] pool-1-thread-1 - 5000 records committed(current total 110000 records), lap time = 0.617
[2025-03-08 21:49:22] pool-1-thread-4 - 5000 records committed(current total 110000 records), lap time = 0.628
[2025-03-08 21:49:23] pool-1-thread-7 - 5000 records committed(current total 115000 records), lap time = 0.678
[2025-03-08 21:49:23] pool-1-thread-8 - 5000 records committed(current total 115000 records), lap time = 0.671
[2025-03-08 21:49:23] pool-1-thread-2 - 5000 records committed(current total 115000 records), lap time = 0.663
[2025-03-08 21:49:23] pool-1-thread-10 - 5000 records committed(current total 115000 records), lap time = 0.659
[2025-03-08 21:49:23] pool-1-thread-9 - 5000 records committed(current total 115000 records), lap time = 0.646
[2025-03-08 21:49:23] pool-1-thread-5 - 5000 records committed(current total 115000 records), lap time = 0.670
[2025-03-08 21:49:23] pool-1-thread-1 - 5000 records committed(current total 115000 records), lap time = 0.658
[2025-03-08 21:49:23] pool-1-thread-6 - 5000 records committed(current total 115000 records), lap time = 0.672
[2025-03-08 21:49:23] pool-1-thread-4 - 5000 records committed(current total 115000 records), lap time = 0.668
[2025-03-08 21:49:23] pool-1-thread-3 - 5000 records committed(current total 115000 records), lap time = 0.679
[2025-03-08 21:49:23] pool-1-thread-7 - 5000 records committed(current total 120000 records), lap time = 0.666
[2025-03-08 21:49:23] pool-1-thread-8 - 5000 records committed(current total 120000 records), lap time = 0.686
[2025-03-08 21:49:23] pool-1-thread-2 - 5000 records committed(current total 120000 records), lap time = 0.698
[2025-03-08 21:49:23] pool-1-thread-10 - 5000 records committed(current total 120000 records), lap time = 0.717
[2025-03-08 21:49:23] pool-1-thread-9 - 5000 records committed(current total 120000 records), lap time = 0.731
[2025-03-08 21:49:23] pool-1-thread-5 - 5000 records committed(current total 120000 records), lap time = 0.702
[2025-03-08 21:49:23] pool-1-thread-3 - 5000 records committed(current total 120000 records), lap time = 0.681
[2025-03-08 21:49:23] pool-1-thread-6 - 5000 records committed(current total 120000 records), lap time = 0.702
[2025-03-08 21:49:23] pool-1-thread-1 - 5000 records committed(current total 120000 records), lap time = 0.714
[2025-03-08 21:49:23] pool-1-thread-4 - 5000 records committed(current total 120000 records), lap time = 0.704
[2025-03-08 21:49:24] pool-1-thread-7 - 5000 records committed(current total 125000 records), lap time = 0.674
[2025-03-08 21:49:24] pool-1-thread-8 - 5000 records committed(current total 125000 records), lap time = 0.626
[2025-03-08 21:49:24] pool-1-thread-2 - 5000 records committed(current total 125000 records), lap time = 0.612
[2025-03-08 21:49:24] pool-1-thread-10 - 5000 records committed(current total 125000 records), lap time = 0.605
[2025-03-08 21:49:24] pool-1-thread-9 - 5000 records committed(current total 125000 records), lap time = 0.588
[2025-03-08 21:49:24] pool-1-thread-5 - 5000 records committed(current total 125000 records), lap time = 0.597
[2025-03-08 21:49:24] pool-1-thread-4 - 5000 records committed(current total 125000 records), lap time = 0.581
[2025-03-08 21:49:24] pool-1-thread-6 - 5000 records committed(current total 125000 records), lap time = 0.596
[2025-03-08 21:49:24] pool-1-thread-3 - 5000 records committed(current total 125000 records), lap time = 0.603
[2025-03-08 21:49:24] pool-1-thread-1 - 5000 records committed(current total 125000 records), lap time = 0.598
[2025-03-08 21:49:25] pool-1-thread-7 - 5000 records committed(current total 130000 records), lap time = 0.621
[2025-03-08 21:49:25] pool-1-thread-8 - 5000 records committed(current total 130000 records), lap time = 0.633
[2025-03-08 21:49:25] pool-1-thread-2 - 5000 records committed(current total 130000 records), lap time = 0.636
[2025-03-08 21:49:25] pool-1-thread-10 - 5000 records committed(current total 130000 records), lap time = 0.629
[2025-03-08 21:49:25] pool-1-thread-9 - 5000 records committed(current total 130000 records), lap time = 0.693
[2025-03-08 21:49:25] pool-1-thread-5 - 5000 records committed(current total 130000 records), lap time = 0.717
[2025-03-08 21:49:25] pool-1-thread-3 - 5000 records committed(current total 130000 records), lap time = 0.713
[2025-03-08 21:49:25] pool-1-thread-1 - 5000 records committed(current total 130000 records), lap time = 0.712
[2025-03-08 21:49:25] pool-1-thread-4 - 5000 records committed(current total 130000 records), lap time = 0.723
[2025-03-08 21:49:25] pool-1-thread-6 - 5000 records committed(current total 130000 records), lap time = 0.733
[2025-03-08 21:49:25] pool-1-thread-7 - 5000 records committed(current total 135000 records), lap time = 0.688
[2025-03-08 21:49:25] pool-1-thread-8 - 5000 records committed(current total 135000 records), lap time = 0.675
[2025-03-08 21:49:25] pool-1-thread-2 - 5000 records committed(current total 135000 records), lap time = 0.706
[2025-03-08 21:49:25] pool-1-thread-10 - 5000 records committed(current total 135000 records), lap time = 0.718
[2025-03-08 21:49:25] pool-1-thread-9 - 5000 records committed(current total 135000 records), lap time = 0.672
[2025-03-08 21:49:25] pool-1-thread-5 - 5000 records committed(current total 135000 records), lap time = 0.677
[2025-03-08 21:49:25] pool-1-thread-1 - 5000 records committed(current total 135000 records), lap time = 0.674
[2025-03-08 21:49:25] pool-1-thread-3 - 5000 records committed(current total 135000 records), lap time = 0.700
[2025-03-08 21:49:25] pool-1-thread-4 - 5000 records committed(current total 135000 records), lap time = 0.694
[2025-03-08 21:49:26] pool-1-thread-6 - 5000 records committed(current total 135000 records), lap time = 0.714
[2025-03-08 21:49:26] pool-1-thread-7 - 5000 records committed(current total 140000 records), lap time = 0.691
[2025-03-08 21:49:26] pool-1-thread-8 - 5000 records committed(current total 140000 records), lap time = 0.656
[2025-03-08 21:49:26] pool-1-thread-2 - 5000 records committed(current total 140000 records), lap time = 0.624
[2025-03-08 21:49:26] pool-1-thread-10 - 5000 records committed(current total 140000 records), lap time = 0.648
[2025-03-08 21:49:26] pool-1-thread-9 - 5000 records committed(current total 140000 records), lap time = 0.647
[2025-03-08 21:49:26] pool-1-thread-5 - 5000 records committed(current total 140000 records), lap time = 0.611
[2025-03-08 21:49:26] pool-1-thread-1 - 5000 records committed(current total 140000 records), lap time = 0.610
[2025-03-08 21:49:26] pool-1-thread-3 - 5000 records committed(current total 140000 records), lap time = 0.629
[2025-03-08 21:49:26] pool-1-thread-4 - 5000 records committed(current total 140000 records), lap time = 0.630
[2025-03-08 21:49:26] pool-1-thread-6 - 5000 records committed(current total 140000 records), lap time = 0.637
[2025-03-08 21:49:27] pool-1-thread-7 - 5000 records committed(current total 145000 records), lap time = 0.699
[2025-03-08 21:49:27] pool-1-thread-8 - 5000 records committed(current total 145000 records), lap time = 0.756
[2025-03-08 21:49:27] pool-1-thread-2 - 5000 records committed(current total 145000 records), lap time = 0.755
[2025-03-08 21:49:27] pool-1-thread-10 - 5000 records committed(current total 145000 records), lap time = 0.786
[2025-03-08 21:49:27] pool-1-thread-9 - 5000 records committed(current total 145000 records), lap time = 0.788
[2025-03-08 21:49:27] pool-1-thread-5 - 5000 records committed(current total 145000 records), lap time = 0.788
[2025-03-08 21:49:27] pool-1-thread-1 - 5000 records committed(current total 145000 records), lap time = 0.803
[2025-03-08 21:49:27] pool-1-thread-3 - 5000 records committed(current total 145000 records), lap time = 0.780
[2025-03-08 21:49:27] pool-1-thread-4 - 5000 records committed(current total 145000 records), lap time = 0.790
[2025-03-08 21:49:27] pool-1-thread-6 - 5000 records committed(current total 145000 records), lap time = 0.766
[2025-03-08 21:49:27] pool-1-thread-7 - 5000 records committed(current total 150000 records), lap time = 0.723
[2025-03-08 21:49:27] pool-1-thread-2 - 5000 records committed(current total 150000 records), lap time = 0.664
[2025-03-08 21:49:27] pool-1-thread-8 - 5000 records committed(current total 150000 records), lap time = 0.690
[2025-03-08 21:49:27] pool-1-thread-10 - 5000 records committed(current total 150000 records), lap time = 0.688
[2025-03-08 21:49:28] pool-1-thread-9 - 5000 records committed(current total 150000 records), lap time = 0.661
[2025-03-08 21:49:28] pool-1-thread-5 - 5000 records committed(current total 150000 records), lap time = 0.687
[2025-03-08 21:49:28] pool-1-thread-1 - 5000 records committed(current total 150000 records), lap time = 0.670
[2025-03-08 21:49:28] pool-1-thread-3 - 5000 records committed(current total 150000 records), lap time = 0.662
[2025-03-08 21:49:28] pool-1-thread-6 - 5000 records committed(current total 150000 records), lap time = 0.668
[2025-03-08 21:49:28] pool-1-thread-4 - 5000 records committed(current total 150000 records), lap time = 0.687
[2025-03-08 21:49:28] pool-1-thread-7 - 5000 records committed(current total 155000 records), lap time = 0.703
[2025-03-08 21:49:28] pool-1-thread-2 - 5000 records committed(current total 155000 records), lap time = 0.662
[2025-03-08 21:49:28] pool-1-thread-8 - 5000 records committed(current total 155000 records), lap time = 0.651
[2025-03-08 21:49:28] pool-1-thread-10 - 5000 records committed(current total 155000 records), lap time = 0.658
[2025-03-08 21:49:28] pool-1-thread-9 - 5000 records committed(current total 155000 records), lap time = 0.655
[2025-03-08 21:49:28] pool-1-thread-5 - 5000 records committed(current total 155000 records), lap time = 0.631
[2025-03-08 21:49:28] pool-1-thread-1 - 5000 records committed(current total 155000 records), lap time = 0.667
[2025-03-08 21:49:28] pool-1-thread-3 - 5000 records committed(current total 155000 records), lap time = 0.680
[2025-03-08 21:49:28] pool-1-thread-6 - 5000 records committed(current total 155000 records), lap time = 0.759
[2025-03-08 21:49:28] pool-1-thread-4 - 5000 records committed(current total 155000 records), lap time = 0.760
[2025-03-08 21:49:29] pool-1-thread-7 - 5000 records committed(current total 160000 records), lap time = 0.732
[2025-03-08 21:49:29] pool-1-thread-2 - 5000 records committed(current total 160000 records), lap time = 0.738
[2025-03-08 21:49:29] pool-1-thread-8 - 5000 records committed(current total 160000 records), lap time = 0.751
[2025-03-08 21:49:29] pool-1-thread-1 - 5000 records committed(current total 160000 records), lap time = 0.709
[2025-03-08 21:49:29] pool-1-thread-10 - 5000 records committed(current total 160000 records), lap time = 0.789
[2025-03-08 21:49:29] pool-1-thread-9 - 5000 records committed(current total 160000 records), lap time = 0.796
[2025-03-08 21:49:29] pool-1-thread-3 - 5000 records committed(current total 160000 records), lap time = 0.723
[2025-03-08 21:49:29] pool-1-thread-5 - 5000 records committed(current total 160000 records), lap time = 0.785
[2025-03-08 21:49:29] pool-1-thread-4 - 5000 records committed(current total 160000 records), lap time = 0.656
[2025-03-08 21:49:29] pool-1-thread-6 - 5000 records committed(current total 160000 records), lap time = 0.669
[2025-03-08 21:49:29] pool-1-thread-7 - 5000 records committed(current total 165000 records), lap time = 0.698
[2025-03-08 21:49:29] pool-1-thread-2 - 5000 records committed(current total 165000 records), lap time = 0.689
[2025-03-08 21:49:30] pool-1-thread-8 - 5000 records committed(current total 165000 records), lap time = 0.686
[2025-03-08 21:49:30] pool-1-thread-1 - 5000 records committed(current total 165000 records), lap time = 0.682
[2025-03-08 21:49:30] pool-1-thread-10 - 5000 records committed(current total 165000 records), lap time = 0.697
[2025-03-08 21:49:30] pool-1-thread-5 - 5000 records committed(current total 165000 records), lap time = 0.687
[2025-03-08 21:49:30] pool-1-thread-3 - 5000 records committed(current total 165000 records), lap time = 0.692
[2025-03-08 21:49:30] pool-1-thread-9 - 5000 records committed(current total 165000 records), lap time = 0.697
[2025-03-08 21:49:30] pool-1-thread-4 - 5000 records committed(current total 165000 records), lap time = 0.675
[2025-03-08 21:49:30] pool-1-thread-6 - 5000 records committed(current total 165000 records), lap time = 0.689
[2025-03-08 21:49:30] pool-1-thread-7 - 5000 records committed(current total 170000 records), lap time = 0.613
[2025-03-08 21:49:30] pool-1-thread-2 - 5000 records committed(current total 170000 records), lap time = 0.618
[2025-03-08 21:49:30] pool-1-thread-8 - 5000 records committed(current total 170000 records), lap time = 0.612
[2025-03-08 21:49:30] pool-1-thread-1 - 5000 records committed(current total 170000 records), lap time = 0.637
[2025-03-08 21:49:30] pool-1-thread-10 - 5000 records committed(current total 170000 records), lap time = 0.704
[2025-03-08 21:49:30] pool-1-thread-5 - 5000 records committed(current total 170000 records), lap time = 0.704
[2025-03-08 21:49:30] pool-1-thread-9 - 5000 records committed(current total 170000 records), lap time = 0.713
[2025-03-08 21:49:30] pool-1-thread-3 - 5000 records committed(current total 170000 records), lap time = 0.726
[2025-03-08 21:49:30] pool-1-thread-4 - 5000 records committed(current total 170000 records), lap time = 0.716
[2025-03-08 21:49:30] pool-1-thread-6 - 5000 records committed(current total 170000 records), lap time = 0.706
[2025-03-08 21:49:31] pool-1-thread-7 - 5000 records committed(current total 175000 records), lap time = 0.862
[2025-03-08 21:49:31] pool-1-thread-2 - 5000 records committed(current total 175000 records), lap time = 0.866
[2025-03-08 21:49:31] pool-1-thread-8 - 5000 records committed(current total 175000 records), lap time = 0.855
[2025-03-08 21:49:31] pool-1-thread-1 - 5000 records committed(current total 175000 records), lap time = 0.723
[2025-03-08 21:49:31] pool-1-thread-5 - 5000 records committed(current total 175000 records), lap time = 0.628
[2025-03-08 21:49:31] pool-1-thread-9 - 5000 records committed(current total 175000 records), lap time = 0.615
[2025-03-08 21:49:31] pool-1-thread-10 - 5000 records committed(current total 175000 records), lap time = 0.646
[2025-03-08 21:49:31] pool-1-thread-3 - 5000 records committed(current total 175000 records), lap time = 0.635
[2025-03-08 21:49:31] pool-1-thread-4 - 5000 records committed(current total 175000 records), lap time = 0.642
[2025-03-08 21:49:31] pool-1-thread-6 - 5000 records committed(current total 175000 records), lap time = 0.666
[2025-03-08 21:49:32] pool-1-thread-7 - 5000 records committed(current total 180000 records), lap time = 0.709
[2025-03-08 21:49:32] pool-1-thread-2 - 5000 records committed(current total 180000 records), lap time = 0.724
[2025-03-08 21:49:32] pool-1-thread-9 - 5000 records committed(current total 180000 records), lap time = 0.716
[2025-03-08 21:49:32] pool-1-thread-5 - 5000 records committed(current total 180000 records), lap time = 0.729
[2025-03-08 21:49:32] pool-1-thread-1 - 5000 records committed(current total 180000 records), lap time = 0.747
[2025-03-08 21:49:32] pool-1-thread-8 - 5000 records committed(current total 180000 records), lap time = 0.748
[2025-03-08 21:49:32] pool-1-thread-10 - 5000 records committed(current total 180000 records), lap time = 0.733
[2025-03-08 21:49:32] pool-1-thread-3 - 5000 records committed(current total 180000 records), lap time = 0.718
[2025-03-08 21:49:32] pool-1-thread-6 - 5000 records committed(current total 180000 records), lap time = 0.689
[2025-03-08 21:49:32] pool-1-thread-4 - 5000 records committed(current total 180000 records), lap time = 0.735
[2025-03-08 21:49:32] pool-1-thread-7 - 5000 records committed(current total 185000 records), lap time = 0.670
[2025-03-08 21:49:32] pool-1-thread-9 - 5000 records committed(current total 185000 records), lap time = 0.656
[2025-03-08 21:49:32] pool-1-thread-2 - 5000 records committed(current total 185000 records), lap time = 0.677
[2025-03-08 21:49:32] pool-1-thread-5 - 5000 records committed(current total 185000 records), lap time = 0.677
[2025-03-08 21:49:32] pool-1-thread-1 - 5000 records committed(current total 185000 records), lap time = 0.674
[2025-03-08 21:49:32] pool-1-thread-10 - 5000 records committed(current total 185000 records), lap time = 0.675
[2025-03-08 21:49:32] pool-1-thread-8 - 5000 records committed(current total 185000 records), lap time = 0.693
[2025-03-08 21:49:32] pool-1-thread-3 - 5000 records committed(current total 185000 records), lap time = 0.699
[2025-03-08 21:49:32] pool-1-thread-4 - 5000 records committed(current total 185000 records), lap time = 0.672
[2025-03-08 21:49:32] pool-1-thread-6 - 5000 records committed(current total 185000 records), lap time = 0.695
[2025-03-08 21:49:33] pool-1-thread-7 - 5000 records committed(current total 190000 records), lap time = 0.675
[2025-03-08 21:49:33] pool-1-thread-9 - 5000 records committed(current total 190000 records), lap time = 0.656
[2025-03-08 21:49:33] pool-1-thread-2 - 5000 records committed(current total 190000 records), lap time = 0.652
[2025-03-08 21:49:33] pool-1-thread-1 - 5000 records committed(current total 190000 records), lap time = 0.647
[2025-03-08 21:49:33] pool-1-thread-5 - 5000 records committed(current total 190000 records), lap time = 0.655
[2025-03-08 21:49:33] pool-1-thread-10 - 5000 records committed(current total 190000 records), lap time = 0.649
[2025-03-08 21:49:33] pool-1-thread-8 - 5000 records committed(current total 190000 records), lap time = 0.654
[2025-03-08 21:49:33] pool-1-thread-3 - 5000 records committed(current total 190000 records), lap time = 0.652
[2025-03-08 21:49:33] pool-1-thread-4 - 5000 records committed(current total 190000 records), lap time = 0.637
[2025-03-08 21:49:33] pool-1-thread-6 - 5000 records committed(current total 190000 records), lap time = 0.638
[2025-03-08 21:49:34] pool-1-thread-7 - 5000 records committed(current total 195000 records), lap time = 0.712
[2025-03-08 21:49:34] pool-1-thread-9 - 5000 records committed(current total 195000 records), lap time = 0.728
[2025-03-08 21:49:34] pool-1-thread-2 - 5000 records committed(current total 195000 records), lap time = 0.725
[2025-03-08 21:49:34] pool-1-thread-5 - 5000 records committed(current total 195000 records), lap time = 0.725
[2025-03-08 21:49:34] pool-1-thread-1 - 5000 records committed(current total 195000 records), lap time = 0.753
[2025-03-08 21:49:34] pool-1-thread-10 - 5000 records committed(current total 195000 records), lap time = 0.754
[2025-03-08 21:49:34] pool-1-thread-3 - 5000 records committed(current total 195000 records), lap time = 0.728
[2025-03-08 21:49:34] pool-1-thread-8 - 5000 records committed(current total 195000 records), lap time = 0.757
[2025-03-08 21:49:34] pool-1-thread-4 - 5000 records committed(current total 195000 records), lap time = 0.758
[2025-03-08 21:49:34] pool-1-thread-6 - 5000 records committed(current total 195000 records), lap time = 0.778
[2025-03-08 21:49:34] pool-1-thread-7 - 5000 records committed(current total 200000 records), lap time = 0.667
[2025-03-08 21:49:34] pool-1-thread-9 - 5000 records committed(current total 200000 records), lap time = 0.680
[2025-03-08 21:49:34] pool-1-thread-2 - 5000 records committed(current total 200000 records), lap time = 0.702
[2025-03-08 21:49:34] pool-1-thread-3 - 5000 records committed(current total 200000 records), lap time = 0.679
[2025-03-08 21:49:35] pool-1-thread-5 - 5000 records committed(current total 200000 records), lap time = 0.738
[2025-03-08 21:49:35] pool-1-thread-8 - 5000 records committed(current total 200000 records), lap time = 0.680
[2025-03-08 21:49:35] pool-1-thread-1 - 5000 records committed(current total 200000 records), lap time = 0.710
[2025-03-08 21:49:35] pool-1-thread-10 - 5000 records committed(current total 200000 records), lap time = 0.710
[2025-03-08 21:49:35] pool-1-thread-6 - 5000 records committed(current total 200000 records), lap time = 0.639
[2025-03-08 21:49:35] pool-1-thread-4 - 5000 records committed(current total 200000 records), lap time = 0.678
[2025-03-08 21:49:35] pool-1-thread-7 - 5000 records committed(current total 205000 records), lap time = 0.584
[2025-03-08 21:49:35] pool-1-thread-9 - 5000 records committed(current total 205000 records), lap time = 0.555
[2025-03-08 21:49:35] pool-1-thread-2 - 5000 records committed(current total 205000 records), lap time = 0.547
[2025-03-08 21:49:35] pool-1-thread-3 - 5000 records committed(current total 205000 records), lap time = 0.551
[2025-03-08 21:49:35] pool-1-thread-5 - 5000 records committed(current total 205000 records), lap time = 0.546
[2025-03-08 21:49:35] pool-1-thread-8 - 5000 records committed(current total 205000 records), lap time = 0.556
[2025-03-08 21:49:35] pool-1-thread-1 - 5000 records committed(current total 205000 records), lap time = 0.567
[2025-03-08 21:49:35] pool-1-thread-4 - 5000 records committed(current total 205000 records), lap time = 0.551
[2025-03-08 21:49:35] pool-1-thread-6 - 5000 records committed(current total 205000 records), lap time = 0.566
[2025-03-08 21:49:35] pool-1-thread-10 - 5000 records committed(current total 205000 records), lap time = 0.578
[2025-03-08 21:49:36] pool-1-thread-7 - 5000 records committed(current total 210000 records), lap time = 0.700
[2025-03-08 21:49:36] pool-1-thread-9 - 5000 records committed(current total 210000 records), lap time = 0.727
[2025-03-08 21:49:36] pool-1-thread-2 - 5000 records committed(current total 210000 records), lap time = 0.902
[2025-03-08 21:49:36] pool-1-thread-8 - 5000 records committed(current total 210000 records), lap time = 0.869
[2025-03-08 21:49:36] pool-1-thread-4 - 5000 records committed(current total 210000 records), lap time = 0.845
[2025-03-08 21:49:36] pool-1-thread-1 - 5000 records committed(current total 210000 records), lap time = 0.858
[2025-03-08 21:49:36] pool-1-thread-10 - 5000 records committed(current total 210000 records), lap time = 0.837
[2025-03-08 21:49:36] pool-1-thread-5 - 5000 records committed(current total 210000 records), lap time = 0.879
[2025-03-08 21:49:36] pool-1-thread-3 - 5000 records committed(current total 210000 records), lap time = 0.886
[2025-03-08 21:49:36] pool-1-thread-6 - 5000 records committed(current total 210000 records), lap time = 0.837
[2025-03-08 21:49:36] pool-1-thread-7 - 5000 records committed(current total 215000 records), lap time = 0.261
[2025-03-08 21:49:36] pool-1-thread-9 - 5000 records committed(current total 215000 records), lap time = 0.234
[2025-03-08 21:49:36] pool-1-thread-2 - 5000 records committed(current total 215000 records), lap time = 0.577
[2025-03-08 21:49:37] pool-1-thread-4 - 5000 records committed(current total 215000 records), lap time = 0.671
[2025-03-08 21:49:37] pool-1-thread-6 - 5000 records committed(current total 215000 records), lap time = 0.679
[2025-03-08 21:49:37] pool-1-thread-1 - 5000 records committed(current total 215000 records), lap time = 0.680
[2025-03-08 21:49:37] pool-1-thread-7 - 5000 records committed(current total 220000 records), lap time = 0.681
[2025-03-08 21:49:37] pool-1-thread-5 - 5000 records committed(current total 215000 records), lap time = 0.687
[2025-03-08 21:49:37] pool-1-thread-10 - 5000 records committed(current total 215000 records), lap time = 0.687
[2025-03-08 21:49:37] pool-1-thread-3 - 5000 records committed(current total 215000 records), lap time = 0.687
[2025-03-08 21:49:37] pool-1-thread-8 - 5000 records committed(current total 215000 records), lap time = 0.692
[2025-03-08 21:49:37] pool-1-thread-9 - 5000 records committed(current total 220000 records), lap time = 0.678
[2025-03-08 21:49:37] pool-1-thread-2 - 5000 records committed(current total 220000 records), lap time = 0.553
[2025-03-08 21:49:37] pool-1-thread-4 - 5000 records committed(current total 220000 records), lap time = 0.527
[2025-03-08 21:49:37] pool-1-thread-1 - 5000 records committed(current total 220000 records), lap time = 0.563
[2025-03-08 21:49:37] pool-1-thread-6 - 5000 records committed(current total 220000 records), lap time = 0.563
[2025-03-08 21:49:37] pool-1-thread-7 - 5000 records committed(current total 225000 records), lap time = 0.608
[2025-03-08 21:49:37] pool-1-thread-10 - 5000 records committed(current total 220000 records), lap time = 0.631
[2025-03-08 21:49:37] pool-1-thread-3 - 5000 records committed(current total 220000 records), lap time = 0.639
[2025-03-08 21:49:37] pool-1-thread-8 - 5000 records committed(current total 220000 records), lap time = 0.655
[2025-03-08 21:49:37] pool-1-thread-5 - 5000 records committed(current total 220000 records), lap time = 0.660
[2025-03-08 21:49:37] pool-1-thread-9 - 5000 records committed(current total 225000 records), lap time = 0.655
[2025-03-08 21:49:38] pool-1-thread-2 - 5000 records committed(current total 225000 records), lap time = 0.751
[2025-03-08 21:49:38] pool-1-thread-4 - 5000 records committed(current total 225000 records), lap time = 0.965
[2025-03-08 21:49:38] pool-1-thread-7 - 5000 records committed(current total 230000 records), lap time = 0.902
[2025-03-08 21:49:38] pool-1-thread-1 - 5000 records committed(current total 225000 records), lap time = 0.954
[2025-03-08 21:49:38] pool-1-thread-5 - 5000 records committed(current total 225000 records), lap time = 0.850
[2025-03-08 21:49:38] pool-1-thread-6 - 5000 records committed(current total 225000 records), lap time = 0.954
[2025-03-08 21:49:38] pool-1-thread-10 - 5000 records committed(current total 225000 records), lap time = 0.878
[2025-03-08 21:49:38] pool-1-thread-9 - 5000 records committed(current total 230000 records), lap time = 0.850
[2025-03-08 21:49:38] pool-1-thread-8 - 5000 records committed(current total 225000 records), lap time = 0.850
[2025-03-08 21:49:38] pool-1-thread-2 - 5000 records committed(current total 230000 records), lap time = 0.337
[2025-03-08 21:49:38] pool-1-thread-3 - 5000 records committed(current total 225000 records), lap time = 0.871
[2025-03-08 21:49:39] pool-1-thread-4 - 5000 records committed(current total 230000 records), lap time = 0.610
[2025-03-08 21:49:39] pool-1-thread-8 - 5000 records committed(current total 230000 records), lap time = 0.679
[2025-03-08 21:49:39] pool-1-thread-1 - 5000 records committed(current total 230000 records), lap time = 0.686
[2025-03-08 21:49:39] pool-1-thread-9 - 5000 records committed(current total 235000 records), lap time = 0.686
[2025-03-08 21:49:39] pool-1-thread-2 - 5000 records committed(current total 235000 records), lap time = 0.695
[2025-03-08 21:49:39] pool-1-thread-3 - 5000 records committed(current total 230000 records), lap time = 0.695
[2025-03-08 21:49:39] pool-1-thread-7 - 5000 records committed(current total 235000 records), lap time = 0.695
[2025-03-08 21:49:39] pool-1-thread-5 - 5000 records committed(current total 230000 records), lap time = 0.695
[2025-03-08 21:49:39] pool-1-thread-10 - 5000 records committed(current total 230000 records), lap time = 0.695
[2025-03-08 21:49:39] pool-1-thread-6 - 5000 records committed(current total 230000 records), lap time = 0.695
[2025-03-08 21:49:39] pool-1-thread-4 - 5000 records committed(current total 235000 records), lap time = 0.634
[2025-03-08 21:49:39] pool-1-thread-1 - 5000 records committed(current total 235000 records), lap time = 0.675
[2025-03-08 21:49:40] pool-1-thread-8 - 5000 records committed(current total 235000 records), lap time = 0.696
[2025-03-08 21:49:40] pool-1-thread-9 - 5000 records committed(current total 240000 records), lap time = 0.700
[2025-03-08 21:49:40] pool-1-thread-6 - 5000 records committed(current total 235000 records), lap time = 0.707
[2025-03-08 21:49:40] pool-1-thread-2 - 5000 records committed(current total 240000 records), lap time = 0.720
[2025-03-08 21:49:40] pool-1-thread-5 - 5000 records committed(current total 235000 records), lap time = 0.736
[2025-03-08 21:49:40] pool-1-thread-7 - 5000 records committed(current total 240000 records), lap time = 0.743
[2025-03-08 21:49:40] pool-1-thread-3 - 5000 records committed(current total 235000 records), lap time = 0.750
[2025-03-08 21:49:40] pool-1-thread-10 - 5000 records committed(current total 235000 records), lap time = 0.758
[2025-03-08 21:49:40] pool-1-thread-4 - 5000 records committed(current total 240000 records), lap time = 0.624
[2025-03-08 21:49:40] pool-1-thread-1 - 5000 records committed(current total 240000 records), lap time = 0.614
[2025-03-08 21:49:40] pool-1-thread-8 - 5000 records committed(current total 240000 records), lap time = 0.614
[2025-03-08 21:49:40] pool-1-thread-9 - 5000 records committed(current total 245000 records), lap time = 0.613
[2025-03-08 21:49:40] pool-1-thread-6 - 5000 records committed(current total 240000 records), lap time = 0.605
[2025-03-08 21:49:40] pool-1-thread-2 - 5000 records committed(current total 245000 records), lap time = 0.597
[2025-03-08 21:49:40] pool-1-thread-5 - 5000 records committed(current total 240000 records), lap time = 0.591
[2025-03-08 21:49:40] pool-1-thread-7 - 5000 records committed(current total 245000 records), lap time = 0.591
[2025-03-08 21:49:40] pool-1-thread-3 - 5000 records committed(current total 240000 records), lap time = 0.593
[2025-03-08 21:49:40] pool-1-thread-10 - 5000 records committed(current total 240000 records), lap time = 0.590
[2025-03-08 21:49:41] pool-1-thread-4 - 5000 records committed(current total 245000 records), lap time = 0.782
[2025-03-08 21:49:41] pool-1-thread-1 - 5000 records committed(current total 245000 records), lap time = 0.766
[2025-03-08 21:49:41] pool-1-thread-8 - 5000 records committed(current total 245000 records), lap time = 0.765
[2025-03-08 21:49:41] pool-1-thread-9 - 5000 records committed(current total 250000 records), lap time = 0.766
[2025-03-08 21:49:41] pool-1-thread-5 - 5000 records committed(current total 245000 records), lap time = 0.757
[2025-03-08 21:49:41] pool-1-thread-2 - 5000 records committed(current total 250000 records), lap time = 1.039
[2025-03-08 21:49:41] pool-1-thread-5 - 5000 records committed(current total 250000 records), lap time = 0.326
[2025-03-08 21:49:41] pool-1-thread-3 - 5000 records committed(current total 245000 records), lap time = 1.068
[2025-03-08 21:49:41] pool-1-thread-4 - 5000 records committed(current total 250000 records), lap time = 0.489
[2025-03-08 21:49:41] pool-1-thread-10 - 5000 records committed(current total 245000 records), lap time = 1.064
[2025-03-08 21:49:41] pool-1-thread-6 - 5000 records committed(current total 245000 records), lap time = 1.099
[2025-03-08 21:49:41] pool-1-thread-7 - 5000 records committed(current total 250000 records), lap time = 1.077
[2025-03-08 21:49:41] pool-1-thread-1 - 5000 records committed(current total 250000 records), lap time = 0.365
[2025-03-08 21:49:41] pool-1-thread-8 - 5000 records committed(current total 250000 records), lap time = 0.352
[2025-03-08 21:49:41] pool-1-thread-9 - 5000 records committed(current total 255000 records), lap time = 0.340
[2025-03-08 21:49:42] pool-1-thread-2 - 5000 records committed(current total 255000 records), lap time = 0.589
[2025-03-08 21:49:42] pool-1-thread-3 - 5000 records committed(current total 250000 records), lap time = 0.693
[2025-03-08 21:49:42] pool-1-thread-5 - 5000 records committed(current total 255000 records), lap time = 0.705
[2025-03-08 21:49:42] pool-1-thread-9 - 5000 records committed(current total 260000 records), lap time = 0.705
[2025-03-08 21:49:42] pool-1-thread-8 - 5000 records committed(current total 255000 records), lap time = 0.705
[2025-03-08 21:49:42] pool-1-thread-1 - 5000 records committed(current total 255000 records), lap time = 0.711
[2025-03-08 21:49:42] pool-1-thread-10 - 5000 records committed(current total 250000 records), lap time = 0.711
[2025-03-08 21:49:42] pool-1-thread-4 - 5000 records committed(current total 255000 records), lap time = 0.711
[2025-03-08 21:49:42] pool-1-thread-7 - 5000 records committed(current total 255000 records), lap time = 0.711
[2025-03-08 21:49:42] pool-1-thread-6 - 5000 records committed(current total 250000 records), lap time = 0.717
[2025-03-08 21:49:42] pool-1-thread-2 - 5000 records committed(current total 260000 records), lap time = 0.711
[2025-03-08 21:49:43] pool-1-thread-3 - 5000 records committed(current total 255000 records), lap time = 0.691
[2025-03-08 21:49:43] pool-1-thread-5 - 5000 records committed(current total 260000 records), lap time = 0.700
[2025-03-08 21:49:43] pool-1-thread-8 - 5000 records committed(current total 260000 records), lap time = 0.707
[2025-03-08 21:49:43] pool-1-thread-9 - 5000 records committed(current total 265000 records), lap time = 0.717
[2025-03-08 21:49:43] pool-1-thread-7 - 5000 records committed(current total 260000 records), lap time = 0.723
[2025-03-08 21:49:43] pool-1-thread-4 - 5000 records committed(current total 260000 records), lap time = 0.732
[2025-03-08 21:49:43] pool-1-thread-10 - 5000 records committed(current total 255000 records), lap time = 0.743
[2025-03-08 21:49:43] pool-1-thread-6 - 5000 records committed(current total 255000 records), lap time = 0.744
[2025-03-08 21:49:43] pool-1-thread-1 - 5000 records committed(current total 260000 records), lap time = 0.757
[2025-03-08 21:49:43] pool-1-thread-2 - 5000 records committed(current total 265000 records), lap time = 0.631
[2025-03-08 21:49:43] pool-1-thread-3 - 5000 records committed(current total 260000 records), lap time = 0.711
[2025-03-08 21:49:43] pool-1-thread-5 - 5000 records committed(current total 265000 records), lap time = 0.702
[2025-03-08 21:49:43] pool-1-thread-9 - 5000 records committed(current total 270000 records), lap time = 0.692
[2025-03-08 21:49:43] pool-1-thread-8 - 5000 records committed(current total 265000 records), lap time = 0.712
[2025-03-08 21:49:43] pool-1-thread-7 - 5000 records committed(current total 265000 records), lap time = 0.691
[2025-03-08 21:49:43] pool-1-thread-10 - 5000 records committed(current total 260000 records), lap time = 0.681
[2025-03-08 21:49:43] pool-1-thread-4 - 5000 records committed(current total 265000 records), lap time = 0.702
[2025-03-08 21:49:43] pool-1-thread-6 - 5000 records committed(current total 260000 records), lap time = 0.683
[2025-03-08 21:49:43] pool-1-thread-1 - 5000 records committed(current total 265000 records), lap time = 0.709
[2025-03-08 21:49:44] pool-1-thread-2 - 5000 records committed(current total 270000 records), lap time = 0.922
[2025-03-08 21:49:44] pool-1-thread-7 - 5000 records committed(current total 270000 records), lap time = 0.715
[2025-03-08 21:49:44] pool-1-thread-10 - 5000 records committed(current total 265000 records), lap time = 0.706
[2025-03-08 21:49:44] pool-1-thread-5 - 5000 records committed(current total 270000 records), lap time = 0.733
[2025-03-08 21:49:44] pool-1-thread-8 - 5000 records committed(current total 270000 records), lap time = 0.715
[2025-03-08 21:49:44] pool-1-thread-6 - 5000 records committed(current total 265000 records), lap time = 0.696
[2025-03-08 21:49:44] pool-1-thread-9 - 5000 records committed(current total 275000 records), lap time = 0.726
[2025-03-08 21:49:44] pool-1-thread-4 - 5000 records committed(current total 270000 records), lap time = 0.696
[2025-03-08 21:49:44] pool-1-thread-1 - 5000 records committed(current total 270000 records), lap time = 0.664
[2025-03-08 21:49:44] pool-1-thread-3 - 5000 records committed(current total 265000 records), lap time = 0.746
[2025-03-08 21:49:45] pool-1-thread-2 - 5000 records committed(current total 275000 records), lap time = 0.728
[2025-03-08 21:49:45] pool-1-thread-7 - 5000 records committed(current total 275000 records), lap time = 0.781
[2025-03-08 21:49:45] pool-1-thread-10 - 5000 records committed(current total 270000 records), lap time = 0.793
[2025-03-08 21:49:45] pool-1-thread-6 - 5000 records committed(current total 270000 records), lap time = 0.793
[2025-03-08 21:49:45] pool-1-thread-4 - 5000 records committed(current total 275000 records), lap time = 0.792
[2025-03-08 21:49:45] pool-1-thread-5 - 5000 records committed(current total 275000 records), lap time = 0.793
[2025-03-08 21:49:45] pool-1-thread-9 - 5000 records committed(current total 280000 records), lap time = 0.792
[2025-03-08 21:49:45] pool-1-thread-1 - 5000 records committed(current total 275000 records), lap time = 0.792
[2025-03-08 21:49:45] pool-1-thread-3 - 5000 records committed(current total 270000 records), lap time = 0.799
[2025-03-08 21:49:45] pool-1-thread-8 - 5000 records committed(current total 275000 records), lap time = 0.800
[2025-03-08 21:49:45] pool-1-thread-2 - 5000 records committed(current total 280000 records), lap time = 0.563
[2025-03-08 21:49:45] pool-1-thread-7 - 5000 records committed(current total 280000 records), lap time = 0.531
[2025-03-08 21:49:45] pool-1-thread-9 - 5000 records committed(current total 285000 records), lap time = 0.530
[2025-03-08 21:49:45] pool-1-thread-4 - 5000 records committed(current total 280000 records), lap time = 0.543
[2025-03-08 21:49:45] pool-1-thread-1 - 5000 records committed(current total 280000 records), lap time = 0.554
[2025-03-08 21:49:45] pool-1-thread-3 - 5000 records committed(current total 275000 records), lap time = 0.558
[2025-03-08 21:49:45] pool-1-thread-6 - 5000 records committed(current total 275000 records), lap time = 0.565
[2025-03-08 21:49:45] pool-1-thread-10 - 5000 records committed(current total 275000 records), lap time = 0.565
[2025-03-08 21:49:45] pool-1-thread-8 - 5000 records committed(current total 280000 records), lap time = 0.558
[2025-03-08 21:49:45] pool-1-thread-5 - 5000 records committed(current total 280000 records), lap time = 0.565
[2025-03-08 21:49:46] pool-1-thread-2 - 5000 records committed(current total 285000 records), lap time = 0.472
[2025-03-08 21:49:46] pool-1-thread-7 - 5000 records committed(current total 285000 records), lap time = 0.492
[2025-03-08 21:49:46] pool-1-thread-9 - 5000 records committed(current total 290000 records), lap time = 0.534
[2025-03-08 21:49:46] pool-1-thread-4 - 5000 records committed(current total 285000 records), lap time = 0.547
[2025-03-08 21:49:46] pool-1-thread-8 - 5000 records committed(current total 285000 records), lap time = 0.560
[2025-03-08 21:49:46] pool-1-thread-3 - 5000 records committed(current total 280000 records), lap time = 0.568
[2025-03-08 21:49:46] pool-1-thread-1 - 5000 records committed(current total 285000 records), lap time = 0.584
[2025-03-08 21:49:46] pool-1-thread-10 - 5000 records committed(current total 280000 records), lap time = 0.580
[2025-03-08 21:49:46] pool-1-thread-5 - 5000 records committed(current total 285000 records), lap time = 0.587
[2025-03-08 21:49:46] pool-1-thread-6 - 5000 records committed(current total 280000 records), lap time = 0.594
[2025-03-08 21:49:46] pool-1-thread-2 - 5000 records committed(current total 290000 records), lap time = 0.604
[2025-03-08 21:49:47] pool-1-thread-7 - 5000 records committed(current total 290000 records), lap time = 0.648
[2025-03-08 21:49:47] pool-1-thread-9 - 5000 records committed(current total 295000 records), lap time = 0.843
[2025-03-08 21:49:47] pool-1-thread-4 - 5000 records committed(current total 290000 records), lap time = 0.839
[2025-03-08 21:49:47] pool-1-thread-5 - 5000 records committed(current total 290000 records), lap time = 0.777
[2025-03-08 21:49:47] pool-1-thread-1 - 5000 records committed(current total 290000 records), lap time = 0.790
[2025-03-08 21:49:47] pool-1-thread-6 - 5000 records committed(current total 285000 records), lap time = 0.769
[2025-03-08 21:49:47] pool-1-thread-3 - 5000 records committed(current total 285000 records), lap time = 0.795
[2025-03-08 21:49:47] pool-1-thread-2 - 5000 records committed(current total 295000 records), lap time = 0.394
[2025-03-08 21:49:47] pool-1-thread-8 - 5000 records committed(current total 290000 records), lap time = 0.804
[2025-03-08 21:49:47] pool-1-thread-10 - 5000 records committed(current total 285000 records), lap time = 0.784
[2025-03-08 21:49:47] pool-1-thread-7 - 5000 records committed(current total 295000 records), lap time = 0.363
[2025-03-08 21:49:48] pool-1-thread-9 - 5000 records committed(current total 300000 records), lap time = 0.733
[2025-03-08 21:49:48] pool-1-thread-4 - 5000 records committed(current total 295000 records), lap time = 0.802
[2025-03-08 21:49:48] pool-1-thread-8 - 5000 records committed(current total 295000 records), lap time = 0.809
[2025-03-08 21:49:48] pool-1-thread-6 - 5000 records committed(current total 290000 records), lap time = 0.816
[2025-03-08 21:49:48] pool-1-thread-2 - 5000 records committed(current total 300000 records), lap time = 0.831
[2025-03-08 21:49:48] pool-1-thread-3 - 5000 records committed(current total 290000 records), lap time = 0.838
[2025-03-08 21:49:48] pool-1-thread-1 - 5000 records committed(current total 295000 records), lap time = 0.844
[2025-03-08 21:49:48] pool-1-thread-10 - 5000 records committed(current total 290000 records), lap time = 0.856
[2025-03-08 21:49:48] pool-1-thread-5 - 5000 records committed(current total 295000 records), lap time = 0.856
[2025-03-08 21:49:48] pool-1-thread-7 - 5000 records committed(current total 300000 records), lap time = 0.823
[2025-03-08 21:49:48] pool-1-thread-9 - 5000 records committed(current total 305000 records), lap time = 0.590
[2025-03-08 21:49:48] pool-1-thread-4 - 5000 records committed(current total 300000 records), lap time = 0.616
[2025-03-08 21:49:48] pool-1-thread-6 - 5000 records committed(current total 295000 records), lap time = 0.630
[2025-03-08 21:49:48] pool-1-thread-8 - 5000 records committed(current total 300000 records), lap time = 0.660
[2025-03-08 21:49:48] pool-1-thread-1 - 5000 records committed(current total 300000 records), lap time = 0.632
[2025-03-08 21:49:48] pool-1-thread-2 - 5000 records committed(current total 305000 records), lap time = 0.654
[2025-03-08 21:49:48] pool-1-thread-5 - 5000 records committed(current total 300000 records), lap time = 0.639
[2025-03-08 21:49:48] pool-1-thread-3 - 5000 records committed(current total 295000 records), lap time = 0.664
[2025-03-08 21:49:48] pool-1-thread-10 - 5000 records committed(current total 295000 records), lap time = 0.654
[2025-03-08 21:49:48] pool-1-thread-7 - 5000 records committed(current total 305000 records), lap time = 0.721
[2025-03-08 21:49:49] pool-1-thread-9 - 5000 records committed(current total 310000 records), lap time = 0.791
[2025-03-08 21:49:49] pool-1-thread-4 - 5000 records committed(current total 305000 records), lap time = 0.748
[2025-03-08 21:49:49] pool-1-thread-6 - 5000 records committed(current total 300000 records), lap time = 0.740
[2025-03-08 21:49:49] pool-1-thread-8 - 5000 records committed(current total 305000 records), lap time = 0.724
[2025-03-08 21:49:49] pool-1-thread-1 - 5000 records committed(current total 305000 records), lap time = 0.722
[2025-03-08 21:49:49] pool-1-thread-2 - 5000 records committed(current total 310000 records), lap time = 0.730
[2025-03-08 21:49:49] pool-1-thread-5 - 5000 records committed(current total 305000 records), lap time = 0.736
[2025-03-08 21:49:49] pool-1-thread-3 - 5000 records committed(current total 300000 records), lap time = 0.736
[2025-03-08 21:49:49] pool-1-thread-10 - 5000 records committed(current total 300000 records), lap time = 0.728
[2025-03-08 21:49:49] pool-1-thread-7 - 5000 records committed(current total 310000 records), lap time = 0.676
[2025-03-08 21:49:50] pool-1-thread-9 - 5000 records committed(current total 315000 records), lap time = 0.745
[2025-03-08 21:49:50] pool-1-thread-4 - 5000 records committed(current total 310000 records), lap time = 0.742
[2025-03-08 21:49:50] pool-1-thread-6 - 5000 records committed(current total 305000 records), lap time = 0.728
[2025-03-08 21:49:50] pool-1-thread-1 - 5000 records committed(current total 310000 records), lap time = 0.720
[2025-03-08 21:49:50] pool-1-thread-8 - 5000 records committed(current total 310000 records), lap time = 0.736
[2025-03-08 21:49:50] pool-1-thread-2 - 5000 records committed(current total 315000 records), lap time = 0.728
[2025-03-08 21:49:50] pool-1-thread-5 - 5000 records committed(current total 310000 records), lap time = 0.737
[2025-03-08 21:49:50] pool-1-thread-10 - 5000 records committed(current total 305000 records), lap time = 0.743
[2025-03-08 21:49:50] pool-1-thread-3 - 5000 records committed(current total 305000 records), lap time = 0.751
[2025-03-08 21:49:50] pool-1-thread-7 - 5000 records committed(current total 315000 records), lap time = 0.740
[2025-03-08 21:49:50] pool-1-thread-9 - 5000 records committed(current total 320000 records), lap time = 0.451
[2025-03-08 21:49:50] pool-1-thread-4 - 5000 records committed(current total 315000 records), lap time = 0.504
[2025-03-08 21:49:50] pool-1-thread-8 - 5000 records committed(current total 315000 records), lap time = 0.485
[2025-03-08 21:49:50] pool-1-thread-6 - 5000 records committed(current total 310000 records), lap time = 0.518
[2025-03-08 21:49:50] pool-1-thread-2 - 5000 records committed(current total 320000 records), lap time = 0.504
[2025-03-08 21:49:50] pool-1-thread-1 - 5000 records committed(current total 315000 records), lap time = 0.527
[2025-03-08 21:49:50] pool-1-thread-5 - 5000 records committed(current total 315000 records), lap time = 0.533
[2025-03-08 21:49:50] pool-1-thread-10 - 5000 records committed(current total 310000 records), lap time = 0.569
[2025-03-08 21:49:50] pool-1-thread-3 - 5000 records committed(current total 310000 records), lap time = 0.567
[2025-03-08 21:49:50] pool-1-thread-7 - 5000 records committed(current total 320000 records), lap time = 0.596
[2025-03-08 21:49:51] pool-1-thread-9 - 5000 records committed(current total 325000 records), lap time = 0.989
[2025-03-08 21:49:51] pool-1-thread-2 - 5000 records committed(current total 325000 records), lap time = 0.866
[2025-03-08 21:49:51] pool-1-thread-1 - 5000 records committed(current total 320000 records), lap time = 0.866
[2025-03-08 21:49:51] pool-1-thread-6 - 5000 records committed(current total 315000 records), lap time = 0.881
[2025-03-08 21:49:51] pool-1-thread-5 - 5000 records committed(current total 320000 records), lap time = 0.812
[2025-03-08 21:49:51] pool-1-thread-10 - 5000 records committed(current total 315000 records), lap time = 0.763
[2025-03-08 21:49:51] pool-1-thread-3 - 5000 records committed(current total 315000 records), lap time = 0.758
[2025-03-08 21:49:51] pool-1-thread-7 - 5000 records committed(current total 325000 records), lap time = 0.664
[2025-03-08 21:49:51] pool-1-thread-8 - 5000 records committed(current total 320000 records), lap time = 0.900
[2025-03-08 21:49:51] pool-1-thread-4 - 5000 records committed(current total 320000 records), lap time = 0.901
[2025-03-08 21:49:52] pool-1-thread-9 - 5000 records committed(current total 330000 records), lap time = 0.690
[2025-03-08 21:49:52] pool-1-thread-8 - 5000 records committed(current total 325000 records), lap time = 0.719
[2025-03-08 21:49:52] pool-1-thread-4 - 5000 records committed(current total 325000 records), lap time = 0.725
[2025-03-08 21:49:52] pool-1-thread-5 - 5000 records committed(current total 325000 records), lap time = 0.725
[2025-03-08 21:49:52] pool-1-thread-1 - 5000 records committed(current total 325000 records), lap time = 0.732
[2025-03-08 21:49:52] pool-1-thread-10 - 5000 records committed(current total 320000 records), lap time = 0.732
[2025-03-08 21:49:52] pool-1-thread-2 - 5000 records committed(current total 330000 records), lap time = 0.732
[2025-03-08 21:49:52] pool-1-thread-3 - 5000 records committed(current total 320000 records), lap time = 0.747
[2025-03-08 21:49:52] pool-1-thread-7 - 5000 records committed(current total 330000 records), lap time = 0.747
[2025-03-08 21:49:52] pool-1-thread-6 - 5000 records committed(current total 320000 records), lap time = 0.747
[2025-03-08 21:49:52] pool-1-thread-9 - 5000 records committed(current total 335000 records), lap time = 0.591
[2025-03-08 21:49:52] pool-1-thread-8 - 5000 records committed(current total 330000 records), lap time = 0.562
[2025-03-08 21:49:52] pool-1-thread-5 - 5000 records committed(current total 330000 records), lap time = 0.565
[2025-03-08 21:49:52] pool-1-thread-4 - 5000 records committed(current total 330000 records), lap time = 0.576
[2025-03-08 21:49:52] pool-1-thread-1 - 5000 records committed(current total 330000 records), lap time = 0.581
[2025-03-08 21:49:52] pool-1-thread-10 - 5000 records committed(current total 325000 records), lap time = 0.586
[2025-03-08 21:49:52] pool-1-thread-2 - 5000 records committed(current total 335000 records), lap time = 0.596
[2025-03-08 21:49:52] pool-1-thread-7 - 5000 records committed(current total 335000 records), lap time = 0.589
[2025-03-08 21:49:52] pool-1-thread-6 - 5000 records committed(current total 325000 records), lap time = 0.594
[2025-03-08 21:49:52] pool-1-thread-3 - 5000 records committed(current total 325000 records), lap time = 0.602
[2025-03-08 21:49:53] pool-1-thread-9 - 5000 records committed(current total 340000 records), lap time = 0.537
[2025-03-08 21:49:53] pool-1-thread-5 - 5000 records committed(current total 335000 records), lap time = 0.540
[2025-03-08 21:49:53] pool-1-thread-8 - 5000 records committed(current total 335000 records), lap time = 0.557
[2025-03-08 21:49:53] pool-1-thread-1 - 5000 records committed(current total 335000 records), lap time = 0.531
[2025-03-08 21:49:53] pool-1-thread-4 - 5000 records committed(current total 335000 records), lap time = 0.550
[2025-03-08 21:49:53] pool-1-thread-10 - 5000 records committed(current total 330000 records), lap time = 0.531
[2025-03-08 21:49:53] pool-1-thread-7 - 5000 records committed(current total 340000 records), lap time = 0.524
[2025-03-08 21:49:53] pool-1-thread-3 - 5000 records committed(current total 330000 records), lap time = 0.511
[2025-03-08 21:49:53] pool-1-thread-2 - 5000 records committed(current total 340000 records), lap time = 0.532
[2025-03-08 21:49:53] pool-1-thread-6 - 5000 records committed(current total 330000 records), lap time = 0.519
[2025-03-08 21:49:54] pool-1-thread-9 - 5000 records committed(current total 345000 records), lap time = 0.635
[2025-03-08 21:49:54] pool-1-thread-5 - 5000 records committed(current total 340000 records), lap time = 0.644
[2025-03-08 21:49:54] pool-1-thread-8 - 5000 records committed(current total 340000 records), lap time = 0.860
[2025-03-08 21:49:54] pool-1-thread-9 - 5000 records committed(current total 350000 records), lap time = 0.311
[2025-03-08 21:49:54] pool-1-thread-1 - 5000 records committed(current total 340000 records), lap time = 0.883
[2025-03-08 21:49:54] pool-1-thread-10 - 5000 records committed(current total 335000 records), lap time = 0.876
[2025-03-08 21:49:54] pool-1-thread-7 - 5000 records committed(current total 345000 records), lap time = 0.866
[2025-03-08 21:49:54] pool-1-thread-6 - 5000 records committed(current total 335000 records), lap time = 0.866
[2025-03-08 21:49:54] pool-1-thread-2 - 5000 records committed(current total 345000 records), lap time = 0.866
[2025-03-08 21:49:54] pool-1-thread-5 - 5000 records committed(current total 345000 records), lap time = 0.254
[2025-03-08 21:49:54] pool-1-thread-3 - 5000 records committed(current total 335000 records), lap time = 0.866
[2025-03-08 21:49:54] pool-1-thread-4 - 5000 records committed(current total 340000 records), lap time = 0.876
[2025-03-08 21:49:55] pool-1-thread-8 - 5000 records committed(current total 345000 records), lap time = 0.748
[2025-03-08 21:49:55] pool-1-thread-9 - 5000 records committed(current total 355000 records), lap time = 0.797
[2025-03-08 21:49:55] pool-1-thread-5 - 5000 records committed(current total 350000 records), lap time = 0.803
[2025-03-08 21:49:55] pool-1-thread-6 - 5000 records committed(current total 340000 records), lap time = 0.809
[2025-03-08 21:49:55] pool-1-thread-4 - 5000 records committed(current total 345000 records), lap time = 0.818
[2025-03-08 21:49:55] pool-1-thread-1 - 5000 records committed(current total 345000 records), lap time = 0.818
[2025-03-08 21:49:55] pool-1-thread-7 - 5000 records committed(current total 350000 records), lap time = 0.818
[2025-03-08 21:49:55] pool-1-thread-3 - 5000 records committed(current total 340000 records), lap time = 0.818
[2025-03-08 21:49:55] pool-1-thread-2 - 5000 records committed(current total 350000 records), lap time = 0.824
[2025-03-08 21:49:55] pool-1-thread-10 - 5000 records committed(current total 340000 records), lap time = 0.824
[2025-03-08 21:49:55] pool-1-thread-8 - 5000 records committed(current total 350000 records), lap time = 0.575
[2025-03-08 21:49:55] pool-1-thread-9 - 5000 records committed(current total 360000 records), lap time = 0.637
[2025-03-08 21:49:55] pool-1-thread-5 - 5000 records committed(current total 355000 records), lap time = 0.658
[2025-03-08 21:49:55] pool-1-thread-6 - 5000 records committed(current total 345000 records), lap time = 0.662
[2025-03-08 21:49:55] pool-1-thread-2 - 5000 records committed(current total 355000 records), lap time = 0.692
[2025-03-08 21:49:55] pool-1-thread-4 - 5000 records committed(current total 350000 records), lap time = 0.707
[2025-03-08 21:49:55] pool-1-thread-1 - 5000 records committed(current total 350000 records), lap time = 0.722
[2025-03-08 21:49:55] pool-1-thread-7 - 5000 records committed(current total 355000 records), lap time = 0.722
[2025-03-08 21:49:55] pool-1-thread-10 - 5000 records committed(current total 345000 records), lap time = 0.716
[2025-03-08 21:49:55] pool-1-thread-3 - 5000 records committed(current total 345000 records), lap time = 0.726
[2025-03-08 21:49:56] pool-1-thread-8 - 5000 records committed(current total 355000 records), lap time = 0.802
[2025-03-08 21:49:56] pool-1-thread-9 - 5000 records committed(current total 365000 records), lap time = 0.673
[2025-03-08 21:49:56] pool-1-thread-5 - 5000 records committed(current total 360000 records), lap time = 0.663
[2025-03-08 21:49:56] pool-1-thread-6 - 5000 records committed(current total 350000 records), lap time = 0.683
[2025-03-08 21:49:56] pool-1-thread-1 - 5000 records committed(current total 355000 records), lap time = 0.642
[2025-03-08 21:49:56] pool-1-thread-2 - 5000 records committed(current total 360000 records), lap time = 0.679
[2025-03-08 21:49:56] pool-1-thread-3 - 5000 records committed(current total 350000 records), lap time = 0.668
[2025-03-08 21:49:56] pool-1-thread-7 - 5000 records committed(current total 360000 records), lap time = 0.672
[2025-03-08 21:49:56] pool-1-thread-4 - 5000 records committed(current total 355000 records), lap time = 0.687
[2025-03-08 21:49:56] pool-1-thread-10 - 5000 records committed(current total 350000 records), lap time = 0.676
[2025-03-08 21:49:57] pool-1-thread-8 - 5000 records committed(current total 360000 records), lap time = 0.738
[2025-03-08 21:49:57] pool-1-thread-5 - 5000 records committed(current total 365000 records), lap time = 0.726
[2025-03-08 21:49:57] pool-1-thread-9 - 5000 records committed(current total 370000 records), lap time = 0.749
[2025-03-08 21:49:57] pool-1-thread-6 - 5000 records committed(current total 355000 records), lap time = 0.710
[2025-03-08 21:49:57] pool-1-thread-1 - 5000 records committed(current total 360000 records), lap time = 0.726
[2025-03-08 21:49:57] pool-1-thread-2 - 5000 records committed(current total 365000 records), lap time = 0.736
[2025-03-08 21:49:57] pool-1-thread-7 - 5000 records committed(current total 365000 records), lap time = 0.752
[2025-03-08 21:49:57] pool-1-thread-10 - 5000 records committed(current total 355000 records), lap time = 0.754
[2025-03-08 21:49:57] pool-1-thread-4 - 5000 records committed(current total 360000 records), lap time = 0.758
[2025-03-08 21:49:57] pool-1-thread-3 - 5000 records committed(current total 355000 records), lap time = 0.765
[2025-03-08 21:49:57] pool-1-thread-8 - 5000 records committed(current total 365000 records), lap time = 0.736
[2025-03-08 21:49:57] pool-1-thread-9 - 5000 records committed(current total 375000 records), lap time = 0.720
[2025-03-08 21:49:57] pool-1-thread-5 - 5000 records committed(current total 370000 records), lap time = 0.753
[2025-03-08 21:49:57] pool-1-thread-6 - 5000 records committed(current total 360000 records), lap time = 0.766
[2025-03-08 21:49:58] pool-1-thread-1 - 5000 records committed(current total 365000 records), lap time = 0.767
[2025-03-08 21:49:58] pool-1-thread-2 - 5000 records committed(current total 370000 records), lap time = 0.763
[2025-03-08 21:49:58] pool-1-thread-4 - 5000 records committed(current total 365000 records), lap time = 0.759
[2025-03-08 21:49:58] pool-1-thread-7 - 5000 records committed(current total 370000 records), lap time = 0.776
[2025-03-08 21:49:58] pool-1-thread-3 - 5000 records committed(current total 360000 records), lap time = 0.774
[2025-03-08 21:49:58] pool-1-thread-10 - 5000 records committed(current total 360000 records), lap time = 0.781
[2025-03-08 21:49:58] pool-1-thread-8 - 5000 records committed(current total 370000 records), lap time = 0.728
[2025-03-08 21:49:58] pool-1-thread-5 - 5000 records committed(current total 375000 records), lap time = 0.705
[2025-03-08 21:49:58] pool-1-thread-9 - 5000 records committed(current total 380000 records), lap time = 0.732
[2025-03-08 21:49:58] pool-1-thread-6 - 5000 records committed(current total 365000 records), lap time = 0.729
[2025-03-08 21:49:58] pool-1-thread-2 - 5000 records committed(current total 375000 records), lap time = 0.695
[2025-03-08 21:49:58] pool-1-thread-1 - 5000 records committed(current total 370000 records), lap time = 0.772
[2025-03-08 21:49:58] pool-1-thread-7 - 5000 records committed(current total 375000 records), lap time = 0.774
[2025-03-08 21:49:58] pool-1-thread-4 - 5000 records committed(current total 370000 records), lap time = 0.813
[2025-03-08 21:49:58] pool-1-thread-3 - 5000 records committed(current total 365000 records), lap time = 0.800
[2025-03-08 21:49:58] pool-1-thread-10 - 5000 records committed(current total 365000 records), lap time = 0.805
[2025-03-08 21:49:59] pool-1-thread-8 - 5000 records committed(current total 375000 records), lap time = 0.785
[2025-03-08 21:49:59] pool-1-thread-5 - 5000 records committed(current total 380000 records), lap time = 0.784
[2025-03-08 21:49:59] pool-1-thread-9 - 5000 records committed(current total 385000 records), lap time = 0.792
[2025-03-08 21:49:59] pool-1-thread-6 - 5000 records committed(current total 370000 records), lap time = 0.765
[2025-03-08 21:49:59] pool-1-thread-2 - 5000 records committed(current total 380000 records), lap time = 0.743
[2025-03-08 21:49:59] pool-1-thread-1 - 5000 records committed(current total 375000 records), lap time = 0.697
[2025-03-08 21:49:59] pool-1-thread-7 - 5000 records committed(current total 380000 records), lap time = 0.637
[2025-03-08 21:49:59] pool-1-thread-3 - 5000 records committed(current total 370000 records), lap time = 0.640
[2025-03-08 21:49:59] pool-1-thread-4 - 5000 records committed(current total 375000 records), lap time = 0.660
[2025-03-08 21:49:59] pool-1-thread-10 - 5000 records committed(current total 370000 records), lap time = 0.652
[2025-03-08 21:50:00] pool-1-thread-5 - 5000 records committed(current total 385000 records), lap time = 0.613
[2025-03-08 21:50:00] pool-1-thread-8 - 5000 records committed(current total 380000 records), lap time = 0.636
[2025-03-08 21:50:00] pool-1-thread-9 - 5000 records committed(current total 390000 records), lap time = 0.625
[2025-03-08 21:50:00] pool-1-thread-6 - 5000 records committed(current total 375000 records), lap time = 0.615
[2025-03-08 21:50:00] pool-1-thread-2 - 5000 records committed(current total 385000 records), lap time = 0.643
[2025-03-08 21:50:00] pool-1-thread-1 - 5000 records committed(current total 380000 records), lap time = 0.650
[2025-03-08 21:50:00] pool-1-thread-7 - 5000 records committed(current total 385000 records), lap time = 0.675
[2025-03-08 21:50:00] pool-1-thread-3 - 5000 records committed(current total 375000 records), lap time = 0.649
[2025-03-08 21:50:00] pool-1-thread-4 - 5000 records committed(current total 380000 records), lap time = 0.655
[2025-03-08 21:50:00] pool-1-thread-10 - 5000 records committed(current total 375000 records), lap time = 0.664
[2025-03-08 21:50:00] pool-1-thread-5 - 5000 records committed(current total 390000 records), lap time = 0.605
[2025-03-08 21:50:00] pool-1-thread-8 - 5000 records committed(current total 385000 records), lap time = 0.692
[2025-03-08 21:50:00] pool-1-thread-9 - 5000 records committed(current total 395000 records), lap time = 0.699
[2025-03-08 21:50:00] pool-1-thread-6 - 5000 records committed(current total 380000 records), lap time = 0.707
[2025-03-08 21:50:00] pool-1-thread-2 - 5000 records committed(current total 390000 records), lap time = 0.714
[2025-03-08 21:50:00] pool-1-thread-1 - 5000 records committed(current total 385000 records), lap time = 0.702
[2025-03-08 21:50:00] pool-1-thread-7 - 5000 records committed(current total 390000 records), lap time = 0.687
[2025-03-08 21:50:00] pool-1-thread-3 - 5000 records committed(current total 380000 records), lap time = 0.685
[2025-03-08 21:50:00] pool-1-thread-10 - 5000 records committed(current total 380000 records), lap time = 0.670
[2025-03-08 21:50:00] pool-1-thread-4 - 5000 records committed(current total 385000 records), lap time = 0.694
[2025-03-08 21:50:01] pool-1-thread-5 - 5000 records committed(current total 395000 records), lap time = 0.760
[2025-03-08 21:50:01] pool-1-thread-3 - 5000 records committed(current total 385000 records), lap time = 0.593
[2025-03-08 21:50:01] pool-1-thread-8 - 5000 records committed(current total 390000 records), lap time = 0.705
[2025-03-08 21:50:01] pool-1-thread-2 - 5000 records committed(current total 395000 records), lap time = 0.627
[2025-03-08 21:50:01] pool-1-thread-9 - 5000 records committed(current total 400000 records), lap time = 0.692
[2025-03-08 21:50:01] pool-1-thread-4 - 5000 records committed(current total 390000 records), lap time = 0.567
[2025-03-08 21:50:01] pool-1-thread-7 - 5000 records committed(current total 395000 records), lap time = 0.605
[2025-03-08 21:50:01] pool-1-thread-6 - 5000 records committed(current total 385000 records), lap time = 0.671
[2025-03-08 21:50:01] pool-1-thread-10 - 5000 records committed(current total 385000 records), lap time = 0.575
[2025-03-08 21:50:01] pool-1-thread-1 - 5000 records committed(current total 390000 records), lap time = 0.621
[2025-03-08 21:50:02] pool-1-thread-5 - 5000 records committed(current total 400000 records), lap time = 0.719
[2025-03-08 21:50:02] pool-1-thread-10 - 5000 records committed(current total 390000 records), lap time = 0.772
[2025-03-08 21:50:02] pool-1-thread-6 - 5000 records committed(current total 390000 records), lap time = 0.780
[2025-03-08 21:50:02] pool-1-thread-2 - 5000 records committed(current total 400000 records), lap time = 0.796
[2025-03-08 21:50:02] pool-1-thread-3 - 5000 records committed(current total 390000 records), lap time = 0.817
[2025-03-08 21:50:02] pool-1-thread-8 - 5000 records committed(current total 395000 records), lap time = 0.817
[2025-03-08 21:50:02] pool-1-thread-4 - 5000 records committed(current total 395000 records), lap time = 0.817
[2025-03-08 21:50:02] pool-1-thread-9 - 5000 records committed(current total 405000 records), lap time = 0.817
[2025-03-08 21:50:02] pool-1-thread-1 - 5000 records committed(current total 395000 records), lap time = 0.817
[2025-03-08 21:50:02] pool-1-thread-7 - 5000 records committed(current total 400000 records), lap time = 0.823
[2025-03-08 21:50:02] pool-1-thread-5 - 5000 records committed(current total 405000 records), lap time = 0.407
[2025-03-08 21:50:02] pool-1-thread-10 - 5000 records committed(current total 395000 records), lap time = 0.360
[2025-03-08 21:50:02] pool-1-thread-6 - 5000 records committed(current total 395000 records), lap time = 0.369
[2025-03-08 21:50:02] pool-1-thread-2 - 5000 records committed(current total 405000 records), lap time = 0.392
[2025-03-08 21:50:02] pool-1-thread-9 - 5000 records committed(current total 410000 records), lap time = 0.442
[2025-03-08 21:50:02] pool-1-thread-3 - 5000 records committed(current total 395000 records), lap time = 0.450
[2025-03-08 21:50:02] pool-1-thread-7 - 5000 records committed(current total 405000 records), lap time = 0.454
[2025-03-08 21:50:02] pool-1-thread-4 - 5000 records committed(current total 400000 records), lap time = 0.479
[2025-03-08 21:50:02] pool-1-thread-1 - 5000 records committed(current total 400000 records), lap time = 0.491
[2025-03-08 21:50:02] pool-1-thread-8 - 5000 records committed(current total 400000 records), lap time = 0.491
[2025-03-08 21:50:03] pool-1-thread-5 - 5000 records committed(current total 410000 records), lap time = 0.610
[2025-03-08 21:50:03] pool-1-thread-10 - 5000 records committed(current total 400000 records), lap time = 0.603
[2025-03-08 21:50:03] pool-1-thread-6 - 5000 records committed(current total 400000 records), lap time = 0.605
[2025-03-08 21:50:03] pool-1-thread-2 - 5000 records committed(current total 410000 records), lap time = 0.574
[2025-03-08 21:50:03] pool-1-thread-9 - 5000 records committed(current total 415000 records), lap time = 0.558
[2025-03-08 21:50:03] pool-1-thread-4 - 5000 records committed(current total 405000 records), lap time = 0.537
[2025-03-08 21:50:03] pool-1-thread-8 - 5000 records committed(current total 405000 records), lap time = 0.549
[2025-03-08 21:50:03] pool-1-thread-1 - 5000 records committed(current total 405000 records), lap time = 0.549
[2025-03-08 21:50:03] pool-1-thread-7 - 5000 records committed(current total 410000 records), lap time = 0.580
[2025-03-08 21:50:03] pool-1-thread-3 - 5000 records committed(current total 400000 records), lap time = 0.590
[2025-03-08 21:50:03] pool-1-thread-5 - 5000 records committed(current total 415000 records), lap time = 0.623
[2025-03-08 21:50:03] pool-1-thread-10 - 5000 records committed(current total 405000 records), lap time = 0.650
[2025-03-08 21:50:03] pool-1-thread-6 - 5000 records committed(current total 405000 records), lap time = 0.706
[2025-03-08 21:50:03] pool-1-thread-2 - 5000 records committed(current total 415000 records), lap time = 0.713
[2025-03-08 21:50:04] pool-1-thread-9 - 5000 records committed(current total 420000 records), lap time = 0.890
[2025-03-08 21:50:04] pool-1-thread-8 - 5000 records committed(current total 410000 records), lap time = 0.896
[2025-03-08 21:50:04] pool-1-thread-4 - 5000 records committed(current total 410000 records), lap time = 0.920
[2025-03-08 21:50:04] pool-1-thread-3 - 5000 records committed(current total 405000 records), lap time = 0.896
[2025-03-08 21:50:04] pool-1-thread-7 - 5000 records committed(current total 415000 records), lap time = 0.896
[2025-03-08 21:50:04] pool-1-thread-1 - 5000 records committed(current total 410000 records), lap time = 0.896
[2025-03-08 21:50:04] pool-1-thread-5 - 5000 records committed(current total 420000 records), lap time = 0.512
[2025-03-08 21:50:04] pool-1-thread-10 - 5000 records committed(current total 410000 records), lap time = 0.464
[2025-03-08 21:50:04] pool-1-thread-2 - 5000 records committed(current total 420000 records), lap time = 0.441
[2025-03-08 21:50:04] pool-1-thread-6 - 5000 records committed(current total 410000 records), lap time = 0.478
[2025-03-08 21:50:04] pool-1-thread-9 - 5000 records committed(current total 425000 records), lap time = 0.767
[2025-03-08 21:50:04] pool-1-thread-8 - 5000 records committed(current total 415000 records), lap time = 0.760
[2025-03-08 21:50:04] pool-1-thread-3 - 5000 records committed(current total 410000 records), lap time = 0.774
[2025-03-08 21:50:04] pool-1-thread-1 - 5000 records committed(current total 415000 records), lap time = 0.773
[2025-03-08 21:50:04] pool-1-thread-7 - 5000 records committed(current total 420000 records), lap time = 0.773
[2025-03-08 21:50:04] pool-1-thread-4 - 5000 records committed(current total 415000 records), lap time = 0.774
[2025-03-08 21:50:05] pool-1-thread-5 - 5000 records committed(current total 425000 records), lap time = 0.744
[2025-03-08 21:50:05] pool-1-thread-10 - 5000 records committed(current total 415000 records), lap time = 0.779
[2025-03-08 21:50:05] pool-1-thread-2 - 5000 records committed(current total 425000 records), lap time = 0.747
[2025-03-08 21:50:05] pool-1-thread-6 - 5000 records committed(current total 415000 records), lap time = 0.737
[2025-03-08 21:50:05] pool-1-thread-9 - 5000 records committed(current total 430000 records), lap time = 0.670
[2025-03-08 21:50:05] pool-1-thread-8 - 5000 records committed(current total 420000 records), lap time = 0.680
[2025-03-08 21:50:05] pool-1-thread-4 - 5000 records committed(current total 420000 records), lap time = 0.676
[2025-03-08 21:50:05] pool-1-thread-1 - 5000 records committed(current total 420000 records), lap time = 0.677
[2025-03-08 21:50:05] pool-1-thread-3 - 5000 records committed(current total 415000 records), lap time = 0.676
[2025-03-08 21:50:05] pool-1-thread-7 - 5000 records committed(current total 425000 records), lap time = 0.676
[2025-03-08 21:50:05] pool-1-thread-5 - 5000 records committed(current total 430000 records), lap time = 0.639
[2025-03-08 21:50:05] pool-1-thread-10 - 5000 records committed(current total 420000 records), lap time = 0.679
[2025-03-08 21:50:05] pool-1-thread-2 - 5000 records committed(current total 430000 records), lap time = 0.718
[2025-03-08 21:50:05] pool-1-thread-6 - 5000 records committed(current total 420000 records), lap time = 0.720
[2025-03-08 21:50:06] pool-1-thread-9 - 5000 records committed(current total 435000 records), lap time = 0.986
[2025-03-08 21:50:06] pool-1-thread-2 - 5000 records committed(current total 435000 records), lap time = 0.783
[2025-03-08 21:50:06] pool-1-thread-6 - 5000 records committed(current total 425000 records), lap time = 0.769
[2025-03-08 21:50:06] pool-1-thread-1 - 5000 records committed(current total 425000 records), lap time = 0.960
[2025-03-08 21:50:06] pool-1-thread-5 - 5000 records committed(current total 435000 records), lap time = 0.953
[2025-03-08 21:50:06] pool-1-thread-4 - 5000 records committed(current total 425000 records), lap time = 0.960
[2025-03-08 21:50:06] pool-1-thread-3 - 5000 records committed(current total 420000 records), lap time = 0.960
[2025-03-08 21:50:06] pool-1-thread-8 - 5000 records committed(current total 425000 records), lap time = 0.971
[2025-03-08 21:50:06] pool-1-thread-7 - 5000 records committed(current total 430000 records), lap time = 0.960
[2025-03-08 21:50:06] pool-1-thread-10 - 5000 records committed(current total 425000 records), lap time = 0.858
[2025-03-08 21:50:07] pool-1-thread-9 - 5000 records committed(current total 440000 records), lap time = 0.645
[2025-03-08 21:50:07] pool-1-thread-5 - 5000 records committed(current total 440000 records), lap time = 0.687
[2025-03-08 21:50:07] pool-1-thread-10 - 5000 records committed(current total 430000 records), lap time = 0.693
[2025-03-08 21:50:07] pool-1-thread-3 - 5000 records committed(current total 425000 records), lap time = 0.694
[2025-03-08 21:50:07] pool-1-thread-6 - 5000 records committed(current total 430000 records), lap time = 0.704
[2025-03-08 21:50:07] pool-1-thread-4 - 5000 records committed(current total 430000 records), lap time = 0.704
[2025-03-08 21:50:07] pool-1-thread-8 - 5000 records committed(current total 430000 records), lap time = 0.704
[2025-03-08 21:50:07] pool-1-thread-2 - 5000 records committed(current total 440000 records), lap time = 0.704
[2025-03-08 21:50:07] pool-1-thread-7 - 5000 records committed(current total 435000 records), lap time = 0.704
[2025-03-08 21:50:07] pool-1-thread-1 - 5000 records committed(current total 430000 records), lap time = 0.711
[2025-03-08 21:50:07] pool-1-thread-9 - 5000 records committed(current total 445000 records), lap time = 0.658
[2025-03-08 21:50:07] pool-1-thread-5 - 5000 records committed(current total 445000 records), lap time = 0.685
[2025-03-08 21:50:08] pool-1-thread-3 - 5000 records committed(current total 430000 records), lap time = 0.694
[2025-03-08 21:50:08] pool-1-thread-10 - 5000 records committed(current total 435000 records), lap time = 0.733
[2025-03-08 21:50:08] pool-1-thread-6 - 5000 records committed(current total 435000 records), lap time = 0.733
[2025-03-08 21:50:08] pool-1-thread-2 - 5000 records committed(current total 445000 records), lap time = 0.741
[2025-03-08 21:50:08] pool-1-thread-1 - 5000 records committed(current total 435000 records), lap time = 0.734
[2025-03-08 21:50:08] pool-1-thread-7 - 5000 records committed(current total 440000 records), lap time = 0.756
[2025-03-08 21:50:08] pool-1-thread-4 - 5000 records committed(current total 435000 records), lap time = 0.757
[2025-03-08 21:50:08] pool-1-thread-8 - 5000 records committed(current total 435000 records), lap time = 0.756
[2025-03-08 21:50:08] pool-1-thread-9 - 5000 records committed(current total 450000 records), lap time = 0.579
[2025-03-08 21:50:08] pool-1-thread-5 - 5000 records committed(current total 450000 records), lap time = 0.565
[2025-03-08 21:50:08] pool-1-thread-3 - 5000 records committed(current total 435000 records), lap time = 0.563
[2025-03-08 21:50:08] pool-1-thread-6 - 5000 records committed(current total 440000 records), lap time = 0.546
[2025-03-08 21:50:08] pool-1-thread-10 - 5000 records committed(current total 440000 records), lap time = 0.570
[2025-03-08 21:50:08] pool-1-thread-2 - 5000 records committed(current total 450000 records), lap time = 0.558
[2025-03-08 21:50:08] pool-1-thread-1 - 5000 records committed(current total 440000 records), lap time = 0.565
[2025-03-08 21:50:08] pool-1-thread-8 - 5000 records committed(current total 440000 records), lap time = 0.554
[2025-03-08 21:50:08] pool-1-thread-7 - 5000 records committed(current total 445000 records), lap time = 0.566
[2025-03-08 21:50:08] pool-1-thread-4 - 5000 records committed(current total 440000 records), lap time = 0.571
[2025-03-08 21:50:09] pool-1-thread-9 - 5000 records committed(current total 455000 records), lap time = 0.701
[2025-03-08 21:50:09] pool-1-thread-5 - 5000 records committed(current total 455000 records), lap time = 0.725
[2025-03-08 21:50:09] pool-1-thread-3 - 5000 records committed(current total 440000 records), lap time = 0.721
[2025-03-08 21:50:09] pool-1-thread-6 - 5000 records committed(current total 445000 records), lap time = 0.738
[2025-03-08 21:50:09] pool-1-thread-2 - 5000 records committed(current total 455000 records), lap time = 0.745
[2025-03-08 21:50:09] pool-1-thread-10 - 5000 records committed(current total 445000 records), lap time = 0.771
[2025-03-08 21:50:09] pool-1-thread-1 - 5000 records committed(current total 445000 records), lap time = 0.781
[2025-03-08 21:50:09] pool-1-thread-8 - 5000 records committed(current total 445000 records), lap time = 0.774
[2025-03-08 21:50:09] pool-1-thread-7 - 5000 records committed(current total 450000 records), lap time = 0.764
[2025-03-08 21:50:09] pool-1-thread-4 - 5000 records committed(current total 445000 records), lap time = 1.033
[2025-03-08 21:50:09] pool-1-thread-9 - 5000 records committed(current total 460000 records), lap time = 0.734
[2025-03-08 21:50:09] pool-1-thread-5 - 5000 records committed(current total 460000 records), lap time = 0.705
[2025-03-08 21:50:10] pool-1-thread-3 - 5000 records committed(current total 445000 records), lap time = 0.706
[2025-03-08 21:50:10] pool-1-thread-6 - 5000 records committed(current total 450000 records), lap time = 0.723
[2025-03-08 21:50:10] pool-1-thread-2 - 5000 records committed(current total 460000 records), lap time = 0.718
[2025-03-08 21:50:10] pool-1-thread-10 - 5000 records committed(current total 450000 records), lap time = 0.719
[2025-03-08 21:50:10] pool-1-thread-1 - 5000 records committed(current total 450000 records), lap time = 0.717
[2025-03-08 21:50:10] pool-1-thread-7 - 5000 records committed(current total 455000 records), lap time = 0.727
[2025-03-08 21:50:10] pool-1-thread-8 - 5000 records committed(current total 450000 records), lap time = 0.727
[2025-03-08 21:50:10] pool-1-thread-4 - 5000 records committed(current total 450000 records), lap time = 0.708
[2025-03-08 21:50:10] pool-1-thread-9 - 5000 records committed(current total 465000 records), lap time = 0.611
[2025-03-08 21:50:10] pool-1-thread-5 - 5000 records committed(current total 465000 records), lap time = 0.621
[2025-03-08 21:50:10] pool-1-thread-3 - 5000 records committed(current total 450000 records), lap time = 0.644
[2025-03-08 21:50:10] pool-1-thread-6 - 5000 records committed(current total 455000 records), lap time = 0.658
[2025-03-08 21:50:10] pool-1-thread-2 - 5000 records committed(current total 465000 records), lap time = 0.653
[2025-03-08 21:50:10] pool-1-thread-10 - 5000 records committed(current total 455000 records), lap time = 0.724
[2025-03-08 21:50:10] pool-1-thread-1 - 5000 records committed(current total 455000 records), lap time = 0.732
[2025-03-08 21:50:10] pool-1-thread-7 - 5000 records committed(current total 460000 records), lap time = 0.732
[2025-03-08 21:50:10] pool-1-thread-8 - 5000 records committed(current total 455000 records), lap time = 0.764
[2025-03-08 21:50:11] pool-1-thread-4 - 5000 records committed(current total 455000 records), lap time = 0.739
[2025-03-08 21:50:11] pool-1-thread-9 - 5000 records committed(current total 470000 records), lap time = 0.721
[2025-03-08 21:50:11] pool-1-thread-5 - 5000 records committed(current total 470000 records), lap time = 0.687
[2025-03-08 21:50:11] pool-1-thread-3 - 5000 records committed(current total 455000 records), lap time = 0.678
[2025-03-08 21:50:11] pool-1-thread-6 - 5000 records committed(current total 460000 records), lap time = 0.653
[2025-03-08 21:50:11] pool-1-thread-2 - 5000 records committed(current total 470000 records), lap time = 0.646
[2025-03-08 21:50:11] pool-1-thread-10 - 5000 records committed(current total 460000 records), lap time = 0.577
[2025-03-08 21:50:11] pool-1-thread-7 - 5000 records committed(current total 465000 records), lap time = 0.546
[2025-03-08 21:50:11] pool-1-thread-1 - 5000 records committed(current total 460000 records), lap time = 0.563
[2025-03-08 21:50:11] pool-1-thread-8 - 5000 records committed(current total 460000 records), lap time = 0.546
[2025-03-08 21:50:11] pool-1-thread-4 - 5000 records committed(current total 460000 records), lap time = 0.466
[2025-03-08 21:50:11] pool-1-thread-9 - 5000 records committed(current total 475000 records), lap time = 0.592
[2025-03-08 21:50:11] pool-1-thread-5 - 5000 records committed(current total 475000 records), lap time = 0.644
[2025-03-08 21:50:11] pool-1-thread-3 - 5000 records committed(current total 460000 records), lap time = 0.638
[2025-03-08 21:50:12] pool-1-thread-6 - 5000 records committed(current total 465000 records), lap time = 0.680
[2025-03-08 21:50:12] pool-1-thread-2 - 5000 records committed(current total 475000 records), lap time = 0.681
[2025-03-08 21:50:12] pool-1-thread-10 - 5000 records committed(current total 465000 records), lap time = 0.667
[2025-03-08 21:50:12] pool-1-thread-7 - 5000 records committed(current total 470000 records), lap time = 0.665
[2025-03-08 21:50:12] pool-1-thread-1 - 5000 records committed(current total 465000 records), lap time = 0.666
[2025-03-08 21:50:12] pool-1-thread-8 - 5000 records committed(current total 465000 records), lap time = 0.696
[2025-03-08 21:50:12] pool-1-thread-4 - 5000 records committed(current total 465000 records), lap time = 0.766
[2025-03-08 21:50:12] pool-1-thread-9 - 5000 records committed(current total 480000 records), lap time = 0.636
[2025-03-08 21:50:12] pool-1-thread-5 - 5000 records committed(current total 480000 records), lap time = 0.636
[2025-03-08 21:50:12] pool-1-thread-3 - 5000 records committed(current total 465000 records), lap time = 0.647
[2025-03-08 21:50:12] pool-1-thread-6 - 5000 records committed(current total 470000 records), lap time = 0.649
[2025-03-08 21:50:12] pool-1-thread-2 - 5000 records committed(current total 480000 records), lap time = 0.673
[2025-03-08 21:50:12] pool-1-thread-10 - 5000 records committed(current total 470000 records), lap time = 0.692
[2025-03-08 21:50:12] pool-1-thread-7 - 5000 records committed(current total 475000 records), lap time = 0.713
[2025-03-08 21:50:12] pool-1-thread-1 - 5000 records committed(current total 470000 records), lap time = 0.725
[2025-03-08 21:50:12] pool-1-thread-8 - 5000 records committed(current total 470000 records), lap time = 0.778
[2025-03-08 21:50:13] pool-1-thread-4 - 5000 records committed(current total 470000 records), lap time = 0.811
[2025-03-08 21:50:13] pool-1-thread-9 - 5000 records committed(current total 485000 records), lap time = 0.832
[2025-03-08 21:50:13] pool-1-thread-5 - 5000 records committed(current total 485000 records), lap time = 0.809
[2025-03-08 21:50:13] pool-1-thread-3 - 5000 records committed(current total 470000 records), lap time = 0.832
[2025-03-08 21:50:13] pool-1-thread-6 - 5000 records committed(current total 475000 records), lap time = 0.774
[2025-03-08 21:50:13] pool-1-thread-2 - 5000 records committed(current total 485000 records), lap time = 0.770
[2025-03-08 21:50:13] pool-1-thread-10 - 5000 records committed(current total 475000 records), lap time = 0.765
[2025-03-08 21:50:13] pool-1-thread-7 - 5000 records committed(current total 480000 records), lap time = 0.740
[2025-03-08 21:50:13] pool-1-thread-1 - 5000 records committed(current total 475000 records), lap time = 0.731
[2025-03-08 21:50:13] pool-1-thread-8 - 5000 records committed(current total 475000 records), lap time = 0.666
[2025-03-08 21:50:13] pool-1-thread-4 - 5000 records committed(current total 475000 records), lap time = 0.671
[2025-03-08 21:50:13] pool-1-thread-9 - 5000 records committed(current total 490000 records), lap time = 0.613
[2025-03-08 21:50:13] pool-1-thread-5 - 5000 records committed(current total 490000 records), lap time = 0.560
[2025-03-08 21:50:14] pool-1-thread-3 - 5000 records committed(current total 475000 records), lap time = 0.567
[2025-03-08 21:50:14] pool-1-thread-6 - 5000 records committed(current total 480000 records), lap time = 0.570
[2025-03-08 21:50:14] pool-1-thread-2 - 5000 records committed(current total 490000 records), lap time = 0.567
[2025-03-08 21:50:14] pool-1-thread-10 - 5000 records committed(current total 480000 records), lap time = 0.580
[2025-03-08 21:50:14] pool-1-thread-7 - 5000 records committed(current total 485000 records), lap time = 0.874
[2025-03-08 21:50:14] pool-1-thread-8 - 5000 records committed(current total 480000 records), lap time = 0.845
[2025-03-08 21:50:14] pool-1-thread-1 - 5000 records committed(current total 480000 records), lap time = 0.889
[2025-03-08 21:50:14] pool-1-thread-4 - 5000 records committed(current total 480000 records), lap time = 0.606
[2025-03-08 21:50:14] pool-1-thread-9 - 5000 records committed(current total 495000 records), lap time = 0.635
[2025-03-08 21:50:14] pool-1-thread-5 - 5000 records committed(current total 495000 records), lap time = 0.653
[2025-03-08 21:50:14] pool-1-thread-3 - 5000 records committed(current total 480000 records), lap time = 0.678
[2025-03-08 21:50:14] pool-1-thread-6 - 5000 records committed(current total 485000 records), lap time = 0.720
[2025-03-08 21:50:14] pool-1-thread-2 - 5000 records committed(current total 495000 records), lap time = 0.722
[2025-03-08 21:50:14] pool-1-thread-10 - 5000 records committed(current total 485000 records), lap time = 0.736
[2025-03-08 21:50:15] pool-1-thread-7 - 5000 records committed(current total 490000 records), lap time = 0.665
[2025-03-08 21:50:15] pool-1-thread-1 - 5000 records committed(current total 485000 records), lap time = 0.668
[2025-03-08 21:50:15] pool-1-thread-8 - 5000 records committed(current total 485000 records), lap time = 0.681
[2025-03-08 21:50:15] pool-1-thread-4 - 5000 records committed(current total 485000 records), lap time = 0.680
[2025-03-08 21:50:15] pool-1-thread-9 - remain records committed(current total 500000 records), lap time = 0.700
[2025-03-08 21:50:15] pool-1-thread-9 - 500000 records committed, total elapsed time = 66.872
[2025-03-08 21:50:15] pool-1-thread-5 - remain records committed(current total 500000 records), lap time = 0.692
[2025-03-08 21:50:15] pool-1-thread-5 - 500000 records committed, total elapsed time = 66.920
[2025-03-08 21:50:15] pool-1-thread-3 - 5000 records committed(current total 485000 records), lap time = 0.662
[2025-03-08 21:50:15] pool-1-thread-6 - 5000 records committed(current total 490000 records), lap time = 0.629
[2025-03-08 21:50:15] pool-1-thread-10 - 5000 records committed(current total 490000 records), lap time = 0.589
[2025-03-08 21:50:15] pool-1-thread-2 - remain records committed(current total 500000 records), lap time = 0.647
[2025-03-08 21:50:15] pool-1-thread-2 - 500000 records committed, total elapsed time = 67.071
[2025-03-08 21:50:15] pool-1-thread-7 - 5000 records committed(current total 495000 records), lap time = 0.718
[2025-03-08 21:50:15] pool-1-thread-1 - 5000 records committed(current total 490000 records), lap time = 0.717
[2025-03-08 21:50:15] pool-1-thread-4 - 5000 records committed(current total 490000 records), lap time = 0.719
[2025-03-08 21:50:15] pool-1-thread-8 - 5000 records committed(current total 490000 records), lap time = 0.743
[2025-03-08 21:50:16] pool-1-thread-3 - 5000 records committed(current total 490000 records), lap time = 0.792
[2025-03-08 21:50:16] pool-1-thread-6 - 5000 records committed(current total 495000 records), lap time = 0.770
[2025-03-08 21:50:16] pool-1-thread-10 - 5000 records committed(current total 495000 records), lap time = 0.771
[2025-03-08 21:50:16] pool-1-thread-7 - remain records committed(current total 500000 records), lap time = 0.676
[2025-03-08 21:50:16] pool-1-thread-7 - 500000 records committed, total elapsed time = 68.097
[2025-03-08 21:50:16] pool-1-thread-4 - 5000 records committed(current total 495000 records), lap time = 0.640
[2025-03-08 21:50:16] pool-1-thread-1 - 5000 records committed(current total 495000 records), lap time = 0.679
[2025-03-08 21:50:16] pool-1-thread-8 - 5000 records committed(current total 495000 records), lap time = 0.646
[2025-03-08 21:50:16] pool-1-thread-3 - 5000 records committed(current total 495000 records), lap time = 0.628
[2025-03-08 21:50:16] pool-1-thread-6 - remain records committed(current total 500000 records), lap time = 0.611
[2025-03-08 21:50:16] pool-1-thread-6 - 500000 records committed, total elapsed time = 68.407
[2025-03-08 21:50:16] pool-1-thread-10 - remain records committed(current total 500000 records), lap time = 0.601
[2025-03-08 21:50:16] pool-1-thread-10 - 500000 records committed, total elapsed time = 68.435
[2025-03-08 21:50:16] pool-1-thread-1 - remain records committed(current total 500000 records), lap time = 0.409
[2025-03-08 21:50:16] pool-1-thread-1 - 500000 records committed, total elapsed time = 68.533
[2025-03-08 21:50:16] pool-1-thread-8 - remain records committed(current total 500000 records), lap time = 0.421
[2025-03-08 21:50:16] pool-1-thread-8 - 500000 records committed, total elapsed time = 68.550
[2025-03-08 21:50:16] pool-1-thread-4 - remain records committed(current total 500000 records), lap time = 0.437
[2025-03-08 21:50:16] pool-1-thread-4 - 500000 records committed, total elapsed time = 68.555
[2025-03-08 21:50:17] pool-1-thread-3 - remain records committed(current total 500000 records), lap time = 0.230
[2025-03-08 21:50:17] pool-1-thread-3 - 500000 records committed, total elapsed time = 68.622
[2025-03-08 21:50:17] org.littlewings.mysql.UuidV7StringRunner$UuidV7StringAsServerPsRunner.main() - UuidV7StringAsServerPsRunner: 5000000 records inserted, total elapsed time = 68.991