@@ -236,7 +236,7 @@ public CompletableFuture<Map<String, String>> upload(CheckpointId checkpointId,
236
236
CompletionStage <String > snapshotIndexBlobIdFuture =
237
237
snapshotIndexFuture
238
238
.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 );
240
240
return blobStoreUtil .putSnapshotIndex (si );
241
241
}, executor );
242
242
@@ -296,7 +296,7 @@ public CompletableFuture<Void> cleanUp(CheckpointId checkpointId, Map<String, St
296
296
// 1. remove TTL of index blob and all of its files and sub-dirs marked for retention
297
297
CompletionStage <Void > removeTTLFuture =
298
298
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 :{}" ,
300
300
snapshotIndexBlobId , taskName , storeName );
301
301
return blobStoreUtil .removeTTL (snapshotIndexBlobId , snapshotIndex , requestMetadata );
302
302
}, executor );
@@ -305,7 +305,7 @@ public CompletableFuture<Void> cleanUp(CheckpointId checkpointId, Map<String, St
305
305
// 2. delete the files/subdirs marked for deletion in the snapshot index.
306
306
CompletionStage <Void > cleanupRemoteSnapshotFuture =
307
307
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: {}" ,
309
309
snapshotIndexBlobId , taskName , storeName );
310
310
return blobStoreUtil .cleanUpDir (snapshotIndex .getDirIndex (), requestMetadata );
311
311
}, executor );
@@ -317,7 +317,7 @@ public CompletableFuture<Void> cleanUp(CheckpointId checkpointId, Map<String, St
317
317
snapshotIndexFuture .thenComposeAsync (snapshotIndex -> {
318
318
if (snapshotIndex .getPrevSnapshotIndexBlobId ().isPresent ()) {
319
319
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: {}." ,
321
321
blobId , taskName , storeName );
322
322
return blobStoreUtil .deleteSnapshotIndexBlob (blobId , requestMetadata );
323
323
} else {
0 commit comments