Docs
Dask Gateway
Introduction
Dask Gateway is a service which manages Dask clusters for users. On JASMIN, it creates a Dask cluster in LOTUS, our batch computing cluster. It automatically creates a Dask for you, scheduling Slurm jobs to create Dask schedulers and workers as appropriate.
Prerequisites
Before using Dask Gateway on JASMIN, you will need:
- An existing JASMIN account and valid
jasmin-loginaccess role: Apply here - A Slurm account to log the Dask compute to. To choose the right one, please read about the new Slurm job accounting by project.
The jasmin-login access role ensures that your account is set up with access to the LOTUS batch processing cluster.
Creating a Dask cluster
In the JASMIN Notebooks service
In the
JASMIN notebooks service
, authentication to dask-gateway happens automatically. You can use the snippet below to create a cluster and get a Dask client which you can use:
import dask_gateway
# Create a connection to dask-gateway.
gw = dask_gateway.Gateway("https://dask-gateway.jasmin.ac.uk", auth="jupyterhub")
# Inspect and change the options if required before creating your cluster.
options = gw.cluster_options()
options.worker_cores = 2
options.account = "your-slurm-account-name"
# Create a Dask cluster, or, if one already exists, connect to it.
# This stage creates the scheduler job in Slurm, so it may take some
# time while your job queues.
clusters = gw.list_clusters()
if not clusters:
cluster = gw.new_cluster(options, shutdown_on_close=False)
else:
cluster = gw.connect(clusters[0].name)
# Create at least one worker, and allow your cluster to scale to three.
cluster.adapt(minimum=1, maximum=3)
# Get a Dask client.
client = cluster.get_client()
#########################
### DO DASK WORK HERE ###
#########################
# When you are done and wish to release your cluster:
cluster.shutdown()Elsewhere on JASMIN
The following explains how to use the Dask Gateway elsewhere on JASMIN, for example, on the sci machines.
At the current time, it is still necessary to use the notebooks service to generate an API token to allow you to connect to the gateway server.
Setup
-
Make a Dask configuration folder in your home directory
mkdir -p ~/.config/dask -
Create a configuration file for
dask-gatewaytouch ~/.config/dask/gateway.yaml -
Change the permissions on the file so that only you can read it
chmod 600 ~/.config/dask/gateway.yaml -
Head to the API token generator page , put a note in the box to remind yourself what this token is for, press the big orange button, then copy the token.
-
Paste the following snippet into
~/.config/dask/gateway.yaml, replace the entry on the final line with the API token you just created.gateway: address: https://dask-gateway.jasmin.ac.uk auth: type: jupyterhub kwargs: api_token: replaceWithYourSecretAPIToken -
You’re done. You can now use
dask-gatewayfrom the command line.
Access the Dask dashboard
To get the link to your Dask dashboard, run the following:
print(client.dashboard_link)Currently the Dask dashboard is not accessible from a browser outside the JASMIN firewall. If your browser fails to load the dashboard link returned, please use our graphical desktop service to run a Firefox browser inside the firewall to view your dashboard.
Use a custom Python environment
By default the JASMIN Notebooks service and Dask Gateway use the latest version of the jaspy software environment. However, users often need custom software environments for specific packages or versions.
Creating a cross-compatible virtual environment
Virtual environments created correctly will now work across both the notebook service and LOTUS workers, simplifying Dask Gateway usage significantly.
Follow the Python virtual environments guide to create a virtual environment.
Using your custom environment with Dask Gateway
- In your notebook, select your custom environment as the kernel
- Configure Dask Gateway to use the same environment for workers:
options = gw.cluster_options()
options.worker_setup = "source /home/users/yourname/my_dask_env/bin/activate"
options.account = "your-slurm-account-name"- Create your cluster as usual
worker_setup), ensuring consistency.
If you have an existing Dask cluster, close it and ensure all LOTUS jobs are stopped before recreating it using the new environment.
Code Examples
Examples of code and notebooks which can be used to test the JASMIN Dask Gateway service are available on GitHub .