rpuch commented on code in PR #1912:
URL: https://github.com/apache/ignite-3/pull/1912#discussion_r1161491291


##########
modules/raft/src/main/java/org/apache/ignite/internal/raft/server/RaftGroupOptions.java:
##########
@@ -126,4 +131,20 @@ public RaftGroupOptions 
raftMetaStorageFactory(RaftMetaStorageFactory raftMetaSt
 
         return this;
     }
+
+    /**
+     * Returns configuration own striped disruptor for FSMCaller service of 
raft node, {@code null} means use shared disruptor.

Review Comment:
   ```suggestion
        * Returns configuration of own striped disruptor for FSMCaller service 
of raft node, {@code null} means use shared disruptor.
   ```



##########
modules/raft/src/main/java/org/apache/ignite/internal/raft/server/RaftGroupOptions.java:
##########
@@ -37,6 +39,9 @@ public class RaftGroupOptions {
     /** Raft meta storage factory. */
     private RaftMetaStorageFactory raftMetaStorageFactory;
 
+    /** Configuration own striped disruptor for FSMCaller service of raft 
node, {@code null} means use shared disruptor. */

Review Comment:
   ```suggestion
       /** Configuration of own striped disruptor for FSMCaller service of raft 
node, {@code null} means use shared disruptor. */
   ```



##########
modules/raft/src/main/java/org/apache/ignite/internal/raft/server/RaftGroupOptions.java:
##########
@@ -126,4 +131,20 @@ public RaftGroupOptions 
raftMetaStorageFactory(RaftMetaStorageFactory raftMetaSt
 
         return this;
     }
+
+    /**
+     * Returns configuration own striped disruptor for FSMCaller service of 
raft node, {@code null} means use shared disruptor.
+     */
+    public @Nullable RaftNodeDisruptorConfiguration 
ownFsmCallerExecutorDisruptorConfig() {
+        return ownFsmCallerExecutorDisruptorConfig;
+    }
+
+    /**
+     * Sets configuration own striped disruptor for FSMCaller service of raft 
node.

Review Comment:
   ```suggestion
        * Sets configuration of own striped disruptor for FSMCaller service of 
raft node.
   ```



-- 
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]

Reply via email to