Skip to content

Custom parsers

This page explains how to write a custom parser for VirtualiZarr, to extract chunk references from an archival data format not already supported by the main package. This is advanced material intended for 3rd-party developers, and assumes you have read the page on Data Structures.

Note

"Parsers" were previously known variously as "readers" or "backends" in older versions of VirtualiZarr. We renamed them to avoid confusion with obstore readers and xarray backends.

What is a VirtualiZarr parser?

All VirtualiZarr parsers are simply callables that accept a path to a file of a specific format and an instantiated obstore store to read data from it with, and return an instance of the virtualizarr.manifests.ManifestStore class containing information about the contents of that file.

from virtualizarr.manifests import ManifestStore, ObjectStoreRegistry


def custom_parser(file_url: str, object_store: ObjectStore) -> ManifestStore:
    # access the file's contents, e.g. using the ObjectStore instance
    readable_file = obstore.open_reader(object_store, file_url)

    # parse the file contents to extract its metadata
    # this is generally where the format-specific logic lives
    manifestgroup: ManifestGroup = extract_metadata(readable_file)

    # optionally create an object store registry, used to actually load chunk data from file later
    registry = ObjectStoreRegistry({store_prefix: object_store})

    # construct the Manifeststore from the parsed metadata and the object store registry
    return ManifestStore(group=manifestgroup, store_registry=registry)


vds = vz.open_virtual_dataset(
    file_url,
    object_store=object_store,
    parser=custom_parser,
)

All parsers must follow this exact call signature, enforced at runtime by checking against the virtualizarr.parsers.typing.Parser typing protocol.

Note

The object store registry can technically be empty, but to be able to read actual chunks of data back from the ManifestStore later, the registry needs to contain at least one ObjectStore instance.

The only time you might want to use an empty object store registry is if you are attempting to parse a custom metadata-only references format without touching the original files they refer to -- i.e., a format like Kerchunk or DMR++, that doesn't contain actual binary data values.

What is the responsibility of a parser?

The VirtualiZarr package really does four separate things, in order:

  1. Maps the contents of common archival file formats to the Zarr data model, including references to the locations of the chunks.
  2. Allows reading chosen variables into memory (e.g. via the loadable_variables kwarg, or reading from the ManifestStore using zarr-python directly).
  3. Provides a way to combine arrays of chunk references using a convenient API (the Xarray API).
  4. Allows persisting these references to storage for later use, in either the Kerchunk or Icechunk format.

VirtualiZarr parsers are responsible for the entirety of step (1). In other words, all of the assumptions required to map the data model of an archival file format to the Zarr data model, and the logic for doing so for a specific file, together constitute a parser.

The ObjectStore instances are responsible for fetching the bytes in step (2).

This design provides a neat separation of concerns, which is helpful in two ways:

  1. The Xarray data model is subtly different from the Zarr data model (see below), so as the final objective is to create a virtual store which programmatically maps Zarr API calls to the archival file format at read-time, it is useful to separate that logic up front, before we convert to use the xarray virtual dataset representation and potentially subtly confuse matters.
  2. It also allows us to support reading data from the file via the ManifestStore interface, using zarr-python and obstore, but without using Xarray.

Reading data from the ManifestStore

As well as being a well-defined representation of the archival data in the Zarr model, you can also read chunk data directly from the ManifestStore object.

This works because the ManifestStore class is an implementation of the Zarr-Python zarr.abc.Store interface, and uses the obstore package internally to actually fetch chunk data when requested.

Reading data from the ManifestStore can therefore be done using the zarr-python API directly:

manifest_store = parser(url, object_store)

zarr_group = zarr.open_group(manifest_store)
zarr_group.tree()
or using xarray:
manifest_store = parser(url, object_store)

ds = xr.open_zarr(manifest_store)

Note using xarray like this would produce an entirely non-virtual dataset, so is equivalent to passing

ds = vz.open_virtual_dataset(
    file_url,
    object_store=object_store,
    parser=parser,
    loadable_variables=<all_the_variable_names>,
)

How is the parser called internally?

The parser is passed to open_virtual_dataset, and immediately called on the file url to produce a ManifestStore instance.

The ManifestStore is then converted to the xarray data model using ManifestStore.to_virtual_dataset, which loads loadable_variables by reading from the ManifestStore using xarray.open_zarr.

This virtual dataset object is then returned to the user, so open_virtual_dataset is really a very thin wrapper around the parser and object store you pass in.

Parser-specific keyword arguments

The Parser callable does not accept arbitrary optional keyword arguments.

However, extra information is often needed to fully map the archival format to the Zarr data model, for example if the format does not include array names or dimension names.

Instead, to pass arbitrary extra information to your parser callable, it is recommended that you bind that information to class attributes (or use functools.partial). For example:

class CustomParser:
    def __init__(self, **kwargs) -> None:
        self.kwargs = kwargs

    def __call__(self, file_url: str, object_store: ObjectStore) -> ManifestStore:
        # access the file's contents, e.g. using the ObjectStore instance
        readable_file = obstore.open_reader(object_store, file_url)

        # parse the file contents to extract its metadata
        # this is generally where the format-specific logic lives
        manifestgroup: ManifestGroup = extract_metadata(readable_file, **self.kwargs)

        # construct the Manifeststore from the parsed metadata
        return ManifestStore(...)


vds = vz.open_virtual_dataset(
    file_url,
    object_store=object_store,
    parser=CustomParser(**kwargs),
)

This helps to keep format-specific parser configuration separate from kwargs to open_virtual_dataset.

How to write your own custom parser

As long as your custom parser callable follows the interface above, you can implement it in any way you like. However there are few common approaches.

Typical VirtualiZarr parsers

The recommended way to implement a custom parser is simply to parse the given file yourself, and construct the ManifestStore object explicitly, component by component, extracting the metadata that you need.

Generally you want to follow steps like this:

  1. Extract file header or magic bytes to confirm the file passed is the format your parser expects.

  2. Read metadata to determine how many arrays there are in the file, their shapes, chunk shapes, dimensions, codecs, and other metadata.

  3. For each array in the file:

    1. Create a zarr.core.metadata.ArrayV3Metadata object to hold that metadata, including dimension names. At this point you may have to define new Zarr codecs to support deserializing your data (though hopefully the standard Zarr codecs are sufficient).

    2. Extract the byte ranges of each chunk and store them alongside the fully-qualified filepath in a ChunkManifest object.

    3. Create one ManifestArray object, using the corresponding zarr.core.metadata.ArrayV3Metadata and ChunkManifest objects.

  4. Group ManifestArrays into one or more ManifestGroup objects. Ideally you would only have one group, but your format's data model may preclude that. If there is group-level metadata attach this to the ManifestGroup object as a zarr.metadata.GroupMetadata object. Remember that ManifestGroups can contain other groups as well as arrays.

  5. Instantiate the final ManifestStore using the top-most ManifestGroup and return it.

Note

The regular chunk grid for Zarr V3 data expects that chunks at the border of an array always have the full chunk size, even when the array only covers parts of it.

For example, having an array with "shape": [30, 30] and "chunk_shape": [16, 16], the chunk 0,1 would also contain unused values for the indices 0-16, 30-31. If the file format that you are virtualizing does not fill in partial chunks, it is recommended that you raise a ValueError until Zarr supports variable chunk sizes.

Parsing a pre-existing index file

A custom parser can parse multiple files, perhaps by passing a glob string and looking for expected file naming conventions, or by passing additional parser-specific keyword arguments. This can be useful for reading file formats which include some kind of additional "index" sidecar file, but don't have all the information necessary to construct the entire ManifestStore object from the sidecar file alone.

Note

If you do have some type of custom sidecar metadata file which contains all the information necessary to create the ManifestStore, then you should just create a custom parser for that metadata file format instead! Examples of this approach which come packaged with VirtualiZarr are the DMRPPparser and the KerchunkJSONparser

Kerchunk-based parsers

The Kerchunk package includes code for parsing various array file formats, returning the result as an in-memory nested dictionary, following the Kerchunk references specification. These references can be directly read and converted into a ManifestStore by VirtualiZarr's KerchunkJSONParser and KerchunkParquetParser.

You can therefore use a function which returns in-memory kerchunk JSON references inside your parser, then simply call KerchunkJSONParser and return the result.

Note

Whilst this might be the quickest way to get a custom parser working, we do not really recommend this approach, as:

  1. The Kerchunk in-memory nested dictionary format is very memory-inefficient compared to the numpy array representation used internally by VirtualiZarr's ChunkManifest class,
  2. The Kerchunk package in general has a number of known bugs, often stemming from a lack of clear internal abstractions and specification,
  3. This lack of data model enforcement means that the dictionaries returned by different Kerchunk parsers sometimes follow inconsistent schemas (for example).

Nevertheless this approach is used by VirtualiZarr internally, at least for the FITS, netCDF3, and the (since-deprecated-and-removed original implementation of the) HDF5 file format parsers.

Data model differences between Zarr and Xarray

Whilst the ManifestStore class enforces nothing other than the minimum required to conform to the Zarr model, if you want to convert your ManifestStore to a virtual xarray dataset using ManifestStore.to_virtual_dataset, there are a couple of additional requirements, set by Xarray's data model.

  1. All arrays must have dimension names, specified in the zarr.core.metadata.ArrayV3Metadata objects.
  2. All arrays in the same group with a common dimension name must have the same length along that common dimension.

You also may want to set the coordinates field of the group metadata to tell xarray to set those variables as coordinates upon conversion.

Testing your new parser

The fact we can read data from the ManifestStore is useful for testing that our parser implementation behaves as expected.

If we already have some other way to read data directly into memory from that archival file format -- for example, a conventional xarray IO backend -- we can compare the results of opening and loading data via the two approaches.

For example we could test the ability of VirtualiZarr's in-built HDFParser to read netCDF files by comparing the output to xarray's h5netcdf backend.

import xarray.testing as xrt

from virtualizarr.parsers import HDFParser

manifest_store = HDFParser("file.nc", object_store=obstore.LocalStore)

with (
    xr.open_dataset(manifest_store, engine="zarr") as actual,
    xr.open_dataset(manifest_store, backend="h5netcdf") as expected,
):
    xrt.assert_identical(actual, expected)

These two approaches do not share any IO code, other than potentially the CF-metadata decoding that xarray.open_dataset optionally applies when opening any file. Therefore if the results are the same, we know our custom parser implementation behaves as expected, and that reading the netCDF data back via Icechunk/Kerchunk should give the same result as reading it directly.