forked from apache/spark
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SPARK-3178 - Validate the memory is greater than zero when set from t…
…he SPARK_WORKER_MEMORY environment variable or command line without a g or m label. Added unit tests. If memory is 0 an IllegalStateException is thrown. Updated unit tests to mock environment variables by subclassing SparkConf (tip provided by Josh Rosen). Updated WorkerArguments to use SparkConf.getenv instead of System.getenv for reading the SPARK_WORKER_MEMORY environment variable.
- Loading branch information
Showing
2 changed files
with
93 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
82 changes: 82 additions & 0 deletions
82
core/src/test/scala/org/apache/spark/deploy/worker/WorkerArgumentsTest.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
|
||
package org.apache.spark.deploy.worker | ||
|
||
import org.apache.spark.SparkConf | ||
import org.scalatest.FunSuite | ||
|
||
|
||
class WorkerArgumentsTest extends FunSuite { | ||
|
||
test("Memory can't be set to 0 when cmd line args leave off M or G") { | ||
val conf = new SparkConf | ||
val args = Array("-m", "10000", "spark://localhost:0000 ") | ||
intercept[IllegalStateException] { | ||
new WorkerArguments(args, conf) | ||
} | ||
} | ||
|
||
|
||
test("Memory can't be set to 0 when SPARK_WORKER_MEMORY env property leaves off M or G") { | ||
val args = Array("spark://localhost:0000 ") | ||
|
||
class MySparkConf extends SparkConf(false) { | ||
override def getenv(name: String) = { | ||
if (name == "SPARK_WORKER_MEMORY") "50000" | ||
else super.getenv(name) | ||
} | ||
|
||
override def clone: SparkConf = { | ||
new MySparkConf().setAll(settings) | ||
} | ||
} | ||
val conf = new MySparkConf() | ||
intercept[IllegalStateException] { | ||
new WorkerArguments(args, conf) | ||
} | ||
} | ||
|
||
test("Memory correctly set when SPARK_WORKER_MEMORY env property appends G") { | ||
val args = Array("spark://localhost:0000 ") | ||
|
||
class MySparkConf extends SparkConf(false) { | ||
override def getenv(name: String) = { | ||
if (name == "SPARK_WORKER_MEMORY") "5G" | ||
else super.getenv(name) | ||
} | ||
|
||
override def clone: SparkConf = { | ||
new MySparkConf().setAll(settings) | ||
} | ||
} | ||
val conf = new MySparkConf() | ||
val workerArgs = new WorkerArguments(args, conf) | ||
assert(workerArgs.memory === 5120) | ||
} | ||
|
||
test("Memory correctly set from args with M appended to memory value") { | ||
val conf = new SparkConf | ||
val args = Array("-m", "10000M", "spark://localhost:0000 ") | ||
|
||
val workerArgs = new WorkerArguments(args, conf) | ||
assert(workerArgs.memory === 10000) | ||
|
||
} | ||
|
||
} |