forked from cockroachdb/cockroach
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
importer: replace Clear/RevertRange calls with DeleteRange in IMPORT …
…rollbacks This patch replaces the ClearRange and RevertRange calls with MVCC DeleteRange during IMPORT rollbacks. In the predicate based DeleteRange call, the client's provided table span is partitioned in order to process the partitions in parallel. The new bulkio.import.predicate_delete_range_parallelism setting defines the number of workers that can issue DeleteRange requests in concurrently, and the new bulkio.import.predicate_delete_range_batch_size setting defines the number of ranges of data to include in a single DeleteRange request. Release note: none
- Loading branch information
Showing
5 changed files
with
251 additions
and
45 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
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