0

我有一个包含不同类型节点和关系的图表。每种类型的节点都有 3-4 个属性。为了在 HDFS 上进行测试,我使用 GraphSON 文件来存储这个图。现在我想用 Giraph 分析这个图。我探索了 Giraph 的 IO 类,还发现 Gremlin 可以直接加载 GraphSON。那么您能否解释一下如何使用 TinkerPop 堆栈将图形加载到 Giraph 中?

4

1 回答 1

2

See the Giraph sample in the docs, it does almost exactly what you're looking for. Instead of hadoop-gryo.properties use hadoop-graphson.properties (and of course adjust the input location setting, gremlin.hadoop.inputLocation, in the configuration file).

于 2015-09-30T01:30:09.267 回答