Yukang-Lian opened a new pull request, #37569: URL: https://github.com/apache/doris/pull/37569
## Proposed changes <!--Describe your changes.--> Problem: The group commit WAL back pressure case failed. Reason: Previously, the group commit was restructured from **regular load** to **pipeline architecture load**, which improved the concurrency and speed of load. Consequently, the loads in the test case were completed much faster. The default batching time for a group commit is 10 seconds. Therefore, if all loads are finished in less than this time(10 seconds), the group commit data is not yet committed to the disk and visible, resulting in no data being returned by the final select statement. Solution: To resolve the issue, wait for one batching period (10 seconds) after completing all imports before executing the query. Plus, due to the faster speed of load, we move this case from p2 to p0. -- 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: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org