Has anyone gotten Dask debug logging working with ...
# prefect-server
a
Has anyone gotten Dask debug logging working with
LocalDaskExecutor
? I tried running this code but haven't seen any output from Dask in Prefect Cloud:
Copy code
with Flow(
        "simple_aggregate_flow",
        executor=LocalDaskExecutor(
            scheduler="processes", **{
                "distributed.logging.distributed": "debug",
            }),
) as simple_aggregate_flow:
...
k
Hey @Ayla Khan, I’ll look into this
a
Thank you!
k
The
LocalDaskExecutor
does not rely on
distributed
which is why this isn’t working. It is a multithreaded/multiprocessing scheduler, and there’s no straightforward way to get the logs here.
a
Ok, thank you for following up. Are there other techniques I could use to debug a flow using
LocalDaskExecutor
on Prefect Cloud?
k
I am not seeing a way unfortunately.
a
Thank you anyways!