-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathneo4j-sink-configuration.properties
More file actions
29 lines (29 loc) · 2.15 KB
/
neo4j-sink-configuration.properties
File metadata and controls
29 lines (29 loc) · 2.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
##
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
##
## Connection Properties
neo4j.cdc.source-id.topics=Type: String;\nDescription: The topic list (separated by semicolon) that manages CDC events with the `SourceId` strategy
neo4j.cdc.source-id.label-name=Type: String;\nDescription: The label name attached to the events with the `SourceId` strategy (default SourceEvent)
neo4j.cdc.source-id.property-name=Type: String;\nDescription: The id property name attached to the events with the `SourceId` strategy (default sourceId)
neo4j.cdc.schema.topics=Type: String;\nDescription: The topic list (separated by semicolon) that manages CDC events with the `Schema` strategy
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)
neo4j.cud.topics=Type: String;\nDescription: The topic list (separated by semicolon) that manages CUD events
neo4j.pattern.node.merge-properties=Type: Boolean;\nDescription: If enabled nodes properties will be merged when \
using Sink `Node pattern` strategy (default false). In case of using Sink `Relationship pattern` strategy edge nodes properties will be merged when \
creating relationships (default false)
neo4j.pattern.relationship.merge-properties=Type: Boolean;\nDescription: If enabled relationships properties will be merged when creating relationships \
using Sink `Relationship pattern` strategy (default false)
neo4j.batch-size=Type: Integer;\nDescription: Max number of messages processed per batch.
neo4j.batch-timeout=Type: Duration;\nDescription: Maximum amount of time a batch is allowed to be processed.