配置 gremlin-server 以使用 UUID 作为 vrtices 和 edges 的 id
Configure gremlin-server to use UUID as the id for vrtices and edges
我正在使用 apache-tinkerpop-gremlin-server-3.4.10 和默认的 gremlin-server.yaml
创建顶点和边时,默认id是Long,我想改用UUID。我找不到在服务器上执行此操作的简单直接的方法。
如果您使用默认 gremlin-server.yaml
,我假设您使用的是 TinkerGraph。该文件在以下位置配置了一个 TinkerGraph:
graph: conf/tinkergraph-empty.properties
其中应包含以下内容:
gremlin.graph=org.apache.tinkerpop.gremlin.tinkergraph.structure.TinkerGraph
gremlin.tinkergraph.vertexIdManager=LONG
将 vertexIdManager
更改为“UUID”并重新启动服务器。请参阅参考文档中的其他 TinkerGraph 配置选项:
https://tinkerpop.apache.org/docs/current/reference/#_configuration
我正在使用 apache-tinkerpop-gremlin-server-3.4.10 和默认的 gremlin-server.yaml
创建顶点和边时,默认id是Long,我想改用UUID。我找不到在服务器上执行此操作的简单直接的方法。
如果您使用默认 gremlin-server.yaml
,我假设您使用的是 TinkerGraph。该文件在以下位置配置了一个 TinkerGraph:
graph: conf/tinkergraph-empty.properties
其中应包含以下内容:
gremlin.graph=org.apache.tinkerpop.gremlin.tinkergraph.structure.TinkerGraph
gremlin.tinkergraph.vertexIdManager=LONG
将 vertexIdManager
更改为“UUID”并重新启动服务器。请参阅参考文档中的其他 TinkerGraph 配置选项:
https://tinkerpop.apache.org/docs/current/reference/#_configuration