DaveTeng0 commented on code in PR #1047:
URL: https://github.com/apache/ratis/pull/1047#discussion_r1516902645
##########
ratis-proto/src/main/proto/Raft.proto:
##########
@@ -175,6 +175,15 @@ message CommitInfoProto {
uint64 commitIndex = 2;
}
+/** Add new LogInfoProto for RATIS-2030, allow GroupInfoCommand to show each
server's last committed log,
+ last applied log, last snapshot log, last entry log.*/
+message LogInfoProto {
+ TermIndexProto lastSnapshot = 1;
+ TermIndexProto applied = 2;
+ TermIndexProto committed = 3;
+ TermIndexProto lastEntry = 4;
+}
Review Comment:
sure! updated!
--
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]