我是hadoop的新手。
我希望实现像Mapper->Reducer->Mapper
这样的链。我发现old api
可以做到这一点。但我使用new api
来实现我的MapReduce。在new api
中,它已更改为ChainMapper
和ChainReducer
。我已搜索其文档,但该示例无法提供方法。在此类堆栈流中的一些解决方案:
how-to-chain-mapper-reducer-in-hadoop-1-0-4
它提供了实现Mapper->Mapper->Reducer
的方法。这不是我想要的。
我使用的hadoop是2.5.2
。
如何使用new api
实现目标?
谢谢!