-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-22648] [K8S] Spark on Kubernetes - Documentation #19946
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
Changes from 1 commit
2720c88
4ccf59b
14bee00
b18d1ba
9594462
679b5c7
67abb93
a7e0c4c
74ac5c9
d235847
702162b
8726154
374ddc8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,7 +5,7 @@ title: Running Spark on Kubernetes | |
| * This will become a table of contents (this text will be scraped). | ||
| {:toc} | ||
|
|
||
| Spark can run on clusters managed by [Kubernetes](https://kubernetes.io). This feature makes use of the new experimental native | ||
| Spark can run on clusters managed by [Kubernetes](https://kubernetes.io). This feature makes use of native | ||
| Kubernetes scheduler that has been added to Spark. | ||
|
|
||
| # Prerequisites | ||
|
|
@@ -71,15 +71,14 @@ To launch Spark Pi in cluster mode, | |
|
|
||
| {% highlight bash %} | ||
| $ bin/spark-submit \ | ||
| --master k8s://https://<k8s-apiserver-host>:<k8s-apiserver-port> \ | ||
| --deploy-mode cluster \ | ||
| --class org.apache.spark.examples.SparkPi \ | ||
| --master k8s://https://<k8s-apiserver-host>:<k8s-apiserver-port> \ | ||
| --conf spark.kubernetes.namespace=default \ | ||
| --conf spark.executor.instances=5 \ | ||
|
||
| --conf spark.app.name=spark-pi \ | ||
| --conf spark.kubernetes.driver.docker.image=<driver-image> \ | ||
| --conf spark.kubernetes.executor.docker.image=<executor-image> \ | ||
| local:///opt/spark/examples/jars/spark-examples_2.11-2.3.0.jar | ||
| local:///path/to/examples.jar | ||
| {% endhighlight %} | ||
|
|
||
| The Spark master, specified either via passing the `--master` command line argument to `spark-submit` or by setting | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove experimental ? I think there are other references (a grep should catch them all) and we can remove them all now ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done. The other references have been removed. Couldn't find any others.