Tag Archives: GenericOptionsParser

使用GenericOptionsParser简化参数解析

GenericOptionsParser可以让你的Map/Reduce程序具有Hadoop常用的属性。
一般无需直接用GenericOptionsParser,继承Configured即可。
public class ConfigurationPrinter extends Configured implements Tool {

//添加你需要的配置文件
static {
Configuration.addDefaultResource("hdfs-default.xml[......]

继续阅读