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