Barre opened a new issue, #452: URL: https://github.com/apache/arrow-rs-object-store/issues/452
We're using object_store's `parse_url_opts` to create object stores from URLs like s3://bucket/path. However, there doesn't seem to be a way to configure RetryConfig when using this approach. Current code: https://github.com/Barre/ZeroFS/blob/c8e6da2443f8b767b990942e3efcea17d42bef7e/src/main.rs#L202-L205 **Problem** - `parse_url_opts` returns `Box<dyn ObjectStore>` - The `with_retry` method is only available on concrete implementations (e.g., `AmazonS3Builder`), not on the trait object - We need to configure retry behavior but can't access the builder pattern after using `parse_url_opts` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
