You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
Run compaction on a separate thread.
Offers a concurrent search over sstables using mutliple threads. Since we are concerned about recent values (as key-value pairs may get updated multiple times) we also terminate threads when a later partition discovers the key.
We deprecate the previous scan method that had the following flaws:
Loads the sstable to memory. This is a problem as sstables may grow as large as 100G.
Searches linearly even though sstable entries are sorted on keys.