You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: kafka-connect-neo4j/docker/readme.adoc
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,7 @@ You can set the following configuration values via Confluent Connect UI, or via
23
23
|neo4j.connection.liveness.check.timeout.msecs|Long| The max Neo4j liveness check timeout (default 1 hour)
24
24
|neo4j.connection.max.pool.size|Int| The max pool size (default 100)
25
25
|neo4j.load.balance.strategy|enum[ROUND_ROBIN, LEAST_CONNECTED]| The Neo4j load balance strategy (default LEAST_CONNECTED)
26
+
|neo4j.batch.parallelize|Boolean|(default true) While concurrent batch processing improves throughput, it might cause out-of-order handling of events. Set to `false` if you need application of messages with strict ordering, e.g. for change-data-capture (CDC) events.
neo4j.server.uri=Type: String;\nDescription: The Bolt URI (default bolt://localhost:7687)
18
17
neo4j.authentication.type=Type: enum[NONE, BASIC, KERBEROS];\nDescription: The authentication type (default BASIC)
19
18
neo4j.batch.size=Type: Int;\nDescription: The max number of events processed by the Cypher query (default 1000)
@@ -35,4 +34,5 @@ neo4j.retry.max.attemps=Type: Int;\nDescription: The maximum number of times to
35
34
neo4j.topic.cdc.sourceId=Type: String;\nDescription: The topic that manages CDC events with the `SourceId` strategy
36
35
neo4j.topic.cdc.sourceId.labelName=Type: String;\nDescription: The label name attached to the events with the `SourceId` strategy (default SourceEvent)
37
36
neo4j.topic.cdc.sourceId.idName=Type: String;\nDescription: The id property name attached to the events with the `SourceId` strategy (default sourceId)
38
-
neo4j.topic.cdc.schema=Type: String;\nDescription: The topic that manages CDC events with the `Schema` strategy
37
+
neo4j.topic.cdc.schema=Type: String;\nDescription: The topic that manages CDC events with the `Schema` strategy
38
+
neo4j.batch.parallelize=Type: Boolean;\nDescription: If enabled messages are processed concurrently in the sink. Non concurrent execution supports in-order processing, e.g. for CDC (default true)
0 commit comments