我已经使用 OETL 将我的所有顶点插入到图表中。
现在我有一个文件,它以下列方式勾勒出边缘:
node_1,rel_type,node_2
11000001,relation_A,10208879
11000001,relation_A,10198662
11000001,relation_B,10159927
11000001,relation_C,10165779
如何使用 OrientDB OETL 工具导入它?
我尝试了以下方法:
"transformers": [
{ "csv": {} },
{ "command" : {
"command" : "create edge ${rel_type} from (select flatten(@rid) from V where node_id= ${node_1}) to (select flatten(@rid) from V where node_id = ${node_2})",
"output" : "edge"
}
}
],
但这无法正常工作,因为它无法解析 csv 中的值。