funky-eyes opened a new issue, #8114: URL: https://github.com/apache/incubator-seata/issues/8114
### Check Ahead - [x] I have searched the [issues](https://github.com/seata/seata/issues) of this repository and believe that this is not a duplicate. - [ ] I am willing to try to implement this feature myself. ### Why you need it? In the current File mode, transaction records are written to disk in an append-only manner. Upon restart, the system must scan and reload all persisted records to rebuild its state, resulting in lengthy recovery times and high disk I/O consumption. Furthermore, since all data is stored in memory, the system's capacity is constrained by the amount of available RAM. Integrating RocksDB allows us to separate hot and cold data more effectively. Frequently accessed data can remain memory-resident, while colder data is persisted on disk. This not only reduces recovery time and memory pressure, but also enables much better scalability without sacrificing throughput. ### How it could be? _No response_ ### Other related information _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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
