2

我已经使用 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 中的值。

4

1 回答 1

1

您必须使用 $input 变量。

"transformers": [{
        "csv": {
            "separator": ","
        }
    },
    {
    "command" : {
            "command" : "create edge ${input.rel_type} from (select from V where node_id= ${input.node_1}) to (select from V where node_id = ${input.node_2})",
            "output" : "edge"
        }
    }
  ],

这个对我有用。

在此处输入图像描述

希望能帮助到你。

于 2016-05-10T10:29:21.693 回答