You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mike Jiang
[8:38]
`coords` is tuple list for 2.5k points, this occurred when I am trying to implement my own `fancy slicing` (`ds[idx1, idx2]`) by translating it into coordinates-based `point selection`
jreadey [8:43 PM]
Right the server gives a 413 error when a selection hits too many chunks.
[8:44]
Basically the server wants to ensure that it can respond to the request within a reasonable time.
[8:45]
Would it be possible to restructure your query so that it consists of multiple requests where each request hits fewer chunks?
[8:46]
In h5pyd I do this automatically for hyperslab selections. See: https://github.com/HDFGroup/h5pyd/blob/master/h5pyd/_hl/dataset.py lines 718-800.
GitHub
HDFGroup/h5pyd
h5pyd - h5py distributed - Python client library for HDF Rest API
[8:53]
Shouldn't be a problem to do the same kind of logic in h5pyd for point selection as is there now for hyperslab selection.
The text was updated successfully, but these errors were encountered: