Acceleration snapshots let Spice reuse a pre-built acceleration file on startup instead of waiting for a full refresh. When a dataset uses a file-mode acceleration engine (DuckDB or SQLite) and the local file is missing (for example on first boot or when using ephemeral NVMe storage), Spice downloads the most recent snapshot from object storage and moves the dataset straight to a ready state.
:::info Preview Acceleration snapshots are available in preview. :::
acceleration.params (for example duckdb_file) exists.bootstrap_only mode.Snapshots are organized with Hive-style partitioning so they are easy to retain and prune. For a dataset named my_dataset, Spice writes files such as:
The timestamp is recorded in UTC using ISO 8601 without punctuation.
:::warning Dedicated files only
Every accelerated dataset must write to its own file (for example, /nvme/my_dataset.db). Sharing a single file across multiple datasets is not supported.
:::
Snapshots are controlled with a new top-level snapshots block in the Spicepod. The location must point to a folder on S3 or the local filesystem. When the location is an S3 bucket, the configuration accepts any S3 dataset parameters under params.
bootstrap_on_failure_behavior controls what Spice does when it cannot load the most recent snapshot.
retry – keep retrying the newest snapshot until it succeeds.fallback – try older snapshot files until one loads successfully.warn – log a warning and continue with an empty acceleration. (Default.)Each dataset opts into snapshotting through the acceleration.snapshots field. Four modes are available:
enabled – download snapshots on startup and write a new snapshot after each refresh.bootstrap_only – only download snapshots; never write new ones.create_only – write new snapshots after refreshes, but never download them on startup.disabled – disable snapshot usage for this dataset. (Default.)Example Spicepod configuration:
:::info Readiness with append refreshes
Append-mode accelerations that define a time_column wait to report ready until the first append refresh completes after snapshot bootstrap. This keeps the dataset out of rotation until the freshest data is available while still benefiting from the snapshot-assisted startup. See Fast Cold Starts for additional context.
:::
For the full reference, see snapshots in the Spicepod specification and acceleration.snapshots.