JanusGraph

JanusGraph---Graph Partitioning

2017-10-19  本文已影响218人  zlcook

图分区

JanusGraph Data Layout

随机分区策略(默认策略)

精确分区

cluster.partition = true       //开启集群自定义分区策略
cluster.max-partitions = 32       //最大的虚拟分区数
ids.flush = false

Edge Cut(默认)

Vertex Cut

mgmt = graph.openManagement()
mgmt.makeVertexLabel('user').make()      //正常vertex label
mgmt.makeVertexLabel('product').partition().make()  // 分区vertex label
mgmt.commit()

Random vs. Explicit Partitioning 建议

参考文章

图分区

上一篇下一篇

猜你喜欢

热点阅读