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
to check for zarr v2 nodes. Would it be better to do attrs first and then the others? Do we think there is minimal overhead to doing all at once? I ask because previously, doing something like g["foo"] would only access .zarray if foo was a group and I'm looking to do the least fetching of data possible. Or maybe groups should be given precedence? I'm not sure how this used to work - I don't think I ever checked whether fetching group accessed .zarray previously.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
At the moment there is something like
zarr-python/src/zarr/core/group.py
Lines 688 to 692 in 40da497
to check for zarr v2 nodes. Would it be better to do
attrs
first and then the others? Do we think there is minimal overhead to doing all at once? I ask because previously, doing something likeg["foo"]
would only access.zarray
iffoo
was a group and I'm looking to do the least fetching of data possible. Or maybe groups should be given precedence? I'm not sure how this used to work - I don't think I ever checked whether fetching group accessed.zarray
previously.Beta Was this translation helpful? Give feedback.
All reactions