在Hadoop CLI中,可以设置--config参数以覆盖默认配置目录。我想知道配置对象(或其他地方)中是否可以在代码中指定此参数的某些属性?

最佳答案

你的意思是这样吗?

Configuration configuration = new Configuration();
configuration.addResource(new Path("/location/of/core-site.xml"));
configuration.addResource(new Path("/location/of/hdfs-site.xml"));

等等 ...

关于hadoop - Hadoop通过代码设置--config参数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25270523/

10-13 04:32