[bitnami/spark] Release 3.3.1-debian-11-r27 (#19770)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot 2023-01-10 18:02:43 +01:00 committed by GitHub
parent 3744fb643a
commit cf6cbd87f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 13 additions and 12 deletions

View File

@ -5,7 +5,7 @@ ARG TARGETARCH
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
org.opencontainers.image.description="Application packaged by Bitnami" \
org.opencontainers.image.ref.name="3.3.1-debian-11-r26" \
org.opencontainers.image.ref.name="3.3.1-debian-11-r27" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/spark" \
org.opencontainers.image.title="spark" \
org.opencontainers.image.vendor="VMware, Inc." \

View File

@ -31,7 +31,7 @@ get_sematic_version () {
while [[ $i -lt $n ]]; do
if [[ -n "${BASH_REMATCH[$i]}" ]] && [[ "${BASH_REMATCH[$i]:0:1}" != '.' ]]; then
version_sections[$j]=${BASH_REMATCH[$i]}
version_sections[j]="${BASH_REMATCH[$i]}"
((j++))
fi
((i++))

View File

@ -307,6 +307,7 @@ spark_custom_init_scripts() {
"$f"
else
debug "Sourcing $f"
# shellcheck disable=SC1090
. "$f"
fi
;;

View File

@ -52,19 +52,19 @@ case "$1" in
set -o pipefail
CMD=(
${JAVA_HOME}/bin/java
"${JAVA_HOME}/bin/java"
"${SPARK_EXECUTOR_JAVA_OPTS[@]}"
-Xms$SPARK_EXECUTOR_MEMORY
-Xmx$SPARK_EXECUTOR_MEMORY
"-Xms${SPARK_EXECUTOR_MEMORY}"
"-Xmx${SPARK_EXECUTOR_MEMORY}"
-cp '/opt/bitnami/spark/conf::/opt/bitnami/spark/jars/*'
org.apache.spark.scheduler.cluster.k8s.KubernetesExecutorBackend
--driver-url $SPARK_DRIVER_URL
--executor-id $SPARK_EXECUTOR_ID
--cores $SPARK_EXECUTOR_CORES
--app-id $SPARK_APPLICATION_ID
--hostname $SPARK_EXECUTOR_POD_IP
--resourceProfileId $SPARK_RESOURCE_PROFILE_ID
--podName $SPARK_EXECUTOR_POD_NAME
--driver-url "$SPARK_DRIVER_URL"
--executor-id "$SPARK_EXECUTOR_ID"
--cores "$SPARK_EXECUTOR_CORES"
--app-id "$SPARK_APPLICATION_ID"
--hostname "$SPARK_EXECUTOR_POD_IP"
--resourceProfileId "$SPARK_RESOURCE_PROFILE_ID"
--podName "$SPARK_EXECUTOR_POD_NAME"
)
;;