我是 atlas 和 janusgraph 的新手,我有一个本地设置的 atlas,其中 hbase 和 solr 作为带有虚拟数据的后端。我想使用 gremlin cli + gremlin 服务器并连接到 hbase 中的现有数据。即:查看和遍历虚拟地图集元数据对象。
这是我到目前为止所做的:
- 运行 atlas server + hbase + solr - 插入虚拟实体
- 使用正确的配置运行 gremlin 服务器
- 我已经设置
graph: { ConfigurationManagementGraph: ..}
为janusgraph-hbase-solr.properties
- 我已经设置
- 运行 gremlin cli,连接
:remote connect tinkerpop.server conf/remote.yaml session
gremlin 服务器就好了。 - 我做
graph = JanusGraphFactory.open(..../janusgraph-hbase-solr.properties)
和创造g = graph.traversal()
我能够创建自己的顶点和边并列出它们,但无法列出与图集相关的任何内容,即:实体等。
我错过了什么?我想连接到现有的图集设置并使用 gremlin cli 遍历图形。
谢谢