运行pig local,udf程序无法写入文件/文件夹:priviledgedactionexception

np8igboo  于 2021-06-04  发布在  Hadoop
关注(0)|答案(1)|浏览(334)

新手用Pig/hadoop。。
在当地跑Pig。

java  -Xmx512m -Xmx1024m -cp $PIGDIR/pig.jar org.apache.pig.Main -Dpig.temp.dir=/tmp/$USER/$RANDOM -stop_on_failure -x  local script-buzz.pig

用我的script.pig:

(...) 
buzz = FOREACH files GENERATE chiron.buzz.Honey(file, id) as buzz_file, id;

尝试使用我的自定义项写入文件夹/文件:

[JobControl] ERROR org.apache.hadoop.security.UserGroupInformation - PriviledgedActionException as:felipehorta cause:org.apache.pig.backend.executionengine.ExecException: ERROR 2118: Input path does not exist: file:/Users/felipehorta/dev/ufrj/pig/pig-buzz/output

以下代码必须(!)写入下次加载时使用的文件。
jar在:$java-jar pgm.jar中运行良好*

(...)
public String exec(Tuple input) throws IOException {
    try{
        System.out.println(input.get(0).toString());
        BumbleBee b = new BumbleBee(input.get(0).toString());
        return b.writeRelation(input.get(1).toString());
    } catch(Exception e){
        System.err.println("Failed to process input; error - " + e.getMessage());
        return null;
    }
}

public String writeRelation(String folder) throws IOException {
    try {
        // writing file!
        File output = new File("output/ERelation_" + folder +  ".txt");
        output.getParentFile().mkdirs();
        FileWriter fw = new FileWriter(output);
        String line = System.getProperty("line.separator");
        fw.append("YEAR;WORD;COUNT" + line);
        for (Integer year : buzzCandidates.keySet()) {
            Map<String, Long> wordCounts = buzzCandidates.get(year);
            for (String word : wordCounts.keySet()) {
                long value = wordCounts.get(word);
                if (value >= 3) {
                    fw.append(year + ";" + word.replace(" ", "_") + ";" + String.valueOf(value) + line);
                }
            }
        }
        fw.flush();
        fw.close();
        return output.getAbsolutePath();
    } catch (Exception e) {
        System.out.println(">>> ERROR!!\t" + e.getMessage());
        return "ERROR";
    }
}

我认为这是关于权限写文件与自定义项,但我不知道在哪里设置权限。有什么帮助吗?
提前谢谢,伙计们!

kninwzqo

kninwzqo1#

错误读取输入路径不存在:file:/users/felipehorta/dev/ufrj/pig/pig buzz/output请检查pig脚本以了解如何使用加载。

relation = load '/Users/felipehorta/dev/ufrj/pig/pig-buzz/output' using ...

是正确的方法。
不确定这是否是确切的原因。如果你能把剧本贴出来就好了。

相关问题