Skip to content

Commit ea13c5a

Browse files
dongjoon-hyunHyukjinKwon
authored andcommitted
[SPARK-36052][K8S][FOLLOWUP] Update config version to 3.2.0
### What changes were proposed in this pull request? This PR is a follow-up to update the version of config, `spark.kubernetes.allocation.maxPendingPods`, from 3.3.0 to 3.2.0. ### Why are the changes needed? SPARK-36052 landed at branch-3.2 to fix a bug. ### Does this PR introduce _any_ user-facing change? Yes, but this is a new configuration to fix a bug. ### How was this patch tested? Pass the CIs. Closes #33755 from dongjoon-hyun/SPARK-36052. Authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: Hyukjin Kwon <[email protected]>
1 parent 26d6b95 commit ea13c5a

File tree

1 file changed

+1
-1
lines changed
  • resource-managers/kubernetes/core/src/main/scala/org/apache/spark/deploy/k8s

1 file changed

+1
-1
lines changed

resource-managers/kubernetes/core/src/main/scala/org/apache/spark/deploy/k8s/Config.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,7 @@ private[spark] object Config extends Logging {
601601
"also counted into this limit as they will change into pending PODs by time. " +
602602
"This limit is independent from the resource profiles as it limits the sum of all " +
603603
"allocation for all the used resource profiles.")
604-
.version("3.3.0")
604+
.version("3.2.0")
605605
.intConf
606606
.checkValue(value => value > 0, "Maximum number of pending pods should be a positive integer")
607607
.createWithDefault(Int.MaxValue)

0 commit comments

Comments
 (0)