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

Global scheduling in the Fair Scheduler

    XMLWordPrintableJSON

Details

    • New Feature
    • Status: Closed
    • Major
    • Resolution: Duplicate
    • None
    • 0.21.0
    • None
    • None

    Description

      The current schedulers in Hadoop all examine a single job on every heartbeat when choosing which tasks to assign, choosing the job based on FIFO or fair sharing. There are inherent limitations to this approach. For example, if the job at the front of the queue is small (e.g. 10 maps, in a cluster of 100 nodes), then on average it will launch only one local map on the first 10 heartbeats while it is at the head of the queue. This leads to very poor locality for small jobs. Instead, we need a more "global" view of scheduling that can look at multiple jobs. To resolve the locality problem, we will use the following algorithm:

      • If the job at the head of the queue has no node-local task to launch, skip it and look through other jobs.
      • If a job has waited at least T1 seconds while being skipped, also allow it to launch rack-local tasks.
      • If a job has waited at least T2 > T1 seconds, also allow it to launch off-rack tasks.
        This algorithm improves locality while bounding the delay that any job experiences in launching a task.

      It turns out that whether waiting is useful depends on how many tasks are left in the job - the probability of getting a heartbeat from a node with a local task - and on whether the job is CPU or IO bound. Thus there may be logic for removing the wait on the last few tasks in the job.

      As a related issue, once we allow global scheduling, we can launch multiple tasks per heartbeat, as in HADOOP-3136. The initial implementation of HADOOP-3136 adversely affected performance because it only launched multiple tasks from the same job, but with the wait rule above, we will only do this for jobs that are allowed to launch non-local tasks.

      Attachments

        1. mapreduce-548-v4.patch
          59 kB
          Matei Alexandru Zaharia
        2. mapreduce-548-v3.patch
          59 kB
          Matei Alexandru Zaharia
        3. mapreduce-548-v2.patch
          59 kB
          Matei Alexandru Zaharia
        4. mapreduce-548-v1.patch
          58 kB
          Matei Alexandru Zaharia
        5. mapreduce-548.patch
          56 kB
          Matei Alexandru Zaharia
        6. hadoop-4667-v2.patch
          55 kB
          Matei Alexandru Zaharia
        7. hadoop-4667-v1b.patch
          56 kB
          Matei Alexandru Zaharia
        8. hadoop-4667-v1.patch
          56 kB
          Matei Alexandru Zaharia
        9. HADOOP-4667_api.patch
          5 kB
          Arun Murthy
        10. fs-global-v0.patch
          67 kB
          Matei Alexandru Zaharia

        Issue Links

          Activity

            People

              matei Matei Alexandru Zaharia
              matei Matei Alexandru Zaharia
              Votes:
              0 Vote for this issue
              Watchers:
              17 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: