-
Notifications
You must be signed in to change notification settings - Fork 4
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
feat(app): concurrent mode for parallel deletion of multiple buckets #288
Merged
Conversation
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
fix fix padded bucket_prefix printf change fix table
c7f6d3d
to
740665f
Compare
6529ac5
to
23069cf
Compare
refactor refactor refactor process refactor unit tests tests io mock refactor app test fix add test add test comment tests
9c685c2
to
a29495c
Compare
wip wip wip wip WIP: writer rev rev
9364c3c
to
dfe3755
Compare
dfe3755
to
d4a3763
Compare
Merged
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.
Concurrent Deletion of Multiple Buckets
The
-c | --concurrentMode
option allows you to delete multiple buckets in parallel. By default, when this option is specified, all buckets will be deleted in parallel.If you want to limit the number of parallel deletions, you can specify the
-n | --concurrencyNumber
option. For example,-c -n 5
will delete buckets with a maximum of 5 parallel operations.Too many parallel deletions may cause S3 API errors. If it fails, please run it again.
This option is not available in the Table Buckets Mode (
-t
) because the throttling threshold for S3 Tables is very low.