Update FAQ with chunking and virtualization details#1007
Open
TomNicholas wants to merge 1 commit into
Open
Conversation
Added explanation about format chunk requirements and virtualization restrictions for multi-file datasets.
maxrjones
approved these changes
Jun 15, 2026
maxrjones
left a comment
Member
There was a problem hiding this comment.
I made a couple recommendations for improved readability. thanks for opening this!
| @@ -25,6 +25,8 @@ Depends on some details of your data. | |||
| VirtualiZarr works by mapping your data to the zarr data model from whatever data model is used by the format it was saved in. | |||
| This means that if your data contains anything that cannot be represented within the zarr data model, it cannot be virtualized. | |||
Member
There was a problem hiding this comment.
Suggested change
| This means that if your data contains anything that cannot be represented within the zarr data model, it cannot be virtualized. | |
| This means that if your data contains anything that cannot be represented within the zarr data model, it cannot be virtualized. The following restrictions influence whether you can virtualize a data file. |
I think a pre-ample to the list would help
| VirtualiZarr works by mapping your data to the zarr data model from whatever data model is used by the format it was saved in. | ||
| This means that if your data contains anything that cannot be represented within the zarr data model, it cannot be virtualized. | ||
|
|
||
| - **Format chunks span contiguous byte ranges** - It's only possible to efficiently access individual chunks of data inside blobs in object storage if each chunk can be fetched via a single HTTP range request, which requires each chunk to occupy a contiguous localized series of bytes within the file layout. Well-designed formats such as netCDF and GRIB have this property, but other formats such as CSV do not. Note also this means that any additional processing which scrambles the byte locations will prevent virtualization - a single netCDF file is virtualizable, but a zipped or gzipped netCDF file is not! |
Member
There was a problem hiding this comment.
Suggested change
| - **Format chunks span contiguous byte ranges** - It's only possible to efficiently access individual chunks of data inside blobs in object storage if each chunk can be fetched via a single HTTP range request, which requires each chunk to occupy a contiguous localized series of bytes within the file layout. Well-designed formats such as netCDF and GRIB have this property, but other formats such as CSV do not. Note also this means that any additional processing which scrambles the byte locations will prevent virtualization - a single netCDF file is virtualizable, but a zipped or gzipped netCDF file is not! | |
| - **File must contain chunks of data, where each chunk spans a contiguous segment of the file** - For virtualization to work, each chunk must occupy a contiguous localized series of bytes within the file layout, so that the chunks can be fetched via a single HTTP range request. Well-designed formats such as netCDF and GRIB have this property, but other formats such as CSV do not. Note also this means that any additional processing which scrambles the byte locations will prevent virtualization - a single netCDF file is virtualizable, but a zipped or gzipped netCDF file is not! |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Added explanation about format chunk requirements and virtualization restrictions for multi-file datasets.
What I did
Acceptance criteria:
docs/releases.md*.mdfile underdocs/api