shengminw commented on PR #4521: URL: https://github.com/apache/rocketmq/pull/4521#issuecomment-1168667474
@dongeforever The message encoding buffer in openmessaging/DLedger is of fixed size. https://github.com/openmessaging/dledger/blob/master/src/main/java/io/openmessaging/storage/dledger/store/file/DLedgerMmapFileStore.java ```java this.localEntryBuffer = ThreadLocal.withInitial(() -> { return ByteBuffer.allocate(4194304); }); ``` So temporarily remove the adaptation of DLeger mode. -- 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]
