-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HDF5: use native mtime, ctime/btime for created_at, updated_at #50
Comments
This would help allot, since currently |
not sure if I understand the issue: why & when to copy an entity from one file to another? |
I had a look into[1] this and it is quite disappointing. Apparently support for everything but ctime for datasets is lacking:
See also this conversation from June, 2012: [2] This is basically a showstopper for this bug -> not a target for Milestone First Alpha. [1] Compete hack as a test: https://gist.github.com/gicmo/9351530 |
Indeed a bit disappointing and I would not like to implement created_at in a different way than the updated_at time-stamp... |
We currently use HDF5 attributes for staring created_at and updated_at. HDF5 already provides a mechanism for recording such information automatically via
H5Oget_info
[1]. That times will be tracked must be ensured via the corresponding property set byH5Pset_obj_track_times
.[1] http://www.hdfgroup.org/HDF5/doc/RM/RM_H5O.html#Object-GetInfo
[2] http://www.hdfgroup.org/HDF5/doc/RM/RM_H5P.html#Property-SetObjTrackTimes
The text was updated successfully, but these errors were encountered: