I have use janusgraph for almost two weeks ,now I am considering where is the 'distribute' of our janusgraph ?
As far as I know ,the backend storage of janusgraph could be hbase or Cassandra, the backend index could be elastic search which is a distribute database with index.
does it mean the 'distribute' of janusgraph is just the storage ?
can i build more janusgraph instance in a cluster which contains more than 10 computer?
if so how the instances communicate with each other and how they work together to finish one job.
if not what should i do to improve my janusgraph to serve for other service,should i build a project to manage a janusgraph cluster? is there any one could give me a help?
On Wed, Jan 31, 2018 at 10:00 PM jx ping <jcbm...@gmail.com> wrote:I have use janusgraph for almost two weeks ,now I am considering where is the 'distribute' of our janusgraph ?
As far as I know ,the backend storage of janusgraph could be hbase or Cassandra, the backend index could be elastic search which is a distribute database with index.
does it mean the 'distribute' of janusgraph is just the storage ?
can i build more janusgraph instance in a cluster which contains more than 10 computer?Yes, certainly, you can, e.g., create a cluster of N JanusGraph nodes, put a load balancer in front of that cluster, and use the endpoint to distribute your graph queries.
在 2018年2月1日星期四 UTC+8下午3:42:48,Misha Brukman写道:On Wed, Jan 31, 2018 at 10:00 PM jx ping <jcbm...@gmail.com> wrote:I have use janusgraph for almost two weeks ,now I am considering where is the 'distribute' of our janusgraph ?
As far as I know ,the backend storage of janusgraph could be hbase or Cassandra, the backend index could be elastic search which is a distribute database with index.
does it mean the 'distribute' of janusgraph is just the storage ?
can i build more janusgraph instance in a cluster which contains more than 10 computer?Yes, certainly, you can, e.g., create a cluster of N JanusGraph nodes, put a load balancer in front of that cluster, and use the endpoint to distribute your graph queries.Do you have some solution for load balancer ?
As I see in the source code ,the janusgraph use only one thread to execute trversal query ,have you implement a asynchronous method?or someone implements a threadpoolexecutor to query , if so i can serve more people in the same time