Is there any difference between using LocalDask vs...
# prefect-community
j
Is there any difference between using LocalDask vs Dask without providing a cluster? Do they do the same thing under the hood?
k
I think mostly the same if you use LocalDask with processes, but different because LocalDask uses
dask
and Dask uses
distributed
j
Gotcha, that helps, thank you. Do you know if there is much performance difference between the two?
k
I dont know on time, but I think Dask LocalCluster is more stable
j
Awesome, thanks!