-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow for the token-space to be split up into a configurable amount of sub-ranges and concurrently scan a configurable subset of them. The algorithm used is that described in Avi's efficent range scan blog post [1]. The number of sub-ranges to split the token-space into can be set by the `-range-count` command line paramaters. This defaults to 1, in which case the table is scanned in a single query. The concurrency can be set with the `-concurrency` command line argument. Each sub-range will be an `op`. [1] https://www.scylladb.com/2017/02/13/efficient-full-table-scans-with-scylla-1-6/
- Loading branch information
Showing
4 changed files
with
102 additions
and
11 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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