You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
but report grpc body is greater then 4M when key/value is big in etcd
Received_message larger than max(4194304)
This problem occurs because limit is not used in the body of _build_get_range_request,
but fix in the master branch, When will the next stable release be?
The text was updated successfully, but these errors were encountered:
I have solved this issue by setting grpc options. etcd3.client(host=host, port=port, grpc_options={'grpc.max_receive_message_length': -1, 'grpc.max_send_message_length': -1})
I have solved as following setting. etcd3.client(host=host, port=port, grpc_options=[('grpc.max_receive_message_length', -1), ('grpc.max_send_message_length', -1)])
I want to read the last revision of a key with prefix
but report
grpc body is greater then 4M
when key/value is big in etcdThis problem occurs because
limit
is not used in the body of_build_get_range_request
,but fix in the master branch, When will the next stable release be?
The text was updated successfully, but these errors were encountered: