aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorY.CORP.YAHOO.COM\tgraves <tgraves@thatenemy-lm.champ.corp.yahoo.com>2013-08-27 14:34:27 -0500
committerY.CORP.YAHOO.COM\tgraves <tgraves@thatenemy-lm.champ.corp.yahoo.com>2013-08-27 14:34:27 -0500
commit3f206bf0b56888c718983b7832677a894e36eee3 (patch)
tree264d7365a827998da79494288564118beba5ab9a /core
parentcf52a3cba6cce34d5d4da3da285c9d49d4ed3ceb (diff)
downloadspark-3f206bf0b56888c718983b7832677a894e36eee3.tar.gz
spark-3f206bf0b56888c718983b7832677a894e36eee3.tar.bz2
spark-3f206bf0b56888c718983b7832677a894e36eee3.zip
Updated based on review comments.
Diffstat (limited to 'core')
-rw-r--r--core/src/main/scala/spark/executor/Executor.scala15
1 files changed, 6 insertions, 9 deletions
diff --git a/core/src/main/scala/spark/executor/Executor.scala b/core/src/main/scala/spark/executor/Executor.scala
index 9e0356a711..25f55b391b 100644
--- a/core/src/main/scala/spark/executor/Executor.scala
+++ b/core/src/main/scala/spark/executor/Executor.scala
@@ -119,15 +119,12 @@ private[spark] class Executor(
// Hadoop 0.23 and 2.x have different Environment variable names for the
// local dirs, so lets check both. We assume one of the 2 is set.
// LOCAL_DIRS => 2.X, YARN_LOCAL_DIRS => 0.23.X
- var localDirs = System.getenv("LOCAL_DIRS")
- val yarnLocalSysDirs = Option(System.getenv("YARN_LOCAL_DIRS"))
- yarnLocalSysDirs match {
- case Some(s) => localDirs = s
- case None => {
- if ((localDirs == null) || (localDirs.isEmpty())) {
- throw new Exception("Yarn Local dirs can't be empty")
- }
- }
+ val localDirs = Option(System.getenv("YARN_LOCAL_DIRS"))
+ .getOrElse(Option(System.getenv("LOCAL_DIRS"))
+ .getOrElse(""))
+
+ if (localDirs.isEmpty()) {
+ throw new Exception("Yarn Local dirs can't be empty")
}
return localDirs
}