./neo4j-backup -from ha://10.10.30.31:5001 -to /mnt/backup/neo4j-backup
online_backup_server=10.10.30.31:6362 //this is fine as long as that port doesn't conflict with anything else ha.server_id=1 ha.initial_hosts=10.10.30.31:5001,10.10.30.32:5001,10.10.30.33:5001 ha.server=10.10.30.31:6363 // here we normally use the range 6001-..., but that shouldn't matter ha.cluster_server=10.10.30.31:5001
--
You received this message because you are subscribed to the Google Groups "Neo4j" group.
To unsubscribe from this group and stop receiving emails from it, send an email to neo4j+un...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Maybe the documation for the production cluster at http://docs.neo4j.org/chunked/milestone/ha-haproxy.html could be a little bit more detailed...
But for now I have a different problem: The HAProxy doesn't work fine with Neo4j Spatial. If I configure the HAProxy just to talk to slaves and create a layer from my C#-Client other a HTTP-command, the spatial index is created on the slaves but not on the master and I got errors when I try to add some nodes to the layer.Now I thought about a little workaround - adding the spatial index on the master and anything else over the slaves. I manged this over a context switching in the HAProxy. But when I try to add some nodes the scenario repeat again: no problems if I transfer all request to the master but quite slow and Bad Requests if the HAProxy just talks to slaves.Is it generally possible to use Neo4j Spatial in a HA cluster with a HAProxy? Or is the scenario other the REST-API simply not supported?
--
The Intention of the different sections in the chapter High Availability is clear to me - I think you missunderstood me.