From 220e54bd72dc1f94ec80eea7b746441250990e6d Mon Sep 17 00:00:00 2001 From: Mirel Isaj <15373565+MyMirelHub@users.noreply.github.com> Date: Mon, 4 Aug 2025 15:19:35 +0200 Subject: [PATCH] docs: Add gRPC response settings to properties documentation (#1482) * docs: Add gRPC response settings to properties documentation Signed-off-by: MyMirelHub <15373565+MyMirelHub@users.noreply.github.com> * Apply suggestion from @javier-aliaga Co-authored-by: Javier Aliaga Signed-off-by: Mirel Isaj <15373565+MyMirelHub@users.noreply.github.com> --------- Signed-off-by: MyMirelHub <15373565+MyMirelHub@users.noreply.github.com> Signed-off-by: Mirel Isaj <15373565+MyMirelHub@users.noreply.github.com> Co-authored-by: Javier Aliaga Signed-off-by: sirivarma --- .../content/en/java-sdk-docs/java-client/properties.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/daprdocs/content/en/java-sdk-docs/java-client/properties.md b/daprdocs/content/en/java-sdk-docs/java-client/properties.md index 2f23a859d..2b26d87bd 100644 --- a/daprdocs/content/en/java-sdk-docs/java-client/properties.md +++ b/daprdocs/content/en/java-sdk-docs/java-client/properties.md @@ -60,6 +60,14 @@ Configure gRPC keepalive behavior using these environment variables: | `DAPR_GRPC_KEEP_ALIVE_TIMEOUT_SECONDS` | gRPC keepalive timeout in seconds | `5` | | `DAPR_GRPC_KEEP_ALIVE_WITHOUT_CALLS` | Whether to keep gRPC connection alive without calls | `true` | +#### Inbound Message Settings +Configure gRPC inbound message settings using these environment variables: + +| Environment Variable | Description | Default | +|---------------------|-------------|---------| +| `DAPR_GRPC_MAX_INBOUND_MESSAGE_SIZE_BYTES` | Dapr's maximum inbound message size for gRPC in bytes. This value sets the maximum size of a gRPC message that can be received by the application | `4194304` | +| `DAPR_GRPC_MAX_INBOUND_METADATA_SIZE_BYTES` | Dapr's maximum inbound metadata size for gRPC in bytes | `8192` | + ### HTTP Client Configuration These properties control the behavior of the HTTP client used for communication with the Dapr sidecar: