Joe Hamman
Joe Hamman
Is the following approach a dependable way of querying the cluster for the number of workers? ```Python min_workers = 10 # for example while len(cluster.workers) < min_workers: sleep(1) ``` The...
@rabernat - most of the hard work for this functionality is being done in #63. Stay tuned.
Related to the Pandera integration, we are prototyping the xarray schema validation functionality in the [xarray-schema](https://github.com/carbonplan/xarray-schema) project.
@asmeurer recently pointed me to https://data-apis.org/array-api-tests/. Would that be useful here?
While there is overlap in the behavior here, I've always thought of these two methods as having distinct applications. `.compute()` is a Dask collection method. `.load()`, which predates Xarray's Dask...
@mrocklin - no objections from me. I can see this being useful for a few other applications as well.
@emilbiju - thanks for opening an issue here. You may want to take a look at the conversation in #1092.
@joshmoore - based on https://github.com/pangeo-forge/pangeo-forge/pull/27#issuecomment-755397835, you may be interested in this issue. One way to do multiscale datasets in Xarray would be to use hierarchical groups (one group per scale).
Hi @lumbric - thanks for the report. Though its often challenging when coming from complicated workflows, getting to a MCVE is really the only way to sort out what is...
@dgergel - Would you mind sharing your prototype concept? The BCSD disaggregator I was thinking of in the roadmap was a temporal disaggregator BUT I'm sure there are some interesting...