rkhachatryan commented on a change in pull request #19331:
URL: https://github.com/apache/flink/pull/19331#discussion_r841065119
##########
File path:
flink-runtime/src/main/java/org/apache/flink/runtime/state/SharedStateRegistryImpl.java
##########
@@ -51,6 +53,9 @@
/** Executor for async state deletion */
private final Executor asyncDisposalExecutor;
+ /** Checkpoint ID below which no state is discarded, inclusive. */
+ private long highestRetainCheckpointID = -1L;
Review comment:
Could you explain which case do you mean and what would be the problem?
With `CLAIM` mode, the goal is to discard the state, including retained
checkpoints. So this field `highestRetainCheckpointID` must be `-1`, which will
allow to do this (condition in state entry will be met).
--
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]