我使用批量导入程序将关系数据转换为neo4j。我为此目的使用了batch-importer。但是我只能创建节点。我无法建立关系。
我在命令提示符中使用了这个命令:
java -server -Xmx4G -jar batch-import-jar-with-dependencies.jar target/muta-buyuk nodes.csv relations.csv
结果是:
Importing 5 Nodes took 0 seconds
Total import time: 1 seconds
我的nodes.csv结构是:
id name
1 kubra
2 ali
3 yusuf
4 esra
5 aysegul
我的relations.csv结构是:
start end type
1 2 parent_of
2 3 parent_of
3 4 parent_of
3 5 parent_of
1 2 ancestor_of
2 3 ancestor_of
3 4 ancestor_of
3 5 ancestor_of
1 3 ancestor_of
1 4 ancestor_of
1 5 ancestor_of
2 4 ancestor_of
2 5 ancestor_of