Reputation: 11
If output of map task written to local file system, what will happened if the input of map tasks is so big that output exhausts the written disk?
Upvotes: 0
Views: 94
Reputation: 30089
The map task attempt will fail, and the task will be scheduled to run elsewhere. The cleanup for the failed attempt should remove the task files too.
Upvotes: 2