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 任务将其输出写入本地磁盘。
假设如果我只有映射任务而没有任何减速器,映射输出仍然会写入本地文件系统吗?
是的,它仍然会将输出写入 FileOutputFormat.setOutputPath(JobConf, Path) 设置的路径,并且不会进行排序或分区。
更多信息:
更新:正如 Chris White 所提到的,它将直接写入 HDFS 而不是本地文件系统。