Details
-
Bug
-
Status: Resolved
-
Blocker
-
Resolution: Fixed
-
1.15.0, 1.16.0
Description
ZooKeeperStateHandleStore.getAllAndLock is used when recovering CompletedCheckpoints. It iterates over all childs and retries until it reaches a stable and consistent version (i.e. no entries are subject for deletion and no child nodes were added while accessing the ZK instance).
Additionally, ZooKeeperStateHandleStore marks entries for deletion internally before actually deleting them. This can lead to a state where an entry is marked for deletion but the discard failed causing the cleanup to fail. The entry will be left marked for deletion and another cleanup will be tried. This works infinitely. But the users has the ability to limit the amount of retries. In that case, the entry might be left marked.
Restarting Flink cluster will now try to access this ZooKeeperStateHandleStore recovering the checkpoints with this entry still being marked for deletion which will cause an error in ZooKeeperStateHandleStore.getAllAndLock which results in a retry loop that's not desired.
We actually don't need to retry in that case because the child can be ignored, as far as I can see.
Attachments
Issue Links
- is caused by
-
FLINK-26284 The ZooKeeperStateHandleStore cleans the metadata before cleaning the StateHandle
- Resolved
- links to