orientdb oetl错误/我想要pokec数据

orientdb oetl错误/我想要pokec数据,orientdb,orientdb-etl,Orientdb,Orientdb Etl,要配置当前的pokec db./oetl.sh,我正在尝试。然而,管道出口一直在发生。我不知道是什么问题。帮助我。dburl也是一个编写得很好的代码,但是现在被删除了。我已经尝试了所有的设置,但它们不能。如果您这样做,数据将是良好的,但它不会自动关闭 { "config": { "parallel": true }, "source": { "file": { "pa

要配置当前的pokec db./oetl.sh,我正在尝试。然而,管道出口一直在发生。我不知道是什么问题。帮助我。dburl也是一个编写得很好的代码,但是现在被删除了。我已经尝试了所有的设置,但它们不能。如果您这样做,数据将是良好的,但它不会自动关闭

 {
  "config": {
    "parallel": true
  },
  "source": {
   "file": {
      "path": "/home/yuna/soc-pokec-profiles.txt",
      "lock" : true ,
      "encoding" : "UTF-8"
       }
    },
  "extractor": { "row": {} },
  "transformers": [
    { "csv": {"columns":["id","public","completion_percentage","gender","region","region2","last_login","registration","AGE","body","I_am_working_in_field","spoken_languages","hobbies","I_most_enjoy_good_food","pets","body_type","my_eyesight","eye_color","hair_color","hair_type","completed_level_of_education","favourite_color","relation_to_smoking","relation_to_alcohol","on_pokec_i_am_looking_for","love_is_for_me","relation_to_casual_sex","my_partner_should_be","marital_status","children","relation_to_children","I_like_movies","I_like_watching_movie","I_like_music","I_mostly_like_listening_to_music","the_idea_of_good_evening","I_like_specialties_from_kitchen","fun","I_am_going_to_concerts","my_active_sports","my_passive_sports","profession","I_like_books","life_style","music","cars","politics","relationships","art_culture","hobbies_interests","science_technologies","computers_internet","education","sport","movies","travelling","health","companies_brands","more"],"separator": "/t","nullValue": "NULL"} },
    { "vertex": { "class": "Profile"} },
    {"field":
      { "fieldName" : "id",
        "expression" : "id.prefix('P')"
      }
    },
    {"field":
      { "fieldNames" : 
      ["region2","body","I_am_working_in_field","spoken_languages","hobbies","I_most_enjoy_good_food","pets","body_type","my_eyesight","eye_color","hair_color","hair_type","completed_level_of_education","favourite_color","relation_to_smoking","relation_to_alcohol","on_pokec_i_am_looking_for","love_is_for_me","relation_to_casual_sex","my_partner_should_be","marital_status","children","relation_to_children","I_like_movies","I_like_watching_movie","I_like_music","I_mostly_like_listening_to_music","the_idea_of_good_evening","I_like_specialties_from_kitchen","fun","I_am_going_to_concerts","my_active_sports","my_passive_sports","profession","I_like_books","life_style","music","cars","politics","relationships","art_culture","hobbies_interests","science_technologies","computers_internet","education","sport","movies","travelling","health","companies_brands","more"],
       "operation": "remove"
      }
    }
  ],
  "loader": {
    "orientdb": {
       "dbURL": "",
       "dbType": "graph",
       "wal": false,
       "batchCommit": 10000,
       "useLightweightEdges" : true,
       "dbAutoCreateProperties": true,
       "classes": [
         {"name": "Profile", "extends": "V", "clusters": 3},
         {"name": "Relation", "extends": "E"}
       ], "indexes": [
         {"class":"Profile", "fields":["id:string"], "type":"UNIQUE" }
       ],
       "settings": {
       }
    }
  }