Any #holoviz or #panel experts here? Any ideas why panel is so slow with #dask? Given task with small (5M rows) data, I got following benchmarks
- Pandas alone: 1.5 seconds
- Dask alone: 3 seconds
- Panel with pandas: 3 seconds
- Panel with dask: 30 seconds
Panel App which filters just 5M rows of data using dask is very slow - Why?
I have an application which should Read raw data (ultimately, 100โs of millions of rows) Filter data based on widgets Draw graphs Iโm evaluating Holoviz for the purpose. Now I have created an application which uses Dask, but itโs really, really slow. Iโve tried to reproduce the slowness in this MWE app with a dummy data set. Code for MWE app: from __future__ import annotations import sys import dask.dataframe as dd import hvplot.dask # noqa import panel as pn @pn.cache def get_data() -> ...









