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.
我已经为 HBase 中的数据编写了一个 map-reduce 作业。它包含多个映射器和一个减速器。Reducer 方法接收映射器提供的数据并对其进行一些分析。在 HBase 中的所有数据处理完成后,我想通过单个 Reducer 将数据写回 HDFS 中的文件。目前我每次获得新数据时都可以将数据写入HDFS,但最终无法弄清楚如何将最终结论写入HDFS。
因此,如果您尝试将单个 reducer 的最终结果写入 HDFS,您可以尝试以下任何一种方法 -
3的详细信息:
http://hadoop.apache.org/docs/current/api/org/apache/hadoop/mapreduce/Reducer.html#cleanup-org.apache.hadoop.mapreduce.Reducer.Context-
希望这可以帮助。