File tree Expand file tree Collapse file tree 6 files changed +33
-15
lines changed
3.10/develop/integrations/kafka-connect-arangodb-sink-connector
3.11/develop/integrations/kafka-connect-arangodb-sink-connector
3.12/develop/integrations/kafka-connect-arangodb-sink-connector Expand file tree Collapse file tree 6 files changed +33
-15
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ This connector is compatible with:
1818
1919- Kafka ` 2.x ` (from version ` 2.6 ` onward) and Kafka ` 3.x ` (all versions)
2020- JDK 8 and higher versions
21- - all the non-EOLed [ ArangoDB versions] ( https://www.arangodb.com/eol-notice )
21+ - ArangoDB 3.11.1 and higher versions
2222
2323## Installation
2424
@@ -254,13 +254,11 @@ See [SSL configuration](configuration.md#ssl) for further options.
254254## Limitations
255255
256256- The ` VST ` communication protocol (` connection.protocol=VST ` ) is currently not working (DE-619)
257- - Documents are inserted one by one, bulk inserts will be implemented in a future release (DE-627)
258- - In case of transient error, the entire Kafka Connect batch is retried (DE-651)
259257- Record values are required to be object-like structures (DE-644)
260258- Auto-creation of ArangoDB collection is not supported (DE-653)
261259- ` ssl.cert.value ` does not support multiple certificates (DE-655)
262- - Batch inserts are not guaranteed to be executed serially (FRB-300)
263- - Batch inserts may succeed for some documents while failing for others (FRB-300)
260+ - Batch writes are not guaranteed to be executed serially (FRB-300)
261+ - Batch writes may succeed for some documents while failing for others (FRB-300)
264262 This has two important consequences:
265263 - Transient errors might be retried and succeed at a later point
266264 - Data errors might be asynchronously reported to the DLQ
Original file line number Diff line number Diff line change @@ -173,6 +173,14 @@ to `update`:
173173- ` true ` : objects are merged
174174- ` false ` : existing document fields are overwritten
175175
176+ ### batch.size
177+
178+ - type: _ int_
179+ - default: ` 3_000 `
180+
181+ Specifies how many records to attempt to batch together for insertion or deletion
182+ into the destination collection.
183+
176184### insert.timeout.ms
177185
178186- type: _ int_
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ This connector is compatible with:
1818
1919- Kafka ` 2.x ` (from version ` 2.6 ` onward) and Kafka ` 3.x ` (all versions)
2020- JDK 8 and higher versions
21- - all the non-EOLed [ ArangoDB versions] ( https://www.arangodb.com/eol-notice )
21+ - ArangoDB 3.11.1 and higher versions
2222
2323## Installation
2424
@@ -254,13 +254,11 @@ See [SSL configuration](configuration.md#ssl) for further options.
254254## Limitations
255255
256256- The ` VST ` communication protocol (` connection.protocol=VST ` ) is currently not working (DE-619)
257- - Documents are inserted one by one, bulk inserts will be implemented in a future release (DE-627)
258- - In case of transient error, the entire Kafka Connect batch is retried (DE-651)
259257- Record values are required to be object-like structures (DE-644)
260258- Auto-creation of ArangoDB collection is not supported (DE-653)
261259- ` ssl.cert.value ` does not support multiple certificates (DE-655)
262- - Batch inserts are not guaranteed to be executed serially (FRB-300)
263- - Batch inserts may succeed for some documents while failing for others (FRB-300)
260+ - Batch writes are not guaranteed to be executed serially (FRB-300)
261+ - Batch writes may succeed for some documents while failing for others (FRB-300)
264262 This has two important consequences:
265263 - Transient errors might be retried and succeed at a later point
266264 - Data errors might be asynchronously reported to the DLQ
Original file line number Diff line number Diff line change @@ -173,6 +173,14 @@ to `update`:
173173- ` true ` : objects are merged
174174- ` false ` : existing document fields are overwritten
175175
176+ ### batch.size
177+
178+ - type: _ int_
179+ - default: ` 3_000 `
180+
181+ Specifies how many records to attempt to batch together for insertion or deletion
182+ into the destination collection.
183+
176184### insert.timeout.ms
177185
178186- type: _ int_
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ This connector is compatible with:
1818
1919- Kafka ` 2.x ` (from version ` 2.6 ` onward) and Kafka ` 3.x ` (all versions)
2020- JDK 8 and higher versions
21- - all the non-EOLed [ ArangoDB versions] ( https://www.arangodb.com/eol-notice )
21+ - ArangoDB 3.11.1 and higher versions
2222
2323## Installation
2424
@@ -254,13 +254,11 @@ See [SSL configuration](configuration.md#ssl) for further options.
254254## Limitations
255255
256256- The ` VST ` communication protocol (` connection.protocol=VST ` ) is currently not working (DE-619)
257- - Documents are inserted one by one, bulk inserts will be implemented in a future release (DE-627)
258- - In case of transient error, the entire Kafka Connect batch is retried (DE-651)
259257- Record values are required to be object-like structures (DE-644)
260258- Auto-creation of ArangoDB collection is not supported (DE-653)
261259- ` ssl.cert.value ` does not support multiple certificates (DE-655)
262- - Batch inserts are not guaranteed to be executed serially (FRB-300)
263- - Batch inserts may succeed for some documents while failing for others (FRB-300)
260+ - Batch writes are not guaranteed to be executed serially (FRB-300)
261+ - Batch writes may succeed for some documents while failing for others (FRB-300)
264262 This has two important consequences:
265263 - Transient errors might be retried and succeed at a later point
266264 - Data errors might be asynchronously reported to the DLQ
Original file line number Diff line number Diff line change @@ -173,6 +173,14 @@ to `update`:
173173- ` true ` : objects are merged
174174- ` false ` : existing document fields are overwritten
175175
176+ ### batch.size
177+
178+ - type: _ int_
179+ - default: ` 3_000 `
180+
181+ Specifies how many records to attempt to batch together for insertion or deletion
182+ into the destination collection.
183+
176184### insert.timeout.ms
177185
178186- type: _ int_
You can’t perform that action at this time.
0 commit comments