Questions tagged [neo4j]

Neo4j is an open-source graph database implemented in Java, available in both standalone and embedded runtimes. The standalone implementation may be run in single-server or HA configurations. There are various language SDKs as well as a language-agnostic REST API.

Neo4j is an open-source graph database implemented in Java. See http://neo4j.org/ for additional documentation.

Neo4j stores its data as a property graph: nodes are connected through relationships, and both nodes and relationships may have properties. It features:

  • true ACID transactions,
  • high availability,
  • scales to billions of nodes and relationships,
  • high speed querying through traversals,
  • declarative graph query language (Cypher).

From an API standpoint, Neo4j is built atop a REST API, with several language-specific SDKs and frameworks implemented on top of this API.

19 questions
0
votes
1 answer

Neo4j HA scale out scenario

Is it possible or even feasible to start Neo4j HA with one master and add slave in high traffic time with some sort of load balancing? From Neo4j Doc : Neo4j HA requires a quorum in order to serve write load. What this means is that a strict…
Farvashani
  • 111
  • 3
0
votes
1 answer

Remove timestamps from neo4j logs

I'm running neo4j in a CoreOS unit as a docker container. The logs coming from neo4j contain timestamps, but the journal system in CoreOS also has its own timestamps. I'd like to remove the timestamps from the neo4j logs and just let the journal…
brendanjerwin
  • 132
  • 4
  • 5
0
votes
0 answers

Optimal automated neo4j backup startegy

I'm trying to figure out the most optimal way to do automated daily backups of my > 2TBs neo4j database. I need to get a db copy and upload it to S3. I have a neo4j cluster with 1 primary db and 2 secondaries. I have the neo4j data…
0
votes
1 answer

Install Neo4j 4.2.1 on SUSE SLES12

I´m currently running neo4j 3.5.11 on a SUSE SLES 12 SP5 and I want to Upgrade to Version 4.2.1. Official Docs (https://neo4j.com/docs/operations-manual/4.2/installation/linux/rpm/#linux-rpm-suse) tell me to install at least Java 11 runtime. So I…
mobin
  • 101
  • 1
1
2