-
Notifications
You must be signed in to change notification settings - Fork 28.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SPARK-22648][K8S] Spark on Kubernetes - Documentation
What changes were proposed in this pull request? This PR contains documentation on the usage of Kubernetes scheduler in Spark 2.3, and a shell script to make it easier to build docker images required to use the integration. The changes detailed here are covered by #19717 and #19468 which have merged already. How was this patch tested? The script has been in use for releases on our fork. Rest is documentation. cc rxin mateiz (shepherd) k8s-big-data SIG members & contributors: foxish ash211 mccheah liyinan926 erikerlandson ssuchter varunkatta kimoonkim tnachen ifilonenko reviewers: vanzin felixcheung jiangxb1987 mridulm TODO: - [x] Add dockerfiles directory to built distribution. (#20007) - [x] Change references to docker to instead say "container" (#19995) - [x] Update configuration table. - [x] Modify spark.kubernetes.allocation.batch.delay to take time instead of int (#20032) Author: foxish <[email protected]> Closes #19946 from foxish/update-k8s-docs.
- Loading branch information
Showing
10 changed files
with
677 additions
and
8 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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Large diffs are not rendered by default.
Oops, something went wrong.
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,68 @@ | ||
#!/usr/bin/env bash | ||
|
||
# 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. | ||
# | ||
|
||
# This script builds and pushes docker images when run from a release of Spark | ||
# with Kubernetes support. | ||
|
||
declare -A path=( [spark-driver]=kubernetes/dockerfiles/driver/Dockerfile \ | ||
[spark-executor]=kubernetes/dockerfiles/executor/Dockerfile ) | ||
|
||
function build { | ||
docker build -t spark-base -f kubernetes/dockerfiles/spark-base/Dockerfile . | ||
for image in "${!path[@]}"; do | ||
docker build -t ${REPO}/$image:${TAG} -f ${path[$image]} . | ||
done | ||
} | ||
|
||
|
||
function push { | ||
for image in "${!path[@]}"; do | ||
docker push ${REPO}/$image:${TAG} | ||
done | ||
} | ||
|
||
function usage { | ||
echo "This script must be run from a runnable distribution of Apache Spark." | ||
echo "Usage: ./sbin/build-push-docker-images.sh -r <repo> -t <tag> build" | ||
echo " ./sbin/build-push-docker-images.sh -r <repo> -t <tag> push" | ||
echo "for example: ./sbin/build-push-docker-images.sh -r docker.io/myrepo -t v2.3.0 push" | ||
} | ||
|
||
if [[ "$@" = *--help ]] || [[ "$@" = *-h ]]; then | ||
usage | ||
exit 0 | ||
fi | ||
|
||
while getopts r:t: option | ||
do | ||
case "${option}" | ||
in | ||
r) REPO=${OPTARG};; | ||
t) TAG=${OPTARG};; | ||
esac | ||
done | ||
|
||
if [ -z "$REPO" ] || [ -z "$TAG" ]; then | ||
usage | ||
else | ||
case "${@: -1}" in | ||
build) build;; | ||
push) push;; | ||
*) usage;; | ||
esac | ||
fi |