https://github.com/mictech/neo4j-ha-configuration
Neo4j HA cluster configuration (example)
https://github.com/mictech/neo4j-ha-configuration
Last synced: 11 months ago
JSON representation
Neo4j HA cluster configuration (example)
- Host: GitHub
- URL: https://github.com/mictech/neo4j-ha-configuration
- Owner: MicTech
- Created: 2015-03-11T13:06:11.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-08-24T07:26:11.000Z (almost 11 years ago)
- Last Synced: 2024-10-16T11:35:08.746Z (over 1 year ago)
- Language: Shell
- Size: 201 KB
- Stars: 2
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Neo4j HA cluster configuration (example)
====================
https://github.com/MicTech/neo4j-ha-configuration
HA cluster
---------------------
3x neo4j server
1x neo4j arbiter
1x HAproxy
###Neo4j configuration
- online backups disabled
- auth to access disabled
###HAproxy configuration
Configuration is optimized for reads and writes. All HTTP state-changing operation (POST, PUT, DELETE) are redirected to master and read (GET) operation to slaves.
[neo4j and haproxy: some best practices and tricks](http://blog.armbruster-it.de/2015/08/neo4j-and-haproxy-some-best-practices-and-tricks/)
####Transactional Cypher HTTP endpoint
Redirection of read and writes will not work for Cypher HTTP endpoint, because it's using POST method for all Cypher statements (reads and writes).
create.sh
---------------------
Script which will install Neo4j cluster on your local machine for the purpose of testing.