Any way to customize a task's label in the dashboard?

@ubw218 Thanks for your question! With Delayed objects, you can use the dask_key_name parameter to customize that key. Ref docs: API — Dask documentation

from dask import delayed
from distributed import Client

client = Client()

@delayed
def inc(x):
    return x + 1

inc(20, dask_key_name='unique_dask_key_name').compute()
1 Like