Skip to content

Home / icechunk-python / configuration

Configuration

When creating and opening Icechunk stores, there are a two different sets of configuration to be aware of:

  • StorageConfig - for configuring access to the object store or filesystem
  • RepositoryConfig - for configuring the behavior of the Icechunk Repository itself

Storage Config

Icechunk can be confirgured to work with both object storage and filesystem backends. The storage configuration defines the location of an Icechunk store, along with any options or information needed to access data from a given storage type.

S3 Storage

When using Icechunk with s3 compatible storage systems, credentials must be provided to allow access to the data on the given endpoint. Icechunk allows for creating the storage config for s3 in three ways:

With this option, the credentials for connecting to S3 are detected automatically from your environment. This is usually the best choice if you are connecting from within an AWS environment (e.g. from EC2). See the API

icechunk.StorageConfig.s3_from_env(
    bucket="icechunk-test",
    prefix="quickstart-demo-1"
)

With this option, you provide your credentials and other details explicitly. See the API

icechunk.StorageConfig.s3_from_config(
    bucket="icechunk-test",
    prefix="quickstart-demo-1",
    region='us-east-1',
    credentials=S3Credentials(
        access_key_id='my-access-key',
        secret_access_key='my-secret-key',
        # session token is optional
        session_token='my-token',
    ),
    endpoint_url=None,
    allow_http=False,
)

With this option, you connect to S3 anonymously (without credentials). This is suitable for public data. See the API

icechunk.StorageConfig.s3_anonymous(
    bucket="icechunk-test",
    prefix="quickstart-demo-1",
    region='us-east-1,
)

Filesystem Storage

Icechunk can also be used on a local filesystem by providing a path to the location of the store

icechunk.StorageConfig.filesystem("/path/to/my/dataset")

Repository Config

Separate from the storage config, the Repository can also be configured with options which control its runtime behavior.

Writing chunks inline

Chunks can be written inline alongside the store metadata if the size of a given chunk falls within the configured threshold. Inlining allows these small chunks (often used to store small coordinate variables) to be accessed more quickly. This is the default behavior for chunks smaller than 512 bytes, but it can be overridden using the inline_chunk_threshold_bytes option:

RepositoryConfig(
    inline_chunk_threshold_bytes=0,
    ...
)
RepositoryConfig(
    inline_chunk_threshold_bytes=1024,
    ...
)

Virtual Reference Storage Config

Icechunk allows for reading "Virtual" data from existing archival datasets. This requires creating a distinct VirtualRefConfig (similar to StorageConfig) giving Icechunk the necessary permissions to access the archival data. This can be configured using the virtual_ref_config option:

RepositoryConfig(
    virtual_ref_config=VirtualRefConfig.s3_from_env(),
    ...
)
RepositoryConfig(
    virtual_ref_config=VirtualRefConfig.s3_from_config(
        credential=S3Credentials(
            access_key_id='my-access-key',
            secret_access_key='my-secret-key',
        ),
        region='us-east-1'
    ),
    ...
)
RepositoryConfig(
    virtual_ref_config=VirtualRefConfig.s3_anonymous(region='us-east-1'),
    ...
)

Creating and Opening Repos

Now we can now create or open an Icechunk store using our config.

Creating a new repo

Note

Icechunk repos cannot be created in the same location where another store already exists.

storage = icechunk.StorageConfig.s3_from_env(
    bucket='earthmover-sample-data',
    prefix='icechunk/oisst.2020-2024/',
    region='us-east-1',
)

repo = icechunk.Repository.create(
    storage=storage,
)
storage = icechunk.StorageConfig.filesystem("/path/to/my/dataset")
config = icechunk.RepositoryConfig(
    inline_chunk_threshold_bytes=1024,
)

repo = icechunk.Repository.create(
    storage=storage,
)

If you are not sure if the repo exists yet, an icechunk Repository can created or opened if it already exists:

storage = icechunk.StorageConfig.s3_from_env(
    bucket='earthmover-sample-data',
    prefix='icechunk/oisst.2020-2024/',
    region='us-east-1',
)

repo = icechunk.Repository.open_or_create(
    storage=storage,
)
storage = icechunk.StorageConfig.filesystem("/path/to/my/dataset")
config = icechunk.RepositoryConfig(
    inline_chunk_threshold_bytes=1024,
)

repo = icechunk.Repository.open_or_create(
    storage=storage,
)

Opening an existing repo

storage = icechunk.StorageConfig.s3_anonymous(
    bucket='earthmover-sample-data',
    prefix='icechunk/oisst.2020-2024/',
    region='us-east-1',
)

config = icechunk.RepositoryConfig(
    virtual_ref_config=icechunk.VirtualRefConfig.s3_anonymous(region='us-east-1'),
)

repo = icechunk.Repository.open_existing(
    storage=storage,
    config=config,
)
storage = icechunk.StorageConfig.filesystem("/path/to/my/dataset")
config = icechunk.RepositoryConfig(
    inline_chunk_threshold_bytes=1024,
)

store = icechunk.IcechunkStore.open_existing(
    storage=storage,
    config=config,
)