We are using Janus 0.2 with Cassandra and ElasticSearch (elasticsearch enabled in the yaml config file but not used).
We are trying to move data from one environment to another.
We have used Cassandra nodetool snapshot to backup the Cassandra node (which has 100% of the data, simple cluster for time being). We only backup all the tables under the keyspace cassandra
On a new cluster, with no data, we use the sstableloader for each snapshot.
No issue so far.
Janusgraph cache is disabled to keep it simple.
We can do a count() and get the same result on the source environment and the one we restored the data upon.
We can query a specific element.
However we cannot do a query with has(). It throws errors.
We thought the Janusgraph index was stored inside a Cassandra table and that if we restored all the tables under the janusgraph keyspace, we would be fine.
What are we missing here?