yulangz opened a new issue, #7300: URL: https://github.com/apache/rocketmq/issues/7300
### Before Creating the Enhancement Request - [X] I have confirmed that this should be classified as an enhancement rather than a bug/feature. ### Summary The Controller is implemented based on DLedger. DLedger is a raft repository specifically designed for RocketMQ with many optimizations made for CommitLog. However, when implementing Controller, these optimizations are not needed, and DLedger does not support log compression (Snapshot), so more mature raft libraries such as JRaft can be considered. ### Motivation Compared to DLedger, jRaft is more mature and reliable, and supports snapshot function, which can solve the problem of unlimited log growth. ### Describe the Solution You'd Like Use JRaft to Implement Controller. ### Describe Alternatives You've Considered Use other mature Raft libraries. ### Additional Context _No response_ -- 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: commits-unsubscr...@rocketmq.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org