hadoop debug方法

1. 用 context.getCounter(xx).increment(1)分步增加

hadoop debug方法_第1张图片

2. 用循环

context.getCounter("wordcount", word); //只是输出单词
context.getCounter("wordcount", word).increment(1); //输出单词本身和单词的个数
hadoop debug方法_第2张图片

输出结果,在hadoop跑的命令行的输出结果中输出单词


hadoop debug方法_第3张图片
输出结果

你可能感兴趣的:(hadoop debug方法)