Bokeh RC Updates Breaks Dashboard
See original GitHub issueIn bokeh 2.3.0rc2
, there are some issues with Dask dashboard documented here:
https://github.com/bokeh/bokeh/issues/10935
While Bokeh updates to handle nullables for a variety of objects dask could update the null calls within Bokeh
Setting None
in x_range:
https://github.com/dask/distributed/blob/383ea0326ae103b5d5e0b62ed9c3cb18510c5b9e/distributed/dashboard/components/scheduler.py#L867-L874
This could be set to 100
which we do in the update:
https://github.com/dask/distributed/blob/383ea0326ae103b5d5e0b62ed9c3cb18510c5b9e/distributed/dashboard/components/scheduler.py#L994
We also have a None
in the Profile plot selector:
https://github.com/dask/distributed/blob/383ea0326ae103b5d5e0b62ed9c3cb18510c5b9e/distributed/dashboard/components/shared.py#L277
I believe the defaults here is `[‘All’, None]
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (5 by maintainers)
Top GitHub Comments
Fixed on the bokeh side but I still plan change the xrange and select defaults
This was fixed right?