LuGuangming commented on code in PR #61788: URL: https://github.com/apache/doris/pull/61788#discussion_r3009407762
########## be/src/common/config.cpp: ########## @@ -336,7 +336,7 @@ DEFINE_mInt32(thrift_connect_timeout_seconds, "3"); DEFINE_mInt64(thrift_client_retry_interval_ms, "1000"); // max message size of thrift request // default: 100 * 1024 * 1024 -DEFINE_mInt64(thrift_max_message_size, "104857600"); +DEFINE_mInt32(thrift_max_message_size, "104857600"); Review Comment: The function setMaxMessageSize() definition in thrift package requires an int32 parameter, which length is sufficient. There is no need for int64 at present, and we will not use values of such a large size. <img width="1115" height="471" alt="image" src="https://github.com/user-attachments/assets/dd93e527-8208-4613-ae1f-d43499e2b876" /> -- 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]
