Hi there, is it possible to obtain the dask client...
# prefect-community
t
Hi there, is it possible to obtain the dask client when running with the `DaskExecutor`/`LocalDaskExecutor` or the
DaskTaskRunner
in Orion?
1
a
I'm afraid this is not possible. You would need to create a client object from a Dask client class yourself if you need to talk directly to Dask
k
I think you might be able to using
worker_client
. See this .
LocalDaskExecutor
is a multiprocessing pool for there no client. The Client is for
distributed
specifically
t
Very promising, thank you!