gpt4 book ai didi

hadoop - 修复-运行hadoop作业时警告 “Use GenericOptionsParser for parsing the arguments”?

转载 作者:行者123 更新时间:2023-12-02 21:42:14 25 4
gpt4 key购买 nike

当我提交Hadoop工作时,总是说

WARN [JobClient] Use GenericOptionsParser for parsing the arguments. Applications should implement Tool for the same

我怎样才能解决这个问题?
我正在使用CDH 4.6.0。

最佳答案

您应该使用下面的驱动程序代码之类的内容来启动MapReduce作业以摆脱警告(尽管它没有任何危害):

public class MyClass extends Configured implements Tool {
public int run(String [] args) throws IOException {
JobConf conf = new JobConf(getConf(), MyClass.class);
// run the job here.
return 0;
}

public static void main(String [] args) throws Exception {
int status = ToolRunner.run(new MyClass(), args); // calls your run() method.
System.exit(status);
}
}

关于hadoop - 修复-运行hadoop作业时警告 “Use GenericOptionsParser for parsing the arguments”?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27957723/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com