sanpwc commented on code in PR #2820:
URL: https://github.com/apache/ignite-3/pull/2820#discussion_r1389421124
##########
modules/table/src/main/java/org/apache/ignite/internal/table/distributed/raft/PartitionListener.java:
##########
@@ -99,6 +101,15 @@ public class PartitionListener implements RaftGroupListener
{
/** Storage index tracker. */
private final PendingComparableValuesTracker<Long, Void>
storageIndexTracker;
+ // TODO: https://issues.apache.org/jira/browse/IGNITE-20826 Restore on
restart
+ /** Is used in order to detect and retry safe time reordering within
onBeforeApply. */
+ private long maxObservableSafeTime = -1;
+
+ // TODO: https://issues.apache.org/jira/browse/IGNITE-20826 Restore on
restart
+ /** Is used in order to assert safe time reordering within onWrite. */
+ private long maxObservableSafeTimeVerificator = -1;
Review Comment:
Fixed.
--
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]