我需要实现它而不使用任何方法或图形计算机技术,因为OLAP图形计算机不支持gremlin服务器。
gremlin> g = traversal().withEmbedded(graph).withComputer()
No signature of method: org.apache.tinkerpop.gremlin.process.traversal.AnonymousTraversalSource.withEmbedded() is applicable for argument types: (org.apache.tinkerpop.gremlin.tinkergraph.structure.TinkerGraph) values: [tinkergraph[vertices:360 edges:1671]]
Type ':help' or ':h' for help.
Display stack trace? [yN]我在尝试图形计算机时遇到了这个错误。
发布于 2021-09-25 10:28:24
您使用的gremlin控制台版本早于3.4.9。异常只说明withEmbedded方法不存在。
如果您使用版本3.4.x且x< 9,则它将与以下内容一起工作:
g = traversal().withGraph(graph).withComputer()https://stackoverflow.com/questions/69278663
复制相似问题