Skip to content

请教一些使用场景相关问题 #1230

Answered by siyuan0322
wuyueandrew asked this question in Q&A
Discussion options

You must be logged in to vote

GAE, GIE 区别

一个是图计算(图算法)引擎,一个是交互式分析(gremlin 查询)引擎,他们共享存储。

构建图数仓

1,2 步没有问题,3 中,a. GIE 能看到的图数据原始图数据一样; b. GAE 的运行结果目前支持作为属性 (property) 加回原图中。

GAE的计算结果能否直接写入GIE引擎

以上提到,支持将算法结果以属性的形式加回原图,举例如下, 将WCC的结果作为 group_id 的属性加回原图的 person Label 中。

g = load_modern_graph()
projected = g.project(vertices={'person': []}, edges={'knows': []})
ret = graphscope.wcc(projected)
g2 = g.add_column(ret, selector={'group': 'r'})

持久化

Session 其实是没有 Schema 的,一个 Session 可以载入多个图。 你的意思是,将载好的图存储到磁盘上可以将来使用?

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@wuyueandrew
Comment options

@siyuan0322
Comment options

Answer selected by wuyueandrew
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants