Add eviction metrics in binary allocator#14432
Merged
OneSizeFitsQuorum merged 3 commits intoapache:masterfrom Dec 17, 2024
Merged
Add eviction metrics in binary allocator#14432OneSizeFitsQuorum merged 3 commits intoapache:masterfrom
OneSizeFitsQuorum merged 3 commits intoapache:masterfrom
Conversation
iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/binaryallocator/arena/Arena.java
Show resolved
Hide resolved
...ns/src/main/java/org/apache/iotdb/commons/binaryallocator/metric/BinaryAllocatorMetrics.java
Outdated
Show resolved
Hide resolved
...ns/src/main/java/org/apache/iotdb/commons/binaryallocator/metric/BinaryAllocatorMetrics.java
Outdated
Show resolved
Hide resolved
...ore/node-commons/src/main/java/org/apache/iotdb/commons/binaryallocator/BinaryAllocator.java
Outdated
Show resolved
Hide resolved
...ore/node-commons/src/main/java/org/apache/iotdb/commons/binaryallocator/BinaryAllocator.java
Outdated
Show resolved
Hide resolved
iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/binaryallocator/arena/Arena.java
Outdated
Show resolved
Hide resolved
Signed-off-by: OneSizeFitQuorum <tanxinyu@apache.org>
MrQuansy
added a commit
to MrQuansy/iotdb
that referenced
this pull request
Dec 17, 2024
* add eviction metrics * fix * fix overflow Signed-off-by: OneSizeFitQuorum <tanxinyu@apache.org> --------- Signed-off-by: OneSizeFitQuorum <tanxinyu@apache.org> Co-authored-by: OneSizeFitQuorum <tanxinyu@apache.org>
OneSizeFitsQuorum
added a commit
that referenced
this pull request
Dec 17, 2024
Caideyipi
pushed a commit
to Caideyipi/iotdb
that referenced
this pull request
Mar 25, 2026
* add eviction metrics * fix * fix overflow --------- Signed-off-by: OneSizeFitQuorum <tanxinyu@apache.org> Co-authored-by: OneSizeFitQuorum <tanxinyu@apache.org>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR introduces new metrics to track memory eviction statistics in the Binary Allocator component. The allocator implements two distinct eviction strategies:
Sample-based eviction: Periodically samples memory regions to identify eviction candidates
GC-based eviction: Leverages garbage collection cycles to reclaim unused memory
The primary enhancement is the addition of metrics that monitor the cumulative size of evicted memory through both strategies. These metrics provide visibility into the allocator's memory reclamation behavior and efficiency.