This repository has been archived by the owner on Jan 14, 2025. It is now read-only.
Unexpected behavior when loading an wnsemble with sort and sorted flags #412
Labels
bug
Something isn't working
When loading an
Ensemble
, you can currently set whether the data is already sorted and whether to sort it via the respectivesorted
andsort
boolean flags.However currently loading an unsorted dataset with
sort=False
andsorted=True
will produce an unsorted index.Note however that though each individual partition is unsorted, the divisions are still set (all values within a partition are within a given range that doesn't overlap with other partitions). However we should still make sure the data is sorted or change the description of the flag.
When we load with
sort=True
andsorted=False
, we do get a sorted index but now there are warnings that the divisions are not set.@dougbrn noted that this seems related to dask-expr issue dask/dask-expr#975 where we lose divisions with only one partition after a
reset_index
call. This is mildly annoying to fix since ournpartitions
parameter only triggers therepartition
call after we have reset the index and thus already lost the divisions.The text was updated successfully, but these errors were encountered: