Ian Rose
Ian Rose
Hi @juniorrojas, there is a command `Open from Path` which does that. It is not mapped to any keyboard shortcut by default, but you can set it to one using...
Just ran into this again today with a *very* simple reproducer: ```python import distributed from dask.datasets import timeseries cluster = distributed.LocalCluster(processes=False) client = distributed.Client(cluster) ddf = timeseries() ddf.compute() ```
I think the north star of designing the next version of High Level Graph layers should be Blockwise + Slicing: ```python x = da.random.uniform(size=(1_000_000, 1_000_000)) y = x * 2...