Skip to content

Commit

Permalink
Update ClickHouseWriter.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Paultagoras committed Dec 6, 2023
1 parent a50ff84 commit 32ee7c1
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ protected void doInsertRawBinary(List<Record> records, Table table, QueryIdentif
}

s3 = System.currentTimeMillis();
LOGGER.debug("batchSize: {} data ms: {} send ms: {}", records.size(), s2 - s1, s3 - s2);
LOGGER.info("batchSize: {} data ms: {} send ms: {} (QueryId: [{}])", records.size(), s2 - s1, s3 - s2, queryId.getQueryId());
}


Expand Down Expand Up @@ -530,7 +530,7 @@ protected void doInsertJson(List<Record> records, Table table, QueryIdentifier q
}
}
s3 = System.currentTimeMillis();
LOGGER.debug("batchSize: {} data ms: {} send ms: {}", records.size(), s2 - s1, s3 - s2);
LOGGER.info("batchSize: {} data ms: {} send ms: {} (QueryId: [{}])", records.size(), s2 - s1, s3 - s2, queryId.getQueryId());
}

protected void doInsertString(List<Record> records, Table table, QueryIdentifier queryId) throws IOException, ExecutionException, InterruptedException {
Expand Down Expand Up @@ -595,7 +595,7 @@ protected void doInsertString(List<Record> records, Table table, QueryIdentifier
}
}
s3 = System.currentTimeMillis();
LOGGER.debug("batchSize: {} data ms: {} send ms: {}", records.size(), s2 - s1, s3 - s2);
LOGGER.info("batchSize: {} data ms: {} send ms: {} (QueryId: [{}])", records.size(), s2 - s1, s3 - s2, queryId.getQueryId());
}


Expand Down

0 comments on commit 32ee7c1

Please sign in to comment.