Go to file
Quincey Koziol ad3ace3d16 [svn-r6891] Purpose:
Bug fix

Description:
    Raw data I/O on chunked datasets would attempt to allocate data structures
proportional to the number of chunks in the dataset on disk, instead of just
the number of chunks that the I/O operation would interact with, causing
operations on datasets with large #'s of chunks to fail (or become very slow),
even though the actual I/O operation was very modest.

Solution:
    This is the "scalability fix" for chunked datasets that I've mentioned
we need to do, althought it's not the complete fix for the issue.  Read on
for the details...
    Only create data structures for the chunks that the I/O operation will
actually act on, reducing the amount of information allocated in memory,
normally.
    I say "normally", because this algorithm has the same problems as the
original algorithm (worse actually, since the data structure for each chunk
is larger now) if _all_ the chunks in a dataset with a lot of chunks are
actually involved in the I/O operation.  If that is the case, this code
will fail in a similar way.
    To truly fix the problem, we would need to only create data structures for
a particular number of chunks, perform the I/O on just those chunks, then
release the data structures for those chunks and create data structures for
the next set of chunks to access, etc.  However, I think this case is pretty
rare right now and we should worry about it after the 1.6.0 release.

Platforms tested:
    h5committested
2003-05-17 16:50:55 -05:00
bin [svn-r6765] Purpose: 2003-04-28 13:39:41 -05:00
c++ [svn-r6842] Purpose: 2003-05-08 18:19:15 -05:00
config [svn-r6876] Purpose: 2003-05-15 13:52:07 -05:00
doc [svn-r6877] Purpose: 2003-05-15 13:53:22 -05:00
examples [svn-r6842] Purpose: 2003-05-08 18:19:15 -05:00
fortran [svn-r6886] Purpose: 2003-05-17 14:38:50 -05:00
hl/tools/gif2h5 [svn-r6540] Purpose: 2003-03-31 13:04:52 -05:00
pablo [svn-r6537] Purpose: 2003-03-31 12:44:34 -05:00
perform [svn-r6822] Purpose: 2003-05-07 15:49:51 -05:00
release_docs [svn-r6887] Purpose: 2003-05-17 14:39:18 -05:00
src [svn-r6891] Purpose: 2003-05-17 16:50:55 -05:00
test [svn-r6884] Purpose: bug fix 2003-05-16 10:18:10 -05:00
testpar [svn-r6795] Purpose: 2003-05-05 15:48:33 -05:00
tools [svn-r6883] Purpose: 2003-05-15 18:29:51 -05:00
windows [svn-r6873] 2003-05-14 15:17:23 -05:00
.autom4te.cfg [svn-r6378] Purpose: 2003-02-06 17:06:35 -05:00
aclocal.m4 [svn-r5727] Purpose: 2002-06-29 18:39:05 -05:00
configure [svn-r6886] Purpose: 2003-05-17 14:38:50 -05:00
configure.in [svn-r6886] Purpose: 2003-05-17 14:38:50 -05:00
COPYING [svn-r6403] Purpose: 2003-02-14 14:58:07 -05:00
Makefile.dist
Makefile.in [svn-r6872] Purpose: 2003-05-13 20:31:58 -05:00
MANIFEST [svn-r6878] Purpose: 2003-05-15 14:22:33 -05:00
README.txt [svn-r6835] 2003-05-08 14:14:29 -05:00

HDF5 version 1.5.54 currently under development
Please refer to the release_docs/INSTALL file for installation instructions.
------------------------------------------------------------------------------

This release is almost fully functional for the entire API defined in the
documentation, see the RELEASE.txt file in this directory for information
specific to this release of the library.  The INSTALL file contains
instructions on compiling and installing the library.  The INSTALL_parallel
file contains instructions on installing the parallel version of the
library.  The INSTALL* files can be found in the release_docs/ directory.

Documentation for this release is in the html directory.  Start with the
"index.html" in that directory.

Four mailing lists are currently set up for use with the HDF5
library.

   hdf5         - For general discussion of the HDF5 library with
		  other users.

   hdf5dev      - For discussion of the HDF5 library development
		  with developers and other interested parties.

   hdf5announce - For announcements of HDF5 related developments,
		  not a discussion list.

   hdf5cvs      - For checkin notices of code development on the library,
		  not a discussion list.

To subscribe to a list, send mail to "majordomo@ncsa.uiuc.edu",
with "subscribe <list>" in the _body_, not the Subject, of the message.
E.g., subscribe hdf5 

Messages to be sent to the list should be sent to "<list>@ncsa.uiuc.edu".

Nearly daily code snapshots are now being provided at the following URL:
    ftp://hdf.ncsa.uiuc.edu/pub/outgoing/hdf5/snapshots
Please read the readme file in that directory before working with a library
snapshot.

The HDF5 website is located at http://hdf.ncsa.uiuc.edu/HDF5/

Bugs should be reported to hdfhelp@ncsa.uiuc.edu.