Skip to content

Commit

Permalink
[SPARK-14963][MINOR][YARN] Fix typo in YarnShuffleService recovery fi…
Browse files Browse the repository at this point in the history
…le name

## What changes were proposed in this pull request?

Due to the changes of [SPARK-14963](https://issues.apache.org/jira/browse/SPARK-14963), external shuffle recovery file name is changed mistakenly, so here change it back to the previous file name.

This only affects the master branch, branch-2.0 is correct [here](https://github.com/apache/spark/blob/branch-2.0/common/network-yarn/src/main/java/org/apache/spark/network/yarn/YarnShuffleService.java#L195).

## How was this patch tested?

N/A

Author: jerryshao <[email protected]>

Closes apache#14197 from jerryshao/fix-typo-file-name.
  • Loading branch information
jerryshao authored and Tom Graves committed Jul 14, 2016
1 parent e3f8a03 commit c4bc2ed
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public class YarnShuffleService extends AuxiliaryService {
private static final String SPARK_AUTHENTICATE_KEY = "spark.authenticate";
private static final boolean DEFAULT_SPARK_AUTHENTICATE = false;

private static final String RECOVERY_FILE_NAME = "registeredExecutor.ldb";
private static final String RECOVERY_FILE_NAME = "registeredExecutors.ldb";

// An entity that manages the shuffle secret per application
// This is used only if authentication is enabled
Expand Down

0 comments on commit c4bc2ed

Please sign in to comment.