Is there any way to dynamically configure Neo4j with Apache Kafka?

In order to send messages from Neo4j to Kafka, i need to add a line to Neo4j configuration file. For example for a node with a certain label, i have to add:

streams.source.topic.nodes.myTopic=Label{myLabel} 

in order to send the events concerning myLable nodes to my Kafka instance according to Neo4j official documentation. This configuration is not part of the dynamically changeable queries in Neo4j. However i want to know if it is possible to add this line to my Neo4j configuration file dynamically so that i won’t need to change the configuration file manually? Note that i’m using a java application to consume Kafka events.

Add Comment
0 Answer(s)

Your Answer

By posting your answer, you agree to the privacy policy and terms of service.