Gremlin 查询适用于 TinkerGraph、JanusGraph 和 Neo4j,但不适用于 DSE Graph 6.8.1

Posted

技术标签:

【中文标题】Gremlin 查询适用于 TinkerGraph、JanusGraph 和 Neo4j,但不适用于 DSE Graph 6.8.1【英文标题】:Gremlin query works in TinkerGraph, JanusGraph and Neo4j but not in DSE Graph 6.8.1 【发布时间】:2020-11-19 16:03:33 【问题描述】:

我有以下查询,它在使用 TinkerGraph、JanusGraph 和 Neo4j-Gremlin 时没有任何问题:

g.V().has('Account','address','0x0').
    out('sent').has('eventName','Transfer').as('t1').
    out('received_by').has('type','EOA').has('status','Active').as('a2').
    out('sent').has('eventName','Transfer').as('t2').
    where('t1',eq('t2')).by('address').
    where('t1',eq('t2')).by('amount').
    out('received_by').has('type','EOA').has('status','Active').as('a3').
    select('a3','a2').
        by('address').
    group().
        by('a3').
        by('a2').
    unfold().
    where(select(values).limit(local,2).count(local).is(gte(2).and(lte(1000))))

但是使用 DataStax Graph 我得到以下错误:

java.util.LinkedHashMap cannot be cast to org.apache.tinkerpop.gremlin.structure.Element

我知道问题出在选择之后,但我无法弄清楚哪一点确实失败了。任何想法都会有所帮助。谢谢。

【问题讨论】:

您使用的是什么版本的 DSE Graph? 能否请您也分享一段您的 system.log 的摘录?它应该包含一个带有 ClassCastException 的堆栈跟踪 @bechbd 我正在使用 DSE Graph 6.8.1 【参考方案1】:

DataStax Graph 6.8.1 使用早期版本的 TinkerPop 3.4.5。该版本不包含允许by(String)Map 上工作的the full release feature。您应该能够将遍历重写为:

g.V().has('Account','address','0x0').
    out('sent').has('eventName','Transfer').as('t1').
    out('received_by').has('type','EOA').has('status','Active').as('a2').
    out('sent').has('eventName','Transfer').as('t2').
    where('t1',eq('t2')).by('address').
    where('t1',eq('t2')).by('amount').
    out('received_by').has('type','EOA').has('status','Active').as('a3').
    select('a3','a2').
        by('address').
    group().
        by(select('a3')).
        by(select('a2').fold()).
    unfold().
    where(select(values).limit(local,2).count(local).is(gte(2).and(lte(1000))))

【讨论】:

像这样重写查询就可以了,非常感谢。

以上是关于Gremlin 查询适用于 TinkerGraph、JanusGraph 和 Neo4j,但不适用于 DSE Graph 6.8.1的主要内容,如果未能解决你的问题,请参考以下文章

Gremlin: How to connect to gremlin server console

Gremlin: How to connect to gremlin server console

Gremlin: How to connect to gremlin server console

如何在 TinkerPop 图中传播值

进入gremlin console退出gremlin console

在Gremlin Console上显示时间