-
We are submitting a task like so:
However, we'd like to associate metadata with this task, such as the user who submitted the task. I see that TaskState has a metadata field, and I see that
and afterwards I can run |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You might want to try Dask annotations with dask.annotate(user="matthew"):
future = client.submit(func, args) These annotations aren't easily queryable though. They end up on the TaskState but most user-visible functions don't inspect them. |
Beta Was this translation helpful? Give feedback.
You might want to try Dask annotations
These annotations aren't easily queryable though. They end up on the TaskState but most user-visible functions don't inspect them.