Support requests larger than the default gRPC message length limit of 4 MB
Open
area/client
P1
- Dominant language
- C#
- Stars
- 1.2k
- Forks
- 378
- Avg merge
- 1d 22h
- Merged PRs (30d)
- 5
Description
The Dot Net SDK does not support gRPC payloads beyond the default 4 MB.
Allow configuring the max send and receive message length for gRPC
You have to set these gRPC client options. The value provided is in bytes with a default of 4 MB.
```
grpc.max_send_message_length
grpc.max_receive_message_length
```
For reference see:
https://github.com/dapr/python-sdk/pull/375
https://github.com/dapr/python-sdk/pull/458
EDIT:
Actors still appear to be using HTTP. Please verify that the request size limit can be configured for Actors also.
Contributor guide
Assessment
This issue has not been assessed yet.