Dask Gateway
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.
Before using Dask Gateway on JASMIN, you will need:
jasmin-login
access role:
Apply here
jasmin-login
has been approved and completed), the dask
access role:
Apply here
The jasmin-login
access role ensures that your account is set up with access to the LOTUS batch processing cluster, while the dask
role grants access to the special LOTUS partition used by the Dask Gateway 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
# 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()
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.
Make a Dask configuration folder in your home directory
mkdir -p ~/.config/dask
Create a configuration file for dask-gateway
touch ~/.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-gateway
from the command line.
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.
By default the JASMIN Notebooks service and Dask Gateway use the latest version of the jaspy
software environment. However, often users would like to use their own software environments.
When Dask Gateway creates a dask cluster for a user, it runs a setup command to activate a conda environment or python venv
.
To have Dask use your packages, you need to create a custom environment which you can pass to dask-gateway
to activate.
However, for technical reasons, it is not currently possible to use the same virtual environment in both the notebook service and on JASMIN. So you will need to make two environments, one for your notebook to use and one for Dask to use.
It is VERY important that these environments have the same packages installed in them, and that the packages are exactly the same version in both environments.
If you do not keep packages and versions in-sync you can expect many confusing errors.
If you use a self-contained conda environment this is not a problem, and you can use this as a kernel in the notebooks service and on the sci
machines. You can skip to
Putting it all together below.
sci
machines.jaspy
module load jaspy
python -m venv name-of-environment
source name-of-environment/bin/activate
pip install dask-gateway dask lz4
pip install dask-gateway dask lz4
options.worker_setup
to a command which will activate your Dask virtual environment. For exampleoptions.worker_setup = "source /home/users/example/name-of-environment/bin/activate"
Examples of code and notebooks which can be used to test the JASMIN Dask Gateway service are available on GitHub .