标签: hadoop mapreduce
我正在编写一个包含三个MapReduce操作步骤的程序。所以我写了三个Mappers和三个Reducers函数,函数名是map1,map2,map3和reduce1,reduce2,reduce3;步骤1由map1和reduce1组成,step2由map2和reduce2组成,step3由map3和reduce3组成;如果我想同时使用reduce1和reduce2s'结果在map3中,如何编写map3? 感谢。