如何将特定类型的属性添加到 gremlinpython 中?
How to add properties with a specific type into gremlinpython?
目前我正在尝试通过 gremlinpython 以编程方式从 igraph 导入一个大图。我对 gremlin 和我可以使用它的端点相当陌生。我目前面临的问题是 node/edge 中的 属性 可以有多种类型。 (例如:-> Bool 或 None 类型 | Int、Long 等。)
我在将它导入这个 gremlin-server 时没有注意到任何错误(这叫做 Apache TinkerGraph-Server 吗?我应该怎么称呼它?)。貌似相同属性的类型可以随意
然而,当使用 JanusGraph 时,我收到多个错误:
gremlin_python.driver.protocol.GremlinServerError: 500: Value [XXX] is not an instance of the expected data type for property key [YYY] and cannot be converted. Expected: class <SomeClass>, found: class <SomeOtherClass>
例如执行:
conn = DriverRemoteConnection("ws://localhost:8182/gremlin", "g")
remote_graph = traversal().withRemote(conn)
remote_graph.addV().property("test", 10000).next()
remote_graph.addV().property("test", 100000000000000000000000).next() # <- Causes an error on JanusGraph
我可以将某些属性转换为其他数据类型 (Bool/None-Type-> -1,0,1),因此我可以避免此错误。但我不确定我应该如何处理上面提供的示例。有没有办法显式设置 属性 的类型(至少是数字类型),以便服务器知道存储它,例如作为 Long/BigInt 而不是 Int?特别是因为在 python3 中 long(/bigint) 和 int 之间不再有区别。
所以具体是不是有下面这样的东西?:
例如。执行:
remote_graph.addV().property("test", 10000).asLong().next()
remote_graph.addV().property("test", 10000, <Type: Long>).next()
Gremlin 确实有 special class 来确保 Java Long
。你可以只做 long(10000)
给定适当的导入,如:from gremlin_python.statics import long
目前我正在尝试通过 gremlinpython 以编程方式从 igraph 导入一个大图。我对 gremlin 和我可以使用它的端点相当陌生。我目前面临的问题是 node/edge 中的 属性 可以有多种类型。 (例如:-> Bool 或 None 类型 | Int、Long 等。)
我在将它导入这个 gremlin-server 时没有注意到任何错误(这叫做 Apache TinkerGraph-Server 吗?我应该怎么称呼它?)。貌似相同属性的类型可以随意
然而,当使用 JanusGraph 时,我收到多个错误:
gremlin_python.driver.protocol.GremlinServerError: 500: Value [XXX] is not an instance of the expected data type for property key [YYY] and cannot be converted. Expected: class <SomeClass>, found: class <SomeOtherClass>
例如执行:
conn = DriverRemoteConnection("ws://localhost:8182/gremlin", "g")
remote_graph = traversal().withRemote(conn)
remote_graph.addV().property("test", 10000).next()
remote_graph.addV().property("test", 100000000000000000000000).next() # <- Causes an error on JanusGraph
我可以将某些属性转换为其他数据类型 (Bool/None-Type-> -1,0,1),因此我可以避免此错误。但我不确定我应该如何处理上面提供的示例。有没有办法显式设置 属性 的类型(至少是数字类型),以便服务器知道存储它,例如作为 Long/BigInt 而不是 Int?特别是因为在 python3 中 long(/bigint) 和 int 之间不再有区别。
所以具体是不是有下面这样的东西?: 例如。执行:
remote_graph.addV().property("test", 10000).asLong().next()
remote_graph.addV().property("test", 10000, <Type: Long>).next()
Gremlin 确实有 special class 来确保 Java Long
。你可以只做 long(10000)
给定适当的导入,如:from gremlin_python.statics import long