Hadoop 0.20.2 源码阅读(一)

org.apache.hadoop.conf.configuration:

1、初始化调用,一般来说都是调用的无参构造函数,无参构造默认是加在default的配置,除非是传入boolean参数为false,表示不加在default的配置。

	/** A new configuration. */
	public Configuration() {
		this(true);
	}
2、默认资源的加在顺序是首先在加载core-default.xml,然后加载addDefaultResource("core-site.xml");
如果在当前环境中还有hadoop-site.xml这个文件,则会出现提示信息,并不影响运行。
	static {
		// print deprecation warning if hadoop-site.xml is found in classpath
		ClassLoader cL = Thread.currentThread().getContextClassLoader();
		if (cL == null) {
			cL = Configuration.class.getClassLoader();
		}
		if (cL.getResource("hadoop-site.xml") != null) {
			LOG.warn("DEPRECATED: hadoop-site.xml found in the classpath. "
					+ "Usage of hadoop-site.xml is deprecated. Instead use core-site.xml, "
					+ "mapred-site.xml and hdfs-site.xml to override properties of "
					+ "core-default.xml, mapred-default.xml and hdfs-default.xml " + "respectively");
		}
		addDefaultResource("core-default.xml");
		addDefaultResource("core-site.xml");
	}
3、添加配置资源的方重写了4种,列出来
	public void addResource(String name) {
		addResourceObject(name);
	}

	public void addResource(URL url) {
		addResourceObject(url);
	}

	public void addResource(Path file) {
		addResourceObject(file);
	}

	public void addResource(InputStream in) {
		addResourceObject(in);
	}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值