From 49f12294f9fc6411024a8c168dadf33bfd8c9600 Mon Sep 17 00:00:00 2001 From: Piotr Limanowski Date: Tue, 10 Dec 2024 13:35:09 +0100 Subject: [PATCH] Add configurations for collector 3.3.0 --- .../stream-collector/configure/index.md | 6 ++++-- src/componentVersions.js | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/pipeline-components-and-applications/stream-collector/configure/index.md b/docs/pipeline-components-and-applications/stream-collector/configure/index.md index f3897a3814..6d1c7b10dd 100644 --- a/docs/pipeline-components-and-applications/stream-collector/configure/index.md +++ b/docs/pipeline-components-and-applications/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 body payload size 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 5f063b6ec9..3d57d6c302 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',