ERROR 1066: Unable to open iterator for alias - Pig

后端 未结 4 1040
轮回少年
轮回少年 2020-11-30 12:46

Just started Pig; trying to load the data from a file and dump it henceforth. Loading seems to be proper, no error is thrown. Below is the query:

NYSE

4条回答
  •  感动是毒
    2020-11-30 13:30

    You can place breakpoint to class PigServer to method store().

    for(JobStats js : stats.getJobGraph()){
      if(js.getException() != null) {
        ex = js.getException();
      }
    }
    

    Inside the js object there is field errorMessage and it may contain description of the problem

提交回复
热议问题