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

Explicitly state Databricks runtime version #247

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
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
5 changes: 4 additions & 1 deletion source/platforms/databricks.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ COPY --from=rapids /rapids/rapids-spec.txt /tmp/spec.txt

RUN conda create --name rapids --file /tmp/spec.txt && \
rm -f /tmp/spec.txt

RUN /databricks/conda/envs/rapids/bin/python -m pip install --upgrade virtualenv
```

```console
Expand All @@ -34,7 +36,8 @@ Push this image to a Docker registry (DockerHub, Amazon ECR or Azure ACR).
## 2. Configure and create GPU-enabled cluster

1. Compute > Create compute > Name your cluster > Select `Multi` or `Single` Node
2. Select a Standard Databricks runtime.
2. Select the 10.4 LTS Standard Databricks runtime.
- **Note** The 12.2 LTS runtime is known to not work with the `databricksruntime/gpu-conda:cuda11` base image
- **Note** Databricks ML Runtime does not support Databricks Container Services
3. Under **Advanced Options**, in the the **Docker** tab select **"Use your own Docker container"**
- In the Docker Image URL field, enter the image that you created above
Expand Down