ciaran
01/25/2021, 4:24 PMLocalDaskExecutor
) - Does anyone know how I can visualise the Dask Diagnostics when running Prefect flows?
I know I can look at the individual mapped tasks, but I just wanted to see if there's a similar visualisation to how Dask does itFina Silva-Santisteban
01/25/2021, 5:32 PMLocalDaskExecutor
work with the local prefect agent or do you need to use a different one?ciaran
01/25/2021, 5:33 PMFina Silva-Santisteban
01/25/2021, 5:34 PMciaran
01/25/2021, 5:35 PMflow.executor = LocalDaskExecutor(scheduler="threads") # This line
flow.register(project_name="test-project")
The first line in and it workedFina Silva-Santisteban
01/25/2021, 6:59 PMthreads
as well since I’m running a bunch of db calls and pandas. If you have tasks that can run in parallel you should be able to see that happening in the timeline view when using threads! It’s amazing 🤩ciaran
01/26/2021, 9:53 AM