-
I want to embed janus server in my JVM based app but with google bigtable as storage backend. Is it posssible? if Yes is there any documentation which i can refer to set it up. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Yes, it's possible as with any other storage backend.
Where Notice, in case you run in embedded mode it's strongly recommended to run JanusGraph as close to your storage backends (bigtable) as possible as it will affect your performance. |
Beta Was this translation helpful? Give feedback.
-
I am able to make it work with following configuration storage.backend=hbase But it is not persisting the data in bigtable querying it back doesnot retrieve the data Am i still missing any conf and in the getIDBlock method of ConsistentKeyIDAuthority class i am getting block size of only 50 |
Beta Was this translation helpful? Give feedback.
I am able to make it work with following configuration
storage.backend=hbase
storage.hbase.ext.hbase.client.connection.impl=com.google.cloud.bigtable.hbase2_x.BigtableConnection
storage.hbase.ext.google.bigtable.project.id=project-id
storage.hbase.ext.google.bigtable.instance.id=instance-id
cache.db-cache=false
ids.authority.wait-time=5000
ids.renew-timeout=120000
ids.block-size=100000
ids.renew-percentage=0.3
storage.lock.wait-time=5000
But it is not persisting the data in bigtable querying it back doesnot retrieve the data
graph.traversal().addV("Person").property("name", name).next()
using above to add vertex
Am i still missing any conf and in the getIDBlock method of ConsistentKeyIDAu…