-
Notifications
You must be signed in to change notification settings - Fork 3.7k
[fix](rpc) fix transfer large data and enable transfer_large_data_by_brpc by default #35770 #36167
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[fix](rpc) fix transfer large data and enable transfer_large_data_by_brpc by default #35770 #36167
Conversation
…brpc by default (apache#35770) Issue Number: close #xxx when send large data by rpc,load will report the following error: ``` add batch req success but status isn't ok, err: [INTERNAL_ERROR]PStatus: (172.200.0.1)[INTERNAL_ERROR]fail to add batch in load channel. unknown load_id=0000000000000000-0000000000000000. ``` The maximum length of protobuf is 2GB. When it exceeds 2GB, we will use the brpc HTTP method. However, the block data was not removed during encoding, resulting in protobuf exceeding the length and encoding failure. The config of transfer_large_data_by_brpc was enabled by default on branch-2.0, so we also enable it on master.
|
run buildall |
|
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
|
clang-tidy review says "All clean, LGTM! 👍" |
TPC-H: Total hot run time: 49605 ms |
|
TeamCity be ut coverage result: |
TPC-DS: Total hot run time: 205673 ms |
ClickBench: Total hot run time: 31.05 s |
|
Load test result on machine: 'aliyun_ecs.c7a.8xlarge_32C64G' |
…brpc by default apache#35770 (apache#36167) cherry pick from apache#35770
cherry pick from #35770