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

0.20: avoid a busy-loop in ReduceTask scheduling

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 0.20.205.0
    • 1.1.0
    • mrv1, performance, task
    • None
    • Reviewed

    Description

      Looking at profiling results, it became clear that the ReduceTask has the following busy-loop which was causing it to suck up 100% of CPU in the fetch phase in some configurations:

      • the number of reduce fetcher threads is configured to more than the number of hosts
      • therefore "busyEnough()" never returns true
      • the "scheduling" portion of the code can't schedule any new fetches, since all of the pending fetches in the mapLocations buffer correspond to hosts that are already being fetched (the hosts are in the uniqueHosts map)
      • getCopyResult() immediately returns null, since there are no completed maps.
        Hence ReduceTask spins back and forth between trying to schedule things (and failing), and trying to grab completed results (of which there are none), with no waits.

      Attachments

        1. mr-3278.txt
          4 kB
          Todd Lipcon
        2. reducer-cpu-usage.png
          99 kB
          Todd Lipcon

        Activity

          People

            tlipcon Todd Lipcon
            tlipcon Todd Lipcon
            Votes:
            0 Vote for this issue
            Watchers:
            7 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: