https://prefect.io logo
Title
t

Thomas Fredriksen

06/09/2022, 6:30 AM
Hi there, is it possible to obtain the dask client when running with the `DaskExecutor`/`LocalDaskExecutor` or the
DaskTaskRunner
in Orion?
1
a

Anna Geller

06/09/2022, 10:40 AM
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

Kevin Kho

06/09/2022, 2:54 PM
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

Thomas Fredriksen

06/14/2022, 7:19 AM
Very promising, thank you!