When using Dask, does `.map()` automatically harne...
# ask-community
c
When using Dask, does
.map()
automatically harness Dask? (prefect version 2.13.5)
n
yep, if you call
.map
on a task within a flow that uses a DaskTaskRunner, then those will be submitted to that task runner
c
@Nate is it not a good to use the default spinning up of the local dask cluster within a google cloud run job? I seem to be running into some issues with the execution of the tasks that are using dask- this is specifically for the scenario of using the default dask local cluster but also running the flow in google cloud run. I tested this out locally, so no in google cloud, with no issues.