-
Notifications
You must be signed in to change notification settings - Fork 29k
SPARK-3178 setting SPARK_WORKER_MEMORY to a value without a label (m or g) sets the worker memory limit to zero #2227
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
Closed
+70
−1
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
60 changes: 60 additions & 0 deletions
60
core/src/test/scala/org/apache/spark/deploy/worker/WorkerArgumentsTest.scala
This file contains hidden or 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,60 @@ | ||
| /* | ||
| * 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) | ||
| } | ||
| } | ||
|
|
||
|
|
||
| /* For this test an environment property for SPARK_WORKER_MEMORY was set | ||
| in the scalatest-maven-plugin under the <environmentVariables> and then | ||
| run manually | ||
| <SPARK_WORKER_MEMORY>100000</SPARK_WORKER_MEMORY> | ||
| */ | ||
|
|
||
| // test("Memory can't be set to 0 when SPARK_WORKER_MEMORY env property leaves off M or G") { | ||
| // val conf = new SparkConf | ||
| // val args = Array("spark://localhost:0000 ") | ||
| // | ||
| // intercept[IllegalStateException] { | ||
| // new WorkerArguments(args, conf) | ||
| // } | ||
| // } | ||
|
|
||
| test("Check 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) | ||
|
|
||
| } | ||
|
|
||
| } | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In #2002, I added a mechanism that allows environment variables to be mocked in tests. Take a look at that PR,
SparkConf.getEnvin particular. By using a custom SparkConf subclass, you can mock environment variables on a per-test basis: https://github.com/apache/spark/pull/2002/files#diff-e9fb6be5f96766cce96c4d60aea2fc59R45If we find ourselves doing this in multiple places (my PR, here, ...) it might be nice to add some test helper classes for doing this more generically. That refactoring can happen in a separate PR, though, so for now it's probably fine to just copy my code snippet here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, to be more specific: you'll have to change the code that reads the environment variable to use
SparkConf.getEnvinstead ofSystem.getEnv; I only changed this for the environment variables used in my specific test because I didn't want to make a big cross-cutting change across the codebase (plus it would probably get broken by subsequent PRs; we should add a style checker rule that complains about System.getEnv uses if we plan on doing this change globally).