diff --git a/en/docs/deploy-and-publish/deploy-on-gateway/choreo-connect/configurations/router-configurations.md b/en/docs/deploy-and-publish/deploy-on-gateway/choreo-connect/configurations/router-configurations.md
index 4fe3355eca..744f8394ae 100644
--- a/en/docs/deploy-and-publish/deploy-on-gateway/choreo-connect/configurations/router-configurations.md
+++ b/en/docs/deploy-and-publish/deploy-on-gateway/choreo-connect/configurations/router-configurations.md
@@ -52,6 +52,7 @@ See the example .toml file given below.
enforcerResponseTimeoutInSeconds = 20
systemHost = "localhost"
useRemoteAddress = false
+ perConnectionBufferLimitBytes = 1048576
@@ -218,6 +219,28 @@ See the example .toml file given below.
+
+
+ perConnectionBufferLimitBytes
+
+
+
+
+ integer
+
+
+ Default: 1048576
+
+
+
+
The buffer limit per connection in Bytes. Default value is 1 MiB
+
+
+
Update Level 4
+
This feature is available only as an update, after Update level 1.2.0.4 (released on 21 Nov 2023) and further. For more information regarding Choreo Connect updates, see here.
+
+
+
diff --git a/en/tools/config-catalog-generator-cc/data/router/configs.json b/en/tools/config-catalog-generator-cc/data/router/configs.json
index ba0775df3d..b400d424fe 100755
--- a/en/tools/config-catalog-generator-cc/data/router/configs.json
+++ b/en/tools/config-catalog-generator-cc/data/router/configs.json
@@ -63,6 +63,13 @@
"required": false,
"default": false,
"description": "If configured as true, the Router appends the immediate downstream IP address to the x-forward-for header."
+ },
+ {
+ "name": "perConnectionBufferLimitBytes",
+ "type": "integer",
+ "required": false,
+ "default": "1048576",
+ "description": "The buffered payload limit per connection in Bytes. Default value is 1 MiB"
}
]
}
diff --git a/en/tools/config-catalog-generator-cc/data/router/router.toml b/en/tools/config-catalog-generator-cc/data/router/router.toml
index 54b4055c25..0243325f9c 100644
--- a/en/tools/config-catalog-generator-cc/data/router/router.toml
+++ b/en/tools/config-catalog-generator-cc/data/router/router.toml
@@ -7,3 +7,4 @@
enforcerResponseTimeoutInSeconds = 20
systemHost = "localhost"
useRemoteAddress = false
+ perConnectionBufferLimitBytes = 1048576
diff --git a/en/tools/config-catalog-generator-cc/dist/router-configurations.md b/en/tools/config-catalog-generator-cc/dist/router-configurations.md
index 4fe3355eca..ce8d468d7b 100644
--- a/en/tools/config-catalog-generator-cc/dist/router-configurations.md
+++ b/en/tools/config-catalog-generator-cc/dist/router-configurations.md
@@ -52,6 +52,7 @@ See the example .toml file given below.
enforcerResponseTimeoutInSeconds = 20
systemHost = "localhost"
useRemoteAddress = false
+ perConnectionBufferLimitBytes = 1048576
@@ -217,6 +218,25 @@ See the example .toml file given below.
If configured as true, the Router appends the immediate downstream IP address to the x-forward-for header.
+
+
+ perConnectionBufferLimitBytes
+
+
+
+
+ integer
+
+
+
+ Default: 1048576
+
+
+
+
+
The buffered payload limit per connection in Bytes. Default value is 1 MiB
+
+