Reputation: 6318
I have an HA Neo4j cluster of 3 server nodes. I'd like to understand the best way to add an additional server node to the cluster. Based on my current knowledge:
Is there a more automatic way to add new node to my HA cluster?
Upvotes: 1
Views: 152
Reputation: 39915
Starting with 1.9 there is no need to change the configuration of already existing cluster member if you want to add a new instance.
Key for this is using ha.discovery.url
as documented on http://docs.neo4j.org/chunked/stable/ha-configuration.html#_different_methods_for_participating_in_a_cluster.
Upvotes: 1