
源码分析
景子墨
这个作者很懒,什么都没留下…
展开
-
2019-9-2 [MapReduce] Mapper.class 源码分析
1.run public void run(Context context) throws IOException, InterruptedException { setup(context); try { while (context.nextKeyValue()) { map(context.getCurrentKey(), context.getC...原创 2019-09-05 12:50:33 · 171 阅读 · 0 评论 -
2019-9-2 [MapReduce] Reduce.class 源码分析
1.run public void run(Context context) throws IOException, InterruptedException { setup(context); try { while (context.nextKey()) { reduce(context.getCurrentKey(), context.getVa...原创 2019-09-05 12:52:08 · 151 阅读 · 0 评论