I ran into this issue previously. In essence, we save the Number of Halos per tree in a header attribute. However, for large simulations the number of trees is extraordinarily large, the datasize of the attribute exceeds the 64kb limit.
Possible solutions are:
-
Write NHalosPerTree as a data object instead of an attribute (i.e., make it a group that can be accessed via a key). Will need to investigate the reprecussions of this, the least of which would be to adjust the SAGE HDF5 reader.
-
Write to more files so a single file doesn't exceed 64kb. This isn't scalable so probably not the best solution...
For now, I'm just going to write only to a binary file.
I ran into this issue previously. In essence, we save the Number of Halos per tree in a header attribute. However, for large simulations the number of trees is extraordinarily large, the datasize of the attribute exceeds the 64kb limit.
Possible solutions are:
Write
NHalosPerTreeas a data object instead of an attribute (i.e., make it a group that can be accessed via a key). Will need to investigate the reprecussions of this, the least of which would be to adjust theSAGEHDF5 reader.Write to more files so a single file doesn't exceed 64kb. This isn't scalable so probably not the best solution...
For now, I'm just going to write only to a binary file.