Userwhite opened a new issue, #53139: URL: https://github.com/apache/doris/issues/53139
### Search before asking - [x] I had searched in the [issues](https://github.com/apache/doris/issues?q=is%3Aissue) and found no similar issues. ### Description Currently use libevent to handle http request, there are multi http threads for the same port. When request is sent to one thread, on_header、on_chunk_data、handle can only be executed on this thread. However, handle method need to wait for load finish, and will block all requests on this thread. How to reproduce? use group commit sync mode, it will happens. ### Solution To fix it, we make handle async by cherry-pick https://github.com/apache/doris/pull/36772. And, we add a logic to ensure free order is correct. ### 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]
