I have a set of transforms which are executed under
with dask.annotate(executor="processes"):
Is there any way to confirm that the corresponding tasks are being executed in the process pool ? Is even this annotation a soft constraint ?
Annotations are metadata or soft constraints associated with tasks that dask schedulers may choose to respect: They signal intent without enforcing hard constraints. As such, they are primarily designed for use with the distributed scheduler.
https://docs.dask.org/en/latest/api.html#dask.annotate
NOT A CONTRIBUTION