Skip to content

Commit

Permalink
chore: add docs
Browse files Browse the repository at this point in the history
Signed-off-by: Ion Koutsouris <[email protected]>
  • Loading branch information
ion-elgreco committed Jan 15, 2025
1 parent 99d59dc commit 281825e
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
19 changes: 19 additions & 0 deletions docs/integrations/object-storage/special_configuration.md
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 |
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ nav:
- integrations/object-storage/s3.md
- integrations/object-storage/s3-like.md
- integrations/object-storage/lakefs.md
- integrations/object-storage/special_configuration.md
- Arrow: integrations/delta-lake-arrow.md
- Daft: integrations/delta-lake-daft.md
- Dagster: integrations/delta-lake-dagster.md
Expand Down

0 comments on commit 281825e

Please sign in to comment.