使用 Java API 在 Titan 中设置我们自己的顶点 ID



我想像下面提到的那样设置自己的id到顶点。

BaseConfiguration configuration = new BaseConfiguration();
configuration.setProperty("storage.backend", "hbase");
configuration.setProperty("storage.hostname", "slave05");
configuration.setProperty("storage.port", "2181");
configuration.setProperty("storage.tablename", "REC_GRAPH1");
TitanGraph graph = TitanFactory.open(configuration);
Vertex vertex = graph.addVertex(200);
graph.commit();

但我不能..我想我缺少一些配置设置。

请帮助我..

谢谢维韦克

坦分配了自己的标识符。 您不能分配自己的。 此行为是大多数图形数据库的典型行为(几乎所有蓝图实现中都会发现这种情况)。 如果你有一个你自定义的标识符,你应该创建一个适当的索引来快速查找该值,并将其视为顶点上的一个属性。

相关内容

  • 没有找到相关文章

最新更新