Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我们想按相同的键分组(第一个减速器的输出),是否可以将减速器的输出直接发送到另一个减速器
有时在链接时我观察到我正在使用映射器来读取输入并将其复制到输出。因此想知道 idf 是否可以将输出直接馈送到减速器
尽管您可以将 map-reduce 作业甚至映射器链接在一起;据我所知,您不能直接链接减速器。
在内部,您可以在 reducer 之前使用 ChainMapper 链接映射器,在reducer之后使用ChainReducer链接Mappers。