ascherbakoff commented on code in PR #4821: URL: https://github.com/apache/ignite-3/pull/4821#discussion_r1895721421
########## modules/raft/src/main/java/org/apache/ignite/raft/jraft/core/NodeImpl.java: ########## @@ -285,8 +289,10 @@ private class LogEntryAndClosureHandler implements EventHandler<LogEntryAndClosu // task list for batch private final List<LogEntryAndClosure> tasks = new ArrayList<>(NodeImpl.this.raftOptions.getApplyBatch()); + private @Nullable HybridTimestamp safeTs = null; Review Comment: This is not related to a "specific" raft implementation. This is about the concept. applied index and safe timestamp serve the same purpose. However raft itselft does not require timestamp aware apply index. **Consider this our own mvcc related extention.** Technically, we could use longs for row versioning. -- 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org