How to increase message size in grpc using python

前端 未结 3 1641
死守一世寂寞
死守一世寂寞 2021-01-04 10:30

I am using grpc for message passing and am testing a simple server and client. When my message size goes over the limit, I get this error.

grpc._channel._R         


        
3条回答
  •  温柔的废话
    2021-01-04 11:06

    You should not increase the message size.
    It comes with a performance penalty.
    In real situations one implements paging to split too large messages.

提交回复
热议问题