DBILITY

hadoop configuration print 본문

bigdata/hadoop

hadoop configuration print

DBILITY 2016. 10. 8. 17:56
반응형
public int run(String[] args) throws Exception {

	Configuration conf = getConf();

	for (Map.Entry<String, String> entry : conf) {
		log.info("{} : {}",entry.getKey(),entry.getValue());
	}

	return 0;
}
반응형
Comments