无法通过批量导入程序导入neo4j中的所有数据

时间:2017-02-02 08:24:57

标签: maven neo4j

我试图导入Neo4J节点和关系。我有两个.csv文件(标签分隔),如下所示:

users.csv (包含10000个用户)

userID   name
1   Cedric
2   Kirby
3   Zachary
4   Hoyt
5   Ella
6   Darrel
..........
..........
..........

rels.csv (它包含以前用户之间的100.000关系)

idRel   id1 id2
1   4471    6462
2   4824    382
3   1936    9777
4   4448    5431

我在Ubuntu 16上,我使用jexp batch importer

执行./import-mvn.sh test.db sample/users.csv sample/rels.csv我可以正确导入所有10000个用户,但只能导入6077个关系(不是100.000,为什么?)。

我在终端中收到此错误:[ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.5.0:java (default-cli) on project batch-import: An exception occured while executing the Java class. null: InvocationTargetException: Node[100,used=false,rel=-1,prop=-1,labels=Inline(0x0:[]),light,secondaryUnitId=-1] not in use -> [Help 1]

1 个答案:

答案 0 :(得分:0)

也许您应该浏览一下官方导入工具,请参阅https://neo4j.com/docs/operations-manual/current/tutorial/import-tool/

除了标题格式差异外,格式基本相同。