-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pending memtable should be updated with the current mutable cf option… #73
Conversation
…s during activation
dfd77c9
to
8d578eb
Compare
Only now realising that the activation mechanism is not working correctly. We cannot change arena parameters after memtable rep construction (because the memtable rep constructor may use the arena to allocate memory). Memtable rep construction happens in the |
this what i wrote. that the arena on all the memtable rep is used only for memtable ios and what the insert incolve with (iterator etc) in the constructor it is not used. not for bucket and not for other things |
done what we agreed |
Unfortunately I missed another place where memory is allocated from the arena on memtable construction: the We might need to instead create a pool of actual memtables representations (not the |
pending memtable should be updated with the current mutable cf options during activation