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.
任何人都可以解释使用hadoop map-reduce模型的优势。我了解 map 假设采用一个键值对并返回另一个键值对,输出对与输入有何不同。map 的输出作为 reduce 的输入,那么 reduce 的预期输出是多少。一个小例子会很有帮助。
输出仍然是一个 Map 让我们假设 WordCount 示例带有以下句子:
to test or not to test.
根据单词分析,您将从 map() 中得到以下结果:
to, 1 test, 1 or, 1 not, 1 to, 1 test, 1
减少后,您将拥有以下内容:
to, 2 test, 2 or, 1 not, 1