@@ -236,7 +236,7 @@ public CompletableFuture<Map<String, String>> upload(CheckpointId checkpointId,
236236 CompletionStage <String > snapshotIndexBlobIdFuture =
237237 snapshotIndexFuture
238238 .thenComposeAsync (si -> {
239- LOG .info ("Uploading Snapshot index: {} for task: {} store: {}" , si , taskName , storeName );
239+ LOG .debug ("Uploading Snapshot index: {} for task: {} store: {}" , si , taskName , storeName );
240240 return blobStoreUtil .putSnapshotIndex (si );
241241 }, executor );
242242
@@ -296,7 +296,7 @@ public CompletableFuture<Void> cleanUp(CheckpointId checkpointId, Map<String, St
296296 // 1. remove TTL of index blob and all of its files and sub-dirs marked for retention
297297 CompletionStage <Void > removeTTLFuture =
298298 snapshotIndexFuture .thenComposeAsync (snapshotIndex -> {
299- LOG .info ("Removing TTL for index blob: {} and all of its files and sub-dirs for task: {} store :{}" ,
299+ LOG .debug ("Removing TTL for index blob: {} and all of its files and sub-dirs for task: {} store :{}" ,
300300 snapshotIndexBlobId , taskName , storeName );
301301 return blobStoreUtil .removeTTL (snapshotIndexBlobId , snapshotIndex , requestMetadata );
302302 }, executor );
@@ -305,7 +305,7 @@ public CompletableFuture<Void> cleanUp(CheckpointId checkpointId, Map<String, St
305305 // 2. delete the files/subdirs marked for deletion in the snapshot index.
306306 CompletionStage <Void > cleanupRemoteSnapshotFuture =
307307 snapshotIndexFuture .thenComposeAsync (snapshotIndex -> {
308- LOG .info ("Deleting files and dirs to remove for current index blob: {} for task: {} store: {}" ,
308+ LOG .debug ("Deleting files and dirs to remove for current index blob: {} for task: {} store: {}" ,
309309 snapshotIndexBlobId , taskName , storeName );
310310 return blobStoreUtil .cleanUpDir (snapshotIndex .getDirIndex (), requestMetadata );
311311 }, executor );
@@ -317,7 +317,7 @@ public CompletableFuture<Void> cleanUp(CheckpointId checkpointId, Map<String, St
317317 snapshotIndexFuture .thenComposeAsync (snapshotIndex -> {
318318 if (snapshotIndex .getPrevSnapshotIndexBlobId ().isPresent ()) {
319319 String blobId = snapshotIndex .getPrevSnapshotIndexBlobId ().get ();
320- LOG .info ("Removing previous snapshot index blob: {} from blob store for task: {} store: {}." ,
320+ LOG .debug ("Removing previous snapshot index blob: {} from blob store for task: {} store: {}." ,
321321 blobId , taskName , storeName );
322322 return blobStoreUtil .deleteSnapshotIndexBlob (blobId , requestMetadata );
323323 } else {
0 commit comments