details = "Received message larger than max (188400012 vs. 4194304)"

1 這個是由於grpc默認的傳輸數據大小爲4M,因此須要修改能接收數據的大小 MAX_MESSAGE_LENGTH=10010241024 能夠傳輸100Mserver

grpcServer = grpc.server(futures.ThreadPoolExecutor(max_workers=4),options=[('grpc.max_send_message_length', MAX_MESSAGE_LENGTH), ( 'grpc.max_receive_message_length', MAX_MESSAGE_LENGTH)])rpc

相關文章
相關標籤/搜索