Read Only Janusgraph Instance
HI folks,
We have a usecase for accesing janusgraph in read only mode. We already have a read write deployment backed by bigtable. Was curious can we deploy one more deployment of janusgraph which is backed by same backend storage but only read only queries are allowed. I couldn't find a straight way to do it without adding an abstraction by having a readonlystrategy (although still need to test it).
2 Replies
You can simply deploy some JanusGraph Server instances with the same config, but with
storage.read-only=true
configured. That way, any traversals trying to mutate the graph will throw an exception on these instancesthanks. let me try this out.