ascherbakoff commented on a change in pull request #147:
URL: https://github.com/apache/ignite-3/pull/147#discussion_r641471086
##########
File path:
modules/raft-client/src/main/java/org/apache/ignite/raft/client/message/ActionRequest.java
##########
@@ -35,19 +35,30 @@
*/
Command command();
+ /**
+ * @return {@code True} for linearizable reading.
+ */
+ boolean readOnlySafe();
Review comment:
This concept comes from RAFT linerializable reading guarantees, which
require stable leader before reading.
It makes no sense for single node RAFT cluster, so no getter usage here.
You can find actual usage in ignite-13885
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]