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 filesystemRepositoryConfig
- 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
With this option, you provide your credentials and other details explicitly. See the API
With this option, you connect to S3 anonymously (without credentials). This is suitable for public data. See the API
Filesystem Storage
Icechunk can also be used on a local filesystem by providing a path to the location of the store
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:
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:
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.
If you are not sure if the repo exists yet, an icechunk Repository
can created or opened if it already exists:
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,
)