Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SPARK-26268][CORE] Do not resubmit tasks when executors are lost #24462

Closed
wants to merge 1 commit into from

Commits on Apr 26, 2019

  1. [SPARK-26268][CORE] Do not resubmit tasks when executors are lost

    The DAGScheduler assumes that shuffle data is lost if an executor is
    lost and the Spark external shuffle service is not enabled. However,
    external shuffle managers other than the default external shuffle
    service can store shuffle data outside of the Spark cluster itself. In
    this case, completed map taks are not rerun even if the corresponding
    executors are lost.
    
    The new `spark.shuffle.external.enabled` property allows this new
    external shuffle behavior to be toggled (independently off the built-in
    Spark external shuffle service).
    bsidhom committed Apr 26, 2019
    Configuration menu
    Copy the full SHA
    37d4931 View commit details
    Browse the repository at this point in the history