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

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


The following commit(s) were added to refs/heads/master by this push:
     new bf5ae5e11cd HDDS-13603. [Snapshot] Do not warn a snapshot does not 
exist after it is purged. (#9136)
bf5ae5e11cd is described below

commit bf5ae5e11cd049efad41e859b0b3b8f425afaeb7
Author: ChenChen Lai <[email protected]>
AuthorDate: Wed Oct 15 01:58:22 2025 +0800

    HDDS-13603. [Snapshot] Do not warn a snapshot does not exist after it is 
purged. (#9136)
---
 .../main/java/org/apache/hadoop/ozone/om/snapshot/SnapshotCache.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/hadoop-ozone/ozone-manager/src/main/java/org/apache/hadoop/ozone/om/snapshot/SnapshotCache.java
 
b/hadoop-ozone/ozone-manager/src/main/java/org/apache/hadoop/ozone/om/snapshot/SnapshotCache.java
index d48ab12c9f1..27c29b53449 100644
--- 
a/hadoop-ozone/ozone-manager/src/main/java/org/apache/hadoop/ozone/om/snapshot/SnapshotCache.java
+++ 
b/hadoop-ozone/ozone-manager/src/main/java/org/apache/hadoop/ozone/om/snapshot/SnapshotCache.java
@@ -148,7 +148,7 @@ public int size() {
   public void invalidate(UUID key) {
     dbMap.compute(key, (k, v) -> {
       if (v == null) {
-        LOG.warn("SnapshotId: '{}' does not exist in snapshot cache.", k);
+        LOG.debug("SnapshotId: '{}' does not exist in snapshot cache.", k);
       } else {
         try {
           v.get().getMetadataManager().getStore().flushDB();


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to