Reputation: 99
I'm using JanusGraph with ElasticSearch and Cassandra.
My question is how JanusGraph stores the data when I create a new entity in case that I'm using two databases (JanusGraph and ElasticSearch)
I could understand that ElasticSearch is used as index backend and Cassandra is the storage, but:
Upvotes: 6
Views: 575
Reputation: 16303
ElasticSearch indexes the data stored in Cassandra.
When you do graph traversals, it uses the search index to retrieve the data from Cassandra. Cheers!
Upvotes: 1