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
Issue #542: Add a strategy to merge edge nodes properties when creating relationships using Relationship pattern strategy (#544)
* Issue #542: Add a strategy to merge edge nodes properties when creating relationships using Relationship pattern strategy
* some refactoring
Co-authored-by: Andrea Santurbano <[email protected]>
Copy file name to clipboardexpand all lines: kafka-connect-neo4j/src/main/resources/kafka-connect-neo4j.properties
+5
Original file line number
Diff line number
Diff line change
@@ -45,6 +45,11 @@ neo4j.topic.cdc.schema=Type: String;\nDescription: The topic list (separated by
45
45
neo4j.batch.parallelize=Type: Boolean;\nDescription: If enabled messages are processed concurrently in the sink. \
46
46
Non concurrent execution supports in-order processing, e.g. for CDC (default true)
47
47
neo4j.topic.cud=Type: String;\nDescription: The topic list (separated by semicolon) that manages CUD events
48
+
neo4j.topic.pattern.merge.node.properties.enabled=Type: Boolean;\nDescription: If enabled nodes properties will be merged when \
49
+
using Sink `Node pattern` strategy (default false). In case of using Sink `Relationship pattern` strategy edge nodes properties will be merged when \
50
+
creating relationships (default false)
51
+
neo4j.topic.pattern.merge.relationship.properties.enabled=Type: Boolean;\nDescription: If enabled relationships properties will be merged when creating relationships \
52
+
using Sink `Relationship pattern` strategy (default false)
48
53
49
54
## Source Properties
50
55
topic=Type: String;\nDescription: The topic where the Source will publish the data
0 commit comments