-
Guys, I'm currently struggling in creating a Janusgraph cluster. I read the official documents and i'm not clear yet how a cluster is created. My problem is how can we create a janusgraph/gremlin server cluster? OR, Is right that janusgraph read the data from backed storage, Then know each node of the cluster ?? Thanks and regards |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
A JanusGraph cluster is mostly a logical concept. They don't communicate directly. Rather, they communicate via the underlying backend storage. Race conditions can be avoided by using locking, which uses the underlying backend storage as the communication bridge. |
Beta Was this translation helpful? Give feedback.
-
Dynamic Graphs, In this section, I found:
What about the "a messaging log queue through the backend system", If this "messaging log queue" must be support by backend storage? OR, It is part of JanusGraph. |
Beta Was this translation helpful? Give feedback.
A JanusGraph cluster is mostly a logical concept. They don't communicate directly. Rather, they communicate via the underlying backend storage. Race conditions can be avoided by using locking, which uses the underlying backend storage as the communication bridge.