I have about 500 HDF5 files each of about 1.5 GB.

Each of the files has the same exact structure, which is 7 compound (int,double,double) datasets and variable number of samples.

Now I want to concatenate all this files by concatenating each of the datasets so that at the end I have a single 750 GB file with my 7 datasets.

Currently I am running a h5py script which:

  • creates a HDF5 file with the right datasets of unlimited max
  • open in sequence all the files
  • check what is the number of samples (as it is variable)
  • resize the global file
  • append the data

this obviously takes many hours, would you have a suggestion about improving this?

I am working on a cluster, so I could use HDF5 in parallel, but I am not good enough in C programming to implement something myself, I would need a tool already written.

thanks!

link|improve this question

One possibility is merging together pairs of files on your cluster; reduce the problem to 250 3GB files, then 125 6 GB files, and so on. This only helps if partially merged files provides any amount of time saving when merging the results later on. – sarnold Mar 18 '11 at 0:02
@sarnold I am working on hopper at NERSC, theoretical I/O speed is 25 GB/s, also the filesystem is fully parallel and supports MPI I/O. – Andrea Zonca Mar 18 '11 at 3:03
I was thinking to read maybe 3 or 4 files at a time and write them back all together, but the best would be a c utility that exploits somehow mpi I/O. – Andrea Zonca Mar 18 '11 at 3:05
Andrea, I am speechless. I figured an array of excellent drives still wouldn't go past a gigabyte per second... – sarnold Mar 18 '11 at 3:06
2  
One feature hdf5 has is that you can "mount" several subfiles in a "folder" of the master file. That way it might not be needed to merge them all together into one file. See here: davis.lbl.gov/Manuals/HDF5-1.4.3/Tutor/mount.html – schoetbi Mar 19 '11 at 20:08
show 1 more comment
feedback

1 Answer

up vote 3 down vote accepted

I found that most of the time was spent in resizing the file, as I was resizing at each step, so I am now first going trough all my files and get their length (it is variable).

Then I create the global h5file setting the total length to the sum of all the files.

Only after this phase I fill the h5file with the data from all the small files.

now it takes about 10 seconds for each file, so it should take less than 2 hours, while before it was taking much more.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.