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

Fix and edit docs for standalone mode #1342

Merged
merged 2 commits into from
Dec 9, 2020
Merged
Changes from all commits
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
3 changes: 2 additions & 1 deletion docs/get-started/getting-started-on-prem.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ The first step is to [Install Spark](#install-spark), the
After that choose one of the nodes to be your master node and start the master. Note that the
master process does **not** need a GPU to function properly.

One the master node:
On the master node:
- Make sure `SPARK_HOME` is exported
- run `$SPARK_HOME/sbin/start-master.sh`
- This script will print a message saying starting Master and have a path to a log file.
Expand Down Expand Up @@ -167,6 +167,7 @@ $SPARK_HOME/bin/spark-shell \
--conf spark.executor.memory=4G \
--conf spark.executor.cores=4 \
--conf spark.task.cpus=1 \
--conf spark.executor.resource.gpu.amount=1 \
--conf spark.task.resource.gpu.amount=0.25 \
--conf spark.rapids.memory.pinnedPool.size=2G \
--conf spark.locality.wait=0s \
Expand Down