Uploaded image for project: 'Spark'
  1. Spark
  2. SPARK-732

Recomputation of RDDs may result in duplicated accumulator updates

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Blocker
    • Resolution: Won't Fix
    • 0.6.2, 0.7.0, 0.7.1, 0.7.2, 0.7.3, 0.8.0, 0.8.1, 0.8.2, 0.9.0, 1.0.1, 1.1.0
    • None
    • Spark Core
    • None

    Description

      Currently, Spark doesn't guard against duplicated updates to the same accumulator due to recomputations of an RDD. For example:

          val acc = sc.accumulator(0)
          data.map(x => acc += 1; f(x))
          data.count()
          // acc should equal data.count() here
          data.foreach{...}
          // Now, acc = 2 * data.count() because the map() was recomputed.
      

      I think that this behavior is incorrect, especially because this behavior allows the additon or removal of a cache() call to affect the outcome of a computation.

      There's an old TODO to fix this duplicate update issue in the DAGScheduler code.

      I haven't tested whether recomputation due to blocks being dropped from the cache can trigger duplicate accumulator updates.

      Hypothetically someone could be relying on the current behavior to implement performance counters that track the actual number of computations performed (including recomputations). To be safe, we could add an explicit warning in the release notes that documents the change in behavior when we fix this.

      Ignoring duplicate updates shouldn't be too hard, but there are a few subtleties. Currently, we allow accumulators to be used in multiple transformations, so we'd need to detect duplicate updates at the per-transformation level. I haven't dug too deeply into the scheduler internals, but we might also run into problems where pipelining causes what is logically one set of accumulator updates to show up in two different tasks (e.g. rdd.map(accum += x; ...) and rdd.map(accum += x; ...).count() may cause what's logically the same accumulator update to be applied from two different contexts, complicating the detection of duplicate updates).

      Attachments

        Issue Links

          Activity

            People

              codingcat Nan Zhu
              joshrosen Josh Rosen
              Votes:
              2 Vote for this issue
              Watchers:
              15 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: