This is an automated email from the ASF dual-hosted git repository.

zakelly pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/master by this push:
     new 1e367509833 [hotfix] Suppress log for reusing sst files (#27197)
1e367509833 is described below

commit 1e3675098332145ca06b24a3404a8213dc2ca719
Author: Zakelly <[email protected]>
AuthorDate: Thu Nov 6 10:33:43 2025 +0800

    [hotfix] Suppress log for reusing sst files (#27197)
---
 .../state/rocksdb/snapshot/RocksIncrementalSnapshotStrategy.java     | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git 
a/flink-state-backends/flink-statebackend-rocksdb/src/main/java/org/apache/flink/state/rocksdb/snapshot/RocksIncrementalSnapshotStrategy.java
 
b/flink-state-backends/flink-statebackend-rocksdb/src/main/java/org/apache/flink/state/rocksdb/snapshot/RocksIncrementalSnapshotStrategy.java
index af81c29fc82..8c29a01b63a 100644
--- 
a/flink-state-backends/flink-statebackend-rocksdb/src/main/java/org/apache/flink/state/rocksdb/snapshot/RocksIncrementalSnapshotStrategy.java
+++ 
b/flink-state-backends/flink-statebackend-rocksdb/src/main/java/org/apache/flink/state/rocksdb/snapshot/RocksIncrementalSnapshotStrategy.java
@@ -351,7 +351,10 @@ public class RocksIncrementalSnapshotStrategy<K>
                 List<Path> miscFilePaths = new ArrayList<>(files.length);
 
                 createUploadFilePaths(files, sstFiles, sstFilePaths, 
miscFilePaths);
-                LOG.info("Will re-use {} SST files. {}", sstFiles.size(), 
sstFiles);
+                LOG.trace(
+                        "Will re-use {} SST files for incremental checkpoint: 
{}",
+                        sstFiles.size(),
+                        sstFiles);
 
                 final CheckpointedStateScope stateScope =
                         sharingFilesStrategy == 
SnapshotType.SharingFilesStrategy.NO_SHARING

Reply via email to