zghong opened a new issue, #66527: URL: https://github.com/apache/doris/issues/66527
### Search before asking - [x] I had searched in the [issues](https://github.com/apache/doris/issues?q=is%3Aissue) and found no similar issues. ### Version 4.1.2, master ### What's Wrong? When querying a **GET pre-signed** object-storage URL via the `HTTP()`, the query fails with 403 Forbidden while getting the file size: > (1105, 'errCode = 2, detailMessage = Can not build http(): errCode = 2, detailMessage = Failed check http storage props, Failed to get file size for URI: http://.../xxx.txt?Expires=...&Signature=.... java.io.IOException: HTTP request failed with response code: 403, message: Forbidden') ### What You Expected? Query OK. ### How to Reproduce? ```sql SELECT * FROM HTTP( uri='http://storage.xx.local/20260128170024.txt?Expires=xx&AccessKey=xx&Signature=xx', format="csv") limit 10; ``` The exact same URL works fine with a GET request: ```sh wget http://storage.xx.local/20260128170024.txt?Expires=xx&AccessKey=xx&Signature=xx # returns 200 ``` ### Anything Else? _No response_ ### Are you willing to submit PR? - [x] Yes I am willing to submit a PR! ### Code of Conduct - [x] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct) -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
