neils-dev commented on code in PR #3741:
URL: https://github.com/apache/ozone/pull/3741#discussion_r1061077986
##########
hadoop-hdds/container-service/src/main/java/org/apache/hadoop/ozone/container/keyvalue/KeyValueHandler.java:
##########
@@ -1239,6 +1240,29 @@ private void deleteInternal(Container container, boolean
force)
DELETE_ON_NON_EMPTY_CONTAINER);
}
}
+ if (container.getContainerData() instanceof KeyValueContainerData) {
+ KeyValueContainerData keyValueContainerData =
+ (KeyValueContainerData) container.getContainerData();
+ HddsVolume hddsVolume = keyValueContainerData.getVolume();
+
+ // Rename container location
+ boolean success = KeyValueContainerUtil.ContainerDeleteDirectory
+ .moveToTmpDeleteDirectory(keyValueContainerData, hddsVolume);
+
+ if (success) {
+ String containerPath = keyValueContainerData
+ .getContainerPath().toString();
+ File containerDir = new File(containerPath);
+
+ LOG.debug("Container {} has been successfuly moved under {}",
+ containerDir.getName(), hddsVolume.getDeleteServiceDirPath());
+ } else {
+ LOG.error("Failed to move container under " +
+ hddsVolume.getDeleteServiceDirPath());
+ throw new StorageContainerException("Moving container failed",
+ IO_EXCEPTION);
Review Comment:
@xBis7 , thanks for adding the `StorageContainerException` on container move
to tmp directory failure. Looks like this exception will be sent back to the
SCM to retry the container delete by the`
keyValueHandler.handleDeleteContainer`. Looks great, but would be better to
throw a more descriptive error with the `StorageContainerException`. Instead
of `IO_EXCEPTION`, use either `CONTAINER_INTERNAL_ERROR` or
`CLOSED_CONTAINER_IO`.
--
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]