-
Notifications
You must be signed in to change notification settings - Fork 12k
Description
When the current RIP-30 does compaction, it needs to build an offsetMap. Currently, it needs to scan all message constructions, but in fact, it only needs to scan the last end point to the latest compaction position.
-
It is necessary to set a certain threshold for the storage of offset in memory, and build a secondary index after arrival
-
At this time, base on
CopyAndWriteList, if there is a request to read the offset, it will be refreshed according to the secondary index
FEATURE REQUEST
-
Please describe the feature you are requesting.
-
Provide any additional detail on your proposed use case for this feature.
-
Indicate the importance of this issue to you (blocker, must-have, should-have, nice-to-have). Are you currently using any workarounds to address this issue?
-
If there are some sub-tasks involved, use -[] for each sub-task and create a corresponding issue to map to the sub-task:
- sub-task1-issue-number: sub-task1 description here,
- sub-task2-issue-number: sub-task2 description here,
- ...