danny0405 commented on issue #11955:
URL: https://github.com/apache/hudi/issues/11955#issuecomment-2359737053
It looks like the clean instant is missing:
```java
try {
HoodieCleanMetadata cleanMetadata =
TimelineMetadataUtils.deserializeHoodieCleanMetadata(cleanerTimeline.getInstantDetails(instant).get());
cleanMetadata.getPartitionMetadata().forEach((partition,
partitionMetadata) -> {
if (partitionMetadata.getIsPartitionDeleted()) {
partitionToLatestDeleteTimestamp.put(partition,
instant.getTimestamp());
}
});
}
```
--
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]