-
Notifications
You must be signed in to change notification settings - Fork 430
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ion Koutsouris <[email protected]>
- Loading branch information
1 parent
99d59dc
commit 281825e
Showing
2 changed files
with
20 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Advanced object storage configuration | ||
|
||
Delta-rs provides some addition values to be set in the storage_options for advanced use case: | ||
|
||
- Limit concurrent requests overall | ||
- Set retry configuration | ||
- Exponential backoff with decorrelated jitter algorithm details [See here for more details](https://docs.rs/object_store/latest/object_store/struct.BackoffConfig.html) | ||
- Mounted storage support | ||
|
||
|
||
| Config key | Description | | ||
| ----------------------- | --------------------------------- | | ||
| OBJECT_STORE_CONCURRENCY_LIMIT | The number of concurrent connections the underlying object store can create | | ||
| max_retries | The maximum number of times to retry a request. Set to 0 to disable retries | | ||
| retry_timeout | The maximum length of time from the initial request after which no further retries will be attempted | | ||
| backoff_config.init_backoff | The initial backoff duration | | ||
| backoff_config.max_backoff | The maximum backoff duration | | ||
| backoff_config.base | The multiplier to use for the next backoff duration | | ||
| MOUNT_ALLOW_UNSAFE_RENAME | If set it will allow unsafe renames on mounted storage | |
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