4 ms·
You can configure the message size limit on your gRPC server, doesn't that fix your issue?
by brinox 5y ago
You can configure the message size limit on your gRPC server, doesn't that fix your issue?
- CommonGuy 5y agoAnother option could be to "chunk" the messages with client-/server-streaming or bi-directional calls. But if you call your API from a browser, that may not be possible yet
- sjnair96 5y agoYes, but that would involve us digging into the code of the gRPC server, which is unfortunately closed to us :(
- sjnair96 5y agoAhh, we don't have access to the server. It's closed - an NVIDIA inference engine. Which under the hood talks to their Triton engine. Unfortunately, while Triton allows configuring the limit, the layer in front of it eats our channel options which have the message size configurations.