CASSANDRA-21644 Fix concurrent SAI vector inserts failing once jvector's per-graph pool limit is exceeded - #5101
Open
JeremiahDJordan wants to merge 4 commits into
Conversation
…aph pool limit patch by Jeremiah Jordan; reviewed by XXX for CASSANDRA-21644
…ol limit is exceeded patch by Jeremiah Jordan; reviewed by XXX for CASSANDRA-21644
…urrent writers Review update: TrieMemtable and the locking ShardedSkipListMemtable serialize updates per shard, so when they have no more shards than jvector's per-builder limit there is nothing for the semaphore to bound. Add Memtable.limitsConcurrentWritesTo(int), false by default, and let OnHeapGraph leave the semaphore out when it is true. patch by Jeremiah Jordan; reviewed by XXX for CASSANDRA-21644
Review update: the mocked memtable always answered false to limitsConcurrentWritesTo(), so the tests never took the path where OnHeapGraph relies on the memtable and creates no semaphore. Have the mock answer according to the number of writer threads each test actually uses, so the tests within jvector's limit skip the semaphore and the test beyond it exercises it. The memtable implementations themselves are covered by MemtableConcurrentWriteLimitTest. Also the doc nit. patch by Jeremiah Jordan; reviewed by XXX for CASSANDRA-21644
JeremiahDJordan
force-pushed
the
CASSANDRA-21644-vectormemoryindex-jvector-cap
branch
from
September 4, 2026 23:02
14ae442 to
018fc95
Compare
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.
Fix concurrent SAI vector inserts failing once jvector's per-graph pool limit is exceeded.