From 8aa2d26f32a8ed383d4b23f4c55c55c7513b6b63 Mon Sep 17 00:00:00 2001 From: MyMirelHub <15373565+MyMirelHub@users.noreply.github.com> Date: Mon, 4 Aug 2025 14:15:46 +0200 Subject: [PATCH 1/2] docs: Add gRPC response settings to properties documentation Signed-off-by: MyMirelHub <15373565+MyMirelHub@users.noreply.github.com> --- .../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 2f23a859dc..e6837fca1f 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_ENABLEDAPR_GRPC_MAX_INBOUND_MESSAGE_SIZE_BYTES_KEEP_ALIVE` | 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: From 914483b4a36edb8abd508501fbb4acf390648440 Mon Sep 17 00:00:00 2001 From: Mirel Isaj <15373565+MyMirelHub@users.noreply.github.com> Date: Mon, 4 Aug 2025 14:25:55 +0200 Subject: [PATCH 2/2] Apply suggestion from @javier-aliaga Co-authored-by: Javier Aliaga Signed-off-by: Mirel Isaj <15373565+MyMirelHub@users.noreply.github.com> --- daprdocs/content/en/java-sdk-docs/java-client/properties.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 e6837fca1f..2b26d87bdf 100644 --- a/daprdocs/content/en/java-sdk-docs/java-client/properties.md +++ b/daprdocs/content/en/java-sdk-docs/java-client/properties.md @@ -65,7 +65,7 @@ Configure gRPC inbound message settings using these environment variables: | Environment Variable | Description | Default | |---------------------|-------------|---------| -| `DAPR_GRPC_ENABLEDAPR_GRPC_MAX_INBOUND_MESSAGE_SIZE_BYTES_KEEP_ALIVE` | 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_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