DarkKirb opened a new issue, #439: URL: https://github.com/apache/arrow-rs-object-store/issues/439
**Is your feature request related to a problem or challenge? Please describe what you are trying to do.** I am trying to perform a multipart upload from a client calling into my server application which wraps around object-store. The protocol is stateless, and the server is multithreaded. <!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] (This section helps Arrow developers understand the context and *why* for this feature, in addition to the *what*) --> **Describe the solution you'd like** <!-- A clear and concise description of what you want to happen. --> A `Sync` trait bound on the `MultipartUpload` trait, or an additional method on `ObjectStore` that returns a `Box<dyn MultipartUpload + Sync>`. **Describe alternatives you've considered** <!-- A clear and concise description of any alternative solutions or features you've considered. --> Upload each chunk as a separate file on the backend, and then once the upload is complete, reassemble it into one big file. This works, but has obvious file size limitations when trying to finalize the upload inside of the request deadline of 10s **Additional context** <!-- Add any other context or screenshots about the feature request here. --> -- 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: github-unsubscr...@arrow.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org