Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add configurations for collector 3.3.0 #1107

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docs/api-reference/stream-collector/configure/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. |
2 changes: 1 addition & 1 deletion src/componentVersions.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down