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
|The maximum number of records to pull per batch from Kafka. Increasing this number will mean
197
-
larger transactions in Neo4j memory and may improve throughput.
198
-
|500
199
-
200
-
|kafka.buffer.memory
201
-
|The total bytes of memory the producer can use to buffer records waiting. Use this to adjust
202
-
how much memory the plugin may require to hold messages not yet delivered to Neo4j
203
-
|33554432
204
-
205
-
|kafka.batch.size
206
-
|(Producer only) The producer will attempt to batch records together into fewer requests whenever multiple records are being sent to the same partition. This helps performance on both the client and the server. This configuration controls the default batch size in bytes.
207
-
|16384
208
-
209
-
|kafka.batch.size
210
-
|(Producer only) The producer will attempt to batch records together into fewer requests whenever multiple records are being sent to the same partition. This helps performance on both the client and the server. This configuration controls the default batch size in bytes.
211
-
|16384
212
-
213
-
|kafka.max.partition.fetch.bytes
214
-
|(Consumer only) The maximum amount of data per-partition the server will return. Records are fetched in batches by the consumer. If the first record batch in the first non-empty partition of the fetch is larger than this limit, the batch will still be returned to ensure that the consumer can make progress.
215
-
|1048576
216
-
217
-
|kafka.group.id
218
-
|A unique string that identifies the consumer group this consumer belongs to.
219
-
|N/A
220
-
|===
221
-
222
-
=== Restart Neo4j
223
-
224
-
Once the plugin is installed and configured, restarting the database will make it active.
225
-
If you have configured Neo4j to consume from kafka, it will begin immediately processing messages.
226
-
227
-
==== Confluent Cloud
228
-
229
-
Configuring a connection to a Confluent Cloud instance should follow
|The maximum number of records to pull per batch from Kafka. Increasing this number will mean
99
+
larger transactions in Neo4j memory and may improve throughput.
100
+
|500
101
+
102
+
|kafka.buffer.memory
103
+
|The total bytes of memory the producer can use to buffer records waiting. Use this to adjust
104
+
how much memory the plugin may require to hold messages not yet delivered to Neo4j
105
+
|33554432
106
+
107
+
|kafka.batch.size
108
+
|(Producer only) The producer will attempt to batch records together into fewer requests whenever multiple records are being sent to the same partition. This helps performance on both the client and the server. This configuration controls the default batch size in bytes.
109
+
|16384
110
+
111
+
|kafka.batch.size
112
+
|(Producer only) The producer will attempt to batch records together into fewer requests whenever multiple records are being sent to the same partition. This helps performance on both the client and the server. This configuration controls the default batch size in bytes.
113
+
|16384
114
+
115
+
|kafka.max.partition.fetch.bytes
116
+
|(Consumer only) The maximum amount of data per-partition the server will return. Records are fetched in batches by the consumer. If the first record batch in the first non-empty partition of the fetch is larger than this limit, the batch will still be returned to ensure that the consumer can make progress.
117
+
|1048576
118
+
119
+
|kafka.group.id
120
+
|A unique string that identifies the consumer group this consumer belongs to.
121
+
|N/A
122
+
|===
123
+
124
+
[[confluent_cloud]]
125
+
=== Confluent Cloud
126
+
127
+
Configuring a connection to a Confluent Cloud instance should follow
for more information. In particular, the configuration format used in `neo4j.conf` looks different.
147
+
148
+
Please note that the Neo4j Docker image use a naming convention; you can override every neo4j.conf property by prefix it with `NEO4J_` and using the following transformations:
149
+
150
+
* single underscore is converted in double underscore: `_ -> __`
151
+
* point is converted in single underscore: `.` -> `_`
0 commit comments