Anytime the max_command_buffer_size is too small and we get this error:
channel buffer is full ({0} bytes), cannot grow more
we end up upping the value in the config and we go on.
Is an upper limit really useful? What's the worst that could happen here? Our channels will soon transmit binary serializations of protobuf messages, this leaves little room for errors.
Anytime the
max_command_buffer_size
is too small and we get this error:we end up upping the value in the config and we go on.
Is an upper limit really useful? What's the worst that could happen here? Our channels will soon transmit binary serializations of protobuf messages, this leaves little room for errors.