java-sdk
java-sdk copied to clipboard
Ability to configure dapr client grpc channel and stub
Hi I would like to have the options to configure the grpc client for
- ManagedChannel : having all options that ManagedChannelBuilder expose. For example; io.grpc.ManagedChannelBuilder#maxInboundMessageSize
- Async stub: having all options that AbstractStub expose. For example: io.grpc.stub.AbstractStub#withMaxOutboundMessageSize Currently, I'm stuck since I need to have bigger payloads (in my case is when I want to set/get redis state store via the dapr client) and I don't have the options to change the default size of the inbound/outbound message size. Thanks