netthier opened a new issue, #5694: URL: https://github.com/apache/arrow-rs/issues/5694
**Is your feature request related to a problem or challenge? Please describe what you are trying to do.** <!-- 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*) --> I want to be able to allow users to upload files to an object store using its multipart API without proxying the data through my server. **Describe the solution you'd like** <!-- A clear and concise description of what you want to happen. --> Currently, signed URLs can be created through the `Signer` trait. It only has a single method which is highly generic across all request types. Not only does this mean that one cannot sign multipart requests, but it also means that one runs into problems such as https://github.com/apache/arrow-rs/issues/5691 for PUT requests. If the `Signer` API were made more granular, like the `ObjectStore` API, e.g. with separate methods for signing `get`, `put`, `multipart`, etc. requests, this could be solved at the cost of more boilerplate. **Describe alternatives you've considered** <!-- A clear and concise description of any alternative solutions or features you've considered. --> I can't think of good alternatives that would also allow for multipart uploads. <!-- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
