Uploaded image for project: 'Hadoop Map/Reduce'
  1. Hadoop Map/Reduce
  2. MAPREDUCE-5689

MRAppMaster does not preempt reducers when scheduled maps cannot be fulfilled

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Critical
    • Resolution: Fixed
    • 2.2.0, 3.0.0-alpha1
    • 0.23.11, 2.3.0
    • None
    • None
    • Reviewed

    Description

      We saw corner case where Jobs running on cluster were hung. Scenario was something like this. Job was running within a pool which was running at its capacity. All available containers were occupied by reducers and last 2 mappers. There were few more reducers waiting to be scheduled in pipeline.
      At this point two mappers which were running failed and went back to scheduled state. two available containers were assigned to reducers, now whole pool was full of reducers waiting on two maps to be complete. 2 maps never got scheduled because pool was full.

      Ideally reducer preemption should have kicked in to make room for Mappers from this code in RMContaienrAllocator

      int completedMaps = getJob().getCompletedMaps();
          int completedTasks = completedMaps + getJob().getCompletedReduces();
          if (lastCompletedTasks != completedTasks) {
            lastCompletedTasks = completedTasks;
            recalculateReduceSchedule = true;
          }
      
          if (recalculateReduceSchedule) {
            preemptReducesIfNeeded();
      

      But in this scenario lastCompletedTasks is always completedTasks because maps were never completed. This would cause job to hang forever. As workaround if we kill few reducers, mappers would get scheduled and caused job to complete.

      Attachments

        1. MAPREDUCE-5689.1.patch
          3 kB
          Lohit Vijaya Renu
        2. MAPREDUCE-5689.2.patch
          3 kB
          Karthik Kambatla

        Activity

          People

            lohit Lohit Vijaya Renu
            lohit Lohit Vijaya Renu
            Votes:
            0 Vote for this issue
            Watchers:
            8 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: