-
Notifications
You must be signed in to change notification settings - Fork 3k
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: Unexpected rpc msg size limit #29682
Conversation
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## master #29682 +/- ##
==========================================
- Coverage 83.72% 80.91% -2.82%
==========================================
Files 679 922 +243
Lines 108623 127409 +18786
==========================================
+ Hits 90949 103087 +12138
- Misses 14361 21028 +6667
+ Partials 3313 3294 -19
|
99c462a
to
85939bc
Compare
Signed-off-by: Wei Liu <wei.liu@zilliz.com>
85939bc
to
b2e9d87
Compare
@weiliu1031 E2e jenkins job failed, comment |
/run-cpu-e2e |
1 similar comment
/run-cpu-e2e |
rerun ut |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/lgtm
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: congqixia, weiliu1031 The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
due to `clientMaxSendSize` and `serverMaxRecvSize` will limit the rpc request size limit, they should use same config value, and `serverMaxSendSize` and `clientMaxRecvSize` will limit the rpc response size limit, they should use same config value too. This PR fix unexpected rpc msg limit which caused by the wrong usage of misunderstanding rpc config items Signed-off-by: Wei Liu <wei.liu@zilliz.com>
pr: #29682 due to `clientMaxSendSize` and `serverMaxRecvSize` will limit the rpc request size limit, they should use same config value, and `serverMaxSendSize` and `clientMaxRecvSize` will limit the rpc response size limit, they should use same config value too. This PR fix unexpected rpc msg limit which caused by the wrong usage of misunderstanding rpc config items Signed-off-by: Wei Liu <wei.liu@zilliz.com>
due to
clientMaxSendSize
andserverMaxRecvSize
will limit the rpc request size limit, they should use same config value, andserverMaxSendSize
andclientMaxRecvSize
will limit the rpc response size limit, they should use same config value too.This PR fix unexpected rpc msg limit which caused by the wrong usage of misunderstanding rpc config items