Trying to debug a TensorFlow model with the new TensorBoard debugger GUI. The communication between client (TensorFlow side) and server (TensorBoard side) fails with the following message:
grpc._channel._Rendezvous: <_Rendezvous of RPC that terminated with (StatusCode.RESOURCE_EXHAUSTED, Received message larger than max (11373336 vs. 4194304))>
Apparently the issue is well known in general and there are ways tricks to modify the max message size in grpc. However, in TensorFlow this is transparent to the user given that I am using the tf_debug.TensorBoardDebugWrapperSession wrapper.
My question is how to increase the max message size so I can debug my model. I am using TensorFlow 1.6 with Python 3.6.
Thank you!
grpc.max_send_message_sizeandgrpc.max_receive_message_sizeare arguments that you want to set? - Nathaniel Manista At Google