Skip to content
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

[SPARK-42344][K8S] Change the default size of the CONFIG_MAP_MAXSIZE #39884

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -158,11 +158,10 @@ private[spark] object Config extends Logging {

val CONFIG_MAP_MAXSIZE =
ConfigBuilder("spark.kubernetes.configMap.maxSize")
.doc("Max size limit for a config map. This is configurable as per" +
" https://etcd.io/docs/v3.4.0/dev-guide/limit/ on k8s server end.")
.version("3.1.0")
.doc("Max size limit for a config map. Must have at most 1048576 bytes")
.version("3.5.0")
.longConf
.createWithDefault(1572864) // 1.5 MiB
.createWithDefault(1048576) // 1.0 MiB

val EXECUTOR_ROLL_INTERVAL =
ConfigBuilder("spark.kubernetes.executor.rollInterval")
Expand Down