根据日期为组聚合获取不同的标签顶点

nc1teljy  于 2021-06-10  发布在  Cassandra
关注(0)|答案(1)|浏览(248)
v1=graph.addVertex(label,"l1","submit_time",Fri Apr 26 21:01:36 PDT 2019) //v[2345432]
    v2=graph.addVertex(label,"l2","start_time",Fri Apr 26 22:01:36 PDT 2019) // v[409632904]
    v3=graph.addVertex(label,"l2","start_time",Fri Apr 26 22:01:36 PDT 2019)  //v[204824704]
    v4=graph.addVertex(label,"l2","start_time",Fri Apr 26 23:01:36 PDT 2019). //v[307241008]

    Edge e1 = v1.addEdge("e1", v2);
    Edge e2 = v1.addEdge("e1", v3);
    Edge e3 = v1.addEdge("e1", v4);

    g.V().hasLabel("l2").group().by(map{(it.get().value("start_time").getYear()+1900)+"/"+(it.get().value("start_time").getMonth()+1)+"/"+it.get().value("start_time").getDate()+" "+it.get().value("start_time").getHours()})

我们得到以下输出:输出1:2019/4/26 23:[v[30724108]],2019/4/26 22:[v[409632904],v[204824704]]
有谁能帮我得到每个聚合值(由l2聚合,所有l2顶点都有到l1的边),所以我需要在单个查询中也得到它对应的l1标签顶点。例如:输出2:2019/4/26 23:[v[307241008]],v[2345432]2019/4/26 22:[v[409632904],v[204824704]],v[2345432]谢谢。

fcipmucu

fcipmucu1#

让我先用一个合适的脚本来创建示例图,这样其他人就可以更容易地遵循:

g = TinkerGraph.open().traversal()
g.addV('l1').
    property(id, 2345432).
    property('submit_time', new Date('Fri Apr 26 21:01:36 PDT 2019')).
  addV('l2').
    property(id, 409632904).
    property('start_time', new Date('Fri Apr 26 22:01:36 PDT 2019')).
  addV('l2').
    property(id, 204824704).
    property('start_time', new Date('Fri Apr 26 22:01:36 PDT 2019')).
  addV('l2').
    property(id, 307241008).
    property('start_time', new Date('Fri Apr 26 23:01:36 PDT 2019')).
  addE('e1').from(V(2345432)).to(V(409632904)).
  addE('e1').from(V(2345432)).to(V(204824704)).
  addE('e1').from(V(2345432)).to(V(307241008)).iterate()

并且您的查询格式正确:

g.V().hasLabel("l2").
  group().
    by {(it.value("start_time").getYear() + 1900) + "/" +
        (it.value("start_time").getMonth() + 1) + "/" +
         it.value("start_time").getDate() + " " +
         it.value("start_time").getHours()}

现在,如果要添加所有 l1 顶点,不能再使用简单的 Map 为了你的结果。每个条目都需要自己的Map,因此可以捕获第三个字段。因此,您需要展开Map并使用 project() 步骤:

g.V().hasLabel("l2").
  group().
    by {(it.value("start_time").getYear() + 1900) + "/" +
        (it.value("start_time").getMonth() + 1) + "/" +
         it.value("start_time").getDate() + " " +
         it.value("start_time").getHours()}.
  unfold().
  project('time','l2','l1').
    by(keys).
    by(values).
    by(select(values).unfold().in('e1').dedup().fold())

这将产生:

gremlin> g.V().hasLabel("l2").
......1>   group().
......2>     by {(it.value("start_time").getYear() + 1900) + "/" +
......3>         (it.value("start_time").getMonth() + 1) + "/" +
......4>          it.value("start_time").getDate() + " " +
......5>          it.value("start_time").getHours()}.
......6>   unfold().
......7>   project('time','l2','l1').
......8>     by(keys).
......9>     by(values).
.....10>     by(select(values).unfold().in('e1').dedup().fold())
==>[time:2019/4/26 23,l2:[v[307241008]],l1:[v[2345432]]]
==>[time:2019/4/26 22,l2:[v[409632904],v[204824704]],l1:[v[2345432]]]

相关问题