diff --git a/docs/api-reference/stream-collector/configure/index.md b/docs/api-reference/stream-collector/configure/index.md index 528d8282c0..6f2fb84236 100644 --- a/docs/api-reference/stream-collector/configure/index.md +++ b/docs/api-reference/stream-collector/configure/index.md @@ -274,10 +274,12 @@ sqsBadBuffer = {bad-sqs-queue-url} Since version 3.0.0 networking settings are configured in its own `collector.networking` section: -| parameter | description | -|------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------| +| parameter | description | +|--------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------| | `collector.networking.maxConnections` (since *3.0.0*) | Optional. Default: `1024`. Maximum number of concurrent active connection. | | `collector.networking.idleTimeout` (since *3.0.0*) | Optional. Default: `610 seconds`. Maximum inactivity time for a network connection. If no data is sent within that time, the connection is closed. | | `collector.networking.responseHeaderTimeout` (since *3.2.0*) | Optional. Default: `30 seconds`. Time from when the request is made until a response line is generated before a 503 response is returned. | | `collector.networking.maxRequestLineLength` (since *3.2.0*) | Optional. Default: `20480`. Maximum request line to parse. If exceeded returns a 400 Bad Request. | | `collector.networking.maxHeadersLength` (since *3.2.0*) | Optional. Default: `40960`. Maximum data that composes the headers. If exceeded returns a 400 Bad Request. | +| `collector.networking.maxPayloadSize` (since *3.3.0*) | Optional. Default: `1048576` (1 MB). Maximum size of an event within payload allowed before emitting an Size Violation event. Returns 200 OK. | +| `collector.networking.dropPayloadSize` (since *3.3.0*) | Optional. Default: `2097152` (2 MB). Maximum body payload size allowed before rejecting the request. If exceeded returns a 413 Payload Too Large. | diff --git a/src/componentVersions.js b/src/componentVersions.js index 5ca150c564..41d623c370 100644 --- a/src/componentVersions.js +++ b/src/componentVersions.js @@ -22,7 +22,7 @@ export const versions = { webViewTracker: '0.2.1', // Core pipeline - collector: '3.2.1', + collector: '3.3.0', enrich: '5.1.2', sqs2kinesis: '1.0.4', dataflowRunner: '0.7.5',