diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/snapshot/IgniteSnapshotManager.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/snapshot/IgniteSnapshotManager.java index 780470bf2e273..58efd68bff2f6 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/snapshot/IgniteSnapshotManager.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/snapshot/IgniteSnapshotManager.java @@ -1834,6 +1834,11 @@ public IgniteInternalFuture checkSnapshot( GridFutureAdapter res = new GridFutureAdapter<>(); + if (log.isInfoEnabled()) { + log.info("The check snapshot procedure started [snpName=" + name + ", snpPath=" + snpPath + + ", incIdx=" + incIdx + ", grps=" + grps + ']'); + } + GridKernalContext kctx0 = cctx.kernalContext(); Collection bltNodes = F.view(cctx.discovery().serverNodes(AffinityTopologyVersion.NONE), @@ -1952,6 +1957,11 @@ else if (f0.error() instanceof IgniteSnapshotVerifyException) } }); + if (log.isInfoEnabled()) { + res.listen(f -> log.info("The check snapshot procedure finished [snpName=" + name + + ", snpPath=" + snpPath + ", incIdx=" + incIdx + ", grps=" + grps + ']')); + } + return res; } diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/snapshot/SnapshotPartitionsVerifyTask.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/snapshot/SnapshotPartitionsVerifyTask.java index 2fc31021490c4..40fa00fcedfcf 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/snapshot/SnapshotPartitionsVerifyTask.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/snapshot/SnapshotPartitionsVerifyTask.java @@ -136,6 +136,12 @@ public VerifySnapshotPartitionsJob( catch (IgniteCheckedException | IOException e) { throw new IgniteException(e); } + finally { + if (log.isInfoEnabled()) { + log.info("Verify snapshot partitions procedure has been finished " + + "[snpName=" + snpName + ", consId=" + consId + ']'); + } + } } /** {@inheritDoc} */