7

I'm using hadoop-0.20.2.

Looking at hadoop fs. I am able to kill or fail an individual task. Is there anyway to pause it so that the map slots are freed up for another task?

Dan R
  • 2,275
  • 1
  • 19
  • 27

1 Answers1

7

No. You can't suspend a job.

There isn't. Slots are assigned for the duration of the tasks.

You can decrease the priority in the scheduler which will allow some slots to be reclaimed as tasks complete.

Ted Dunning
  • 306
  • 1
  • 6