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.
Merge pull request #15 from apache/master
update
- Loading branch information
Showing
455 changed files
with
9,746 additions
and
4,443 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
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 |
---|---|---|
|
@@ -64,3 +64,4 @@ dist/* | |
logs | ||
.*scalastyle-output.xml | ||
.*dependency-reduced-pom.xml | ||
known_translations |
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
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
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
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
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
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,59 @@ | ||
rem | ||
rem Licensed to the Apache Software Foundation (ASF) under one or more | ||
rem contributor license agreements. See the NOTICE file distributed with | ||
rem this work for additional information regarding copyright ownership. | ||
rem The ASF licenses this file to You under the Apache License, Version 2.0 | ||
rem (the "License"); you may not use this file except in compliance with | ||
rem the License. You may obtain a copy of the License at | ||
rem | ||
rem http://www.apache.org/licenses/LICENSE-2.0 | ||
rem | ||
rem Unless required by applicable law or agreed to in writing, software | ||
rem distributed under the License is distributed on an "AS IS" BASIS, | ||
rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
rem See the License for the specific language governing permissions and | ||
rem limitations under the License. | ||
rem | ||
|
||
rem Gather all spark-submit options into SUBMISSION_OPTS | ||
|
||
set SUBMISSION_OPTS= | ||
set APPLICATION_OPTS= | ||
|
||
rem NOTE: If you add or remove spark-sumbmit options, | ||
rem modify NOT ONLY this script but also SparkSubmitArgument.scala | ||
|
||
:OptsLoop | ||
if "x%1"=="x" ( | ||
goto :OptsLoopEnd | ||
) | ||
|
||
SET opts="\<--master\> \<--deploy-mode\> \<--class\> \<--name\> \<--jars\> \<--py-files\> \<--files\>" | ||
SET opts="%opts:~1,-1% \<--conf\> \<--properties-file\> \<--driver-memory\> \<--driver-java-options\>" | ||
SET opts="%opts:~1,-1% \<--driver-library-path\> \<--driver-class-path\> \<--executor-memory\>" | ||
SET opts="%opts:~1,-1% \<--driver-cores\> \<--total-executor-cores\> \<--executor-cores\> \<--queue\>" | ||
SET opts="%opts:~1,-1% \<--num-executors\> \<--archives\>" | ||
|
||
echo %1 | findstr %opts% >nul | ||
if %ERRORLEVEL% equ 0 ( | ||
if "x%2"=="x" ( | ||
echo "%1" requires an argument. >&2 | ||
exit /b 1 | ||
) | ||
set SUBMISSION_OPTS=%SUBMISSION_OPTS% %1 %2 | ||
shift | ||
shift | ||
goto :OptsLoop | ||
) | ||
echo %1 | findstr "\<--verbose\> \<-v\> \<--supervise\>" >nul | ||
if %ERRORLEVEL% equ 0 ( | ||
set SUBMISSION_OPTS=%SUBMISSION_OPTS% %1 | ||
shift | ||
goto :OptsLoop | ||
) | ||
set APPLICATION_OPTS=%APPLICATION_OPTS% %1 | ||
shift | ||
goto :OptsLoop | ||
|
||
:OptsLoopEnd | ||
exit /b 0 |
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
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
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
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
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
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
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
42 changes: 42 additions & 0 deletions
42
core/src/main/scala/org/apache/spark/ExecutorAllocationClient.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,42 @@ | ||
/* | ||
* 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 | ||
|
||
/** | ||
* A client that communicates with the cluster manager to request or kill executors. | ||
*/ | ||
private[spark] trait ExecutorAllocationClient { | ||
|
||
/** | ||
* Request an additional number of executors from the cluster manager. | ||
* Return whether the request is acknowledged by the cluster manager. | ||
*/ | ||
def requestExecutors(numAdditionalExecutors: Int): Boolean | ||
|
||
/** | ||
* Request that the cluster manager kill the specified executors. | ||
* Return whether the request is acknowledged by the cluster manager. | ||
*/ | ||
def killExecutors(executorIds: Seq[String]): Boolean | ||
|
||
/** | ||
* Request that the cluster manager kill the specified executor. | ||
* Return whether the request is acknowledged by the cluster manager. | ||
*/ | ||
def killExecutor(executorId: String): Boolean = killExecutors(Seq(executorId)) | ||
} |
Oops, something went wrong.