larger block size/cache & use bloom filters in pebble#47
Merged
Conversation
I noticed lots of cache thrashing when pods memory usage is nearing the limit, that puts the pod in a cycle of reading/invalidating indexes from disk and aggregate evaluation taking minutes sometimes. ``` 2 @ 0x485cee 0x46313d 0x463114 0x4877e5 0x14bb6cc 0x14bb6af 0x14bb025 0x14efb57 0x1559b14 0x1559a3b 0x1558d05 0x1647eb4 0x1647bb3 0x165f9cd 0x165e6a5 0x162266c 0x16220dd 0x236c350 0x2370a9e 0x236953f 0x2ab9086 0x2ab70df 0x50fe4b2 0x50fafb8 0x21ff766 0x48e821 2 @ 0x485cee 0x46313d 0x463114 0x487845 0x49a2cb 0x14bb8a6 0x14be4fc 0x14efe74 0x14efe64 0x155d2c5 0x155d1ee 0x155c539 0x155c036 0x1558e05 0x1647eb4 0x1647bb3 0x165f9cd 0x165e6a5 0x162266c 0x16220dd 0x236c350 0x2370a9e 0x236953f 0x2ab9086 0x2ab70df 0x50fe4b2 0x50fafb8 0x21ff766 0x48e821 ```
BrunoScheufler
approved these changes
May 4, 2026
darwin67
approved these changes
May 4, 2026
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.
I noticed lots of cache thrashing when pods memory usage is nearing the
limit, that puts the pod in a cycle of reading/invalidating indexes from
disk and aggregate evaluation taking minutes sometimes.