Skip to content

Commit

Permalink
[hotfix] Log batch size in FlinkS3FileSystem instead of total
Browse files Browse the repository at this point in the history
  • Loading branch information
rkhachatryan committed Nov 15, 2024
1 parent 77e7ac0 commit 6d3b6fe
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,8 @@ public void copyFiles(List<CopyRequest> requests, ICloseableRegistry closeableRe
|| runningSizeFiles >= s5CmdConfiguration.maxBatchSizeFiles
|| i == requests.size() - 1) {
LOG.info(
"Copy {} files using s5cmd, total size: {}, args: {}",
"Copy {} files out of {} using s5cmd, total size: {}, args: {}",
batch.size(),
requests.size(),
runningSizeBytes,
artefacts);
Expand Down

0 comments on commit 6d3b6fe

Please sign in to comment.