Skip to content

Commit 8650239

Browse files
committed
[SPARK-16953] Make requestTotalExecutors public Developer API to be consistent with requestExecutors/killExecutors
## What changes were proposed in this pull request? RequestExecutors and killExecutor are public developer APIs for managing the number of executors allocated to the SparkContext. For consistency, requestTotalExecutors should also be a public Developer API, as it provides similar functionality. In fact, using requestTotalExecutors is more convenient that requestExecutors as the former is idempotent and the latter is not. Author: Tathagata Das <[email protected]> Closes apache#14541 from tdas/SPARK-16953.
1 parent 1739e75 commit 8650239

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

core/src/main/scala/org/apache/spark/SparkContext.scala

+2-1
Original file line numberDiff line numberDiff line change
@@ -1473,7 +1473,8 @@ class SparkContext(config: SparkConf) extends Logging with ExecutorAllocationCli
14731473
* This includes running, pending, and completed tasks.
14741474
* @return whether the request is acknowledged by the cluster manager.
14751475
*/
1476-
private[spark] override def requestTotalExecutors(
1476+
@DeveloperApi
1477+
override def requestTotalExecutors(
14771478
numExecutors: Int,
14781479
localityAwareTasks: Int,
14791480
hostToLocalTaskCount: scala.collection.immutable.Map[String, Int]

0 commit comments

Comments
 (0)