I’m trying to submit a big transaction. Both Sandbox and Sandbox classic throw the error
Exception in thread "main" io.grpc.StatusRuntimeException: RESOURCE_EXHAUSTED: gRPC message exceeds maximum size 4194304: 27317399
I’ve tried several variations of the --maxInboundMessageSize
flag, but none of them seem to have an effect:
daml start --sandbox-option="--maxInboundMessageSize=41943040"
daml start --sandbox-classic --sandbox-option="--maxInboundMessageSize=41943040"
daml start --sandbox-option="--maxInboundMessageSize" --sandbox-option="41943040"
daml start --sandbox-classic --sandbox-option="--maxInboundMessageSize" --sandbox-option="41943040"
daml start --sandbox-option=--maxInboundMessageSize --sandbox-option=41943040
daml start --sandbox-classic --sandbox-option=--maxInboundMessageSize --sandbox-option=41943040
Am I doing something wrong setting this flag? Am I setting the wrong flag? How do I increase the message size limit?