gaodayue opened a new pull request #3488: URL: https://github.com/apache/incubator-doris/pull/3488
Fixes #3487 We have some queries failed with the following logs ``` W0429 15:19:08.580521 38042 data_stream_sender.cpp:136] failed to send brpc batch, error=The server is overcrowded, error_text=[E1011]The server is overcrowded @xx.xx.xx.xx:8060 [R1][E1011]The server is overcrowded @10.16.212.49:8060 [R2][E1011]The server is overcrowded @xx.xx.xx.xx:8060 [R3][E1011]The server is overcrowded @xx.xx.xx.xx:8060 ``` The reason is that the query needs to shuffle some large batches (with big value like HLL or bitmap), and the default limit for BRPC socket_max_unwritten_bytes (64MB) is exceeded. I think we should allow user to config that parameter, just like 'brpc_max_body_size'. ---------------------------------------------------------------- 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. 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