swamirishi commented on code in PR #8054:
URL: https://github.com/apache/ozone/pull/8054#discussion_r2049302520


##########
hadoop-ozone/ozone-manager/src/main/java/org/apache/hadoop/ozone/om/snapshot/filter/ReclaimableRenameEntryFilter.java:
##########
@@ -0,0 +1,87 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.hadoop.ozone.om.snapshot.filter;
+
+import java.io.IOException;
+import org.apache.hadoop.hdds.utils.db.Table;
+import org.apache.hadoop.ozone.om.KeyManager;
+import org.apache.hadoop.ozone.om.OmSnapshot;
+import org.apache.hadoop.ozone.om.OmSnapshotManager;
+import org.apache.hadoop.ozone.om.OzoneManager;
+import org.apache.hadoop.ozone.om.SnapshotChainManager;
+import org.apache.hadoop.ozone.om.helpers.OmDirectoryInfo;
+import org.apache.hadoop.ozone.om.helpers.OmKeyInfo;
+import org.apache.hadoop.ozone.om.helpers.SnapshotInfo;
+import org.apache.hadoop.ozone.om.helpers.WithObjectID;
+import org.apache.hadoop.ozone.om.lock.IOzoneManagerLock;
+import org.apache.hadoop.ozone.om.snapshot.ReferenceCounted;
+
+/**
+ * Filter to return rename table entries which are reclaimable based on the 
key presence in previous snapshot's
+ * keyTable/DirectoryTable in the snapshot chain.
+ */
+public class ReclaimableRenameEntryFilter extends ReclaimableFilter<String> {
+
+
+  public ReclaimableRenameEntryFilter(OzoneManager ozoneManager,
+                                      OmSnapshotManager omSnapshotManager, 
SnapshotChainManager snapshotChainManager,
+                                      SnapshotInfo currentSnapshotInfo, 
KeyManager keyManager,
+                                      IOzoneManagerLock lock) {
+    super(ozoneManager, omSnapshotManager, snapshotChainManager, 
currentSnapshotInfo, keyManager, lock, 1);
+  }
+
+  @Override
+  protected Boolean isReclaimable(Table.KeyValue<String, String> renameEntry) 
throws IOException {
+    ReferenceCounted<OmSnapshot> previousSnapshot = getPreviousOmSnapshot(0);
+    Table<String, OmKeyInfo> previousKeyTable = null;
+    Table<String, OmDirectoryInfo> prevDirTable = null;
+    if (previousSnapshot != null) {
+      previousKeyTable = 
previousSnapshot.get().getMetadataManager().getKeyTable(getBucketInfo().getBucketLayout());
+      if (getBucketInfo().getBucketLayout().isFileSystemOptimized()) {
+        prevDirTable = 
previousSnapshot.get().getMetadataManager().getDirectoryTable();
+      }
+    }
+    return isRenameEntryReclaimable(renameEntry, prevDirTable, 
previousKeyTable);
+  }
+
+  @Override
+  protected String getVolumeName(Table.KeyValue<String, String> keyValue) 
throws IOException {
+    return 
getKeyManager().getMetadataManager().splitRenameKey(keyValue.getKey())[0];
+  }
+
+  @Override
+  protected String getBucketName(Table.KeyValue<String, String> keyValue) 
throws IOException {
+    return 
getKeyManager().getMetadataManager().splitRenameKey(keyValue.getKey())[1];
+  }
+
+  @SafeVarargs
+  private final boolean isRenameEntryReclaimable(Table.KeyValue<String, 
String> renameEntry,

Review Comment:
   We are checking if a rename entry points to an object in the previous 
snapshot. Since objectId is unique in the system the entry would be either in 
the directoryTable or fileTable or keyTable



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


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

Reply via email to