-
-
Notifications
You must be signed in to change notification settings - Fork 308
Adds new subfiling API H5FDsubfiling_get_file_mapping() #5828
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
Open
brtnfld
wants to merge
24
commits into
HDFGroup:develop
Choose a base branch
from
brtnfld:subfiling_mapping
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fortran/src/H5VFDff.F90
Outdated
! **** _| |_| | | | | | |__| | | \ \ | |/ ____ \| |\ | | | **** | ||
! |_____|_| |_|_| \____/|_| \_\ |_/_/ \_\_| \_| |_| | ||
! | ||
! If you add a new H5VL function you must add the function name to the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo noticed in the documentation: "H5VL function" appears instead of "H5VFD function". Considering this module provides the Fortran interface for H5VFD, please update the comment accordingly.
Suggested change
! If you add a new H5VL function you must add the function name to the | |
! If you add a new H5VFD function you must add the function name to the |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Component - C Library
Core C library issues (usually in the src directory)
Component - Parallel
Parallel HDF5 (NOT thread-safety)
HDFG-internal
Internally coded for use by the HDF Group
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Maps logical file to physical subfiles: When HDF5 uses the subfiling VFD, a single logical HDF5 file is actually split across multiple physical subfiles stored on different nodes. The new API returns subfile paths, providing the complete list of subfile names/paths that make up the logical file for a given MPI rank. This enables file reconstruction by using tools like h5fuse to recombine the subfiles into a single HDF5 file.
Closes #5120
Important
Adds
H5FDsubfiling_get_file_mapping()
API to map logical HDF5 files to physical subfiles, with Fortran support and comprehensive testing.H5FDsubfiling_get_file_mapping()
inH5FDsubfiling.c
to retrieve subfile paths for a logical HDF5 file.H5VFDff.F90
to includeh5fdsubfiling_get_file_mapping_f()
.t_subfiling_vfd.c
forH5FDsubfiling_get_file_mapping()
covering various scenarios including error conditions and I/O operations.h5fuse.in
to support a list of subfiles for processing with a new-l
option.This description was created by
for 9501371. You can customize this summary. It will automatically update as commits are pushed.