我使用json文件将节点和边缘加载到faunus gremlin但是它给我这样的错误......
java.io.IOException: A JSONObject text must end with '}' at character 1 of {
at com.thinkaurelius.faunus.formats.graphson.FaunusGraphSONUtility.fromJSON(FaunusGraphSONUtility.java:76)
at com.thinkaurelius.faunus.formats.graphson.GraphSONRecordReader.nextKeyValue(GraphSONRecordReader.java:41)
我有json文件(实际文件)的格式......
{
"mode": "NORMAL",
"vertices": [
{
"_id": "5",
"PostId": "5",
"Vtype": "Post",
"_type": "vertex"
},
{
"_id": "definitions",
"_type": "vertex",
"Count": "9",
"TagId": "definitions"
}
]
}
{
"mode": "NORMAL",
"edges": [
{
"_outV": "definitions",
"_type": "edge",
"_id": 0,
"_inV": "5",
"_label": "totalAuthorIs"
}
]
}
这里看看我在gremlin做了些什么: http://i.imgur.com/wzzOmw9.png
基本上只是在加载faunus.properties
后运行g.V.格式是否正确或应该采取其他措施来解决错误。无法理解问题的来源。
提前致谢
答案 0 :(得分:1)
您的示例显示的格式不是Faunus(aka titan-hadoop)可读的有效JSON格式。该示例显示了从Blueprints GraphSON编写器生成的边缘列表格式。 Faunus需要一个邻接列表格式,如文档中所示(Konstantin在原始问题的评论中正确提到):
http://s3.thinkaurelius.com/docs/titan/0.5.4/graphson-io-format.html
当Faunus去读取它时,邻接列表允许这样的文件在hadoop节点之间分割。