Skip to content

Commit fa59aac

Browse files
committed
Enrich 6.3.0
1 parent e10d637 commit fa59aac

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

docs/api-reference/enrichment-components/configuration-reference/index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,16 +93,19 @@ A minimal configuration file can be found on the [Github repo](https://github.co
9393
| `output.good.throttledBackoffPolicy.maxBackoff` (since *6.0.0*) | Optional. Default: `1 second`. Maximum backoff before retrying when writing fails with exceeded kinesis write throughput. |
9494
| `output.good.recordLimit` | Optional. Default: `500`. Maximum allowed to records we are allowed to send to Kinesis in 1 PutRecords request. |
9595
| `output.good.byteLimit` | Optional. Default: `5242880`. Maximum allowed to bytes we are allowed to send to Kinesis in 1 PutRecords request. |
96+
| `output.good.maxRetries` (since *6.3.0*) | Optional. Default: `10`. Maximum number of retries by Kinesis Client. |
9697
| `output.failed.streamName` | Required. E.g. `failed`. Name of the Kinesis stream that will receive the failed events (same format as the enriched events). |
9798
| `output.failed.throttledBackoffPolicy.minBackoff` (since *6.0.0*) | Same as `output.good.throttledBackoffPolicy.minBackoff` for failed events. |
9899
| `output.failed.throttledBackoffPolicy.maxBackoff` (since *6.0.0*) | Same as `output.good.throttledBackoffPolicy.maxBackoff` for failed events. |
99100
| `output.failed.recordLimit` | Same as `output.good.recordLimit` for failed events. |
100101
| `output.failed.byteLimit` | Same as `output.good.byteLimit` for failed events. |
102+
| `output.failed.maxRetries` | Same as `output.good.maxRetries` for failed events. |
101103
| `output.bad.streamName` | Required. E.g. `bad`. Name of the Kinesis stream that will receive the failed events in the "bad row" format (JSON). |
102104
| `output.bad.throttledBackoffPolicy.minBackoff` (since *6.0.0*) | Same as `output.good.throttledBackoffPolicy.minBackoff` for failed events in the "bad row" format (JSON). |
103105
| `output.bad.throttledBackoffPolicy.maxBackoff` (since *6.0.0*) | Same as `output.good.throttledBackoffPolicy.maxBackoff` for failed events in the "bad row" format (JSON). |
104106
| `output.bad.recordLimit` | Same as `output.good.recordLimit` for failed events in the "bad row" format (JSON). |
105107
| `output.bad.byteLimit` | Same as `output.good.byteLimit` for failed events in the "bad row" format (JSON). |
108+
| `output.bad.maxRetries` | Same as `output.good.maxRetries` for failed events in the "bad row" format (JSON). |
106109

107110
## enrich-kafka
108111

@@ -113,6 +116,7 @@ A minimal configuration file can be found on the [Github repo](https://github.co
113116
| `input.topicName` | Required. Name of the Kafka topic to read collector payloads from. |
114117
| `input.bootstrapServers` | Required. A list of `host:port` pairs to use for establishing the initial connection to the Kafka cluster |
115118
| `input.debounceCommitOffsets` (since *6.0.0*) | Optional. Default: `10 seconds`. How frequently to commit our progress back to kafka. By increasing this value, we decrease the number of requests made to the kafka broker. |
119+
| `input.commitTimeout` (since *6.3.0*) | Optional. Default: `15 seconds`. The time to wait for offset commits to complete. If an offset commit doesn't complete within this time, a CommitTimeoutException will be raised instead. |
116120
| `input.consumerConf` | Optional. Kafka consumer configuration. See [the docs](https://kafka.apache.org/documentation/#consumerconfigs) for all properties. |
117121
| `output.good.topicName` | Required. Name of the Kafka topic to write to |
118122
| `output.good.bootstrapServers` | Required. A list of host:port pairs to use for establishing the initial connection to the Kafka cluster |

src/componentVersions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export const versions = {
2222

2323
// Core pipeline
2424
collector: '3.7.0',
25-
enrich: '6.2.1',
25+
enrich: '6.3.0',
2626
sqs2kinesis: '1.0.4',
2727
dataflowRunner: '0.7.5',
2828
snowbridge: '3.6.2',

0 commit comments

Comments
 (0)