aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorjerryshao <sshao@hortonworks.com>2016-07-14 08:31:04 -0500
committerTom Graves <tgraves@yahoo-inc.com>2016-07-14 08:31:04 -0500
commitc4bc2ed844ea045d2e8218154690b5b2b023f1e5 (patch)
tree69afe62b95aa39b6ee954757f1d4a46b33b5d8d7 /common
parente3f8a033679261aaee15bda0f970a1890411e743 (diff)
downloadspark-c4bc2ed844ea045d2e8218154690b5b2b023f1e5.tar.gz
spark-c4bc2ed844ea045d2e8218154690b5b2b023f1e5.tar.bz2
spark-c4bc2ed844ea045d2e8218154690b5b2b023f1e5.zip
[SPARK-14963][MINOR][YARN] Fix typo in YarnShuffleService recovery file 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 <sshao@hortonworks.com> Closes #14197 from jerryshao/fix-typo-file-name.
Diffstat (limited to 'common')
-rw-r--r--common/network-yarn/src/main/java/org/apache/spark/network/yarn/YarnShuffleService.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/network-yarn/src/main/java/org/apache/spark/network/yarn/YarnShuffleService.java b/common/network-yarn/src/main/java/org/apache/spark/network/yarn/YarnShuffleService.java
index 9807383ec3..8a05628c8f 100644
--- a/common/network-yarn/src/main/java/org/apache/spark/network/yarn/YarnShuffleService.java
+++ b/common/network-yarn/src/main/java/org/apache/spark/network/yarn/YarnShuffleService.java
@@ -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