Introduction
We are excited to announce that DFINITY started working on enabling canister migration from one subnet to another subnet. This feature allows canister developers to move their canisters away from a busy subnet or onto a subnet with desired subnet features (e.g., the European subnet) or replication (e.g., the fiduciary subnet).
Canister migration preserves canister state, cycles, and canister ID. On the other hand, canister migration does not preserve transient state (metrics, logs, history) and reserved cycles. Last but not least, the canister must be stopped (no open call contexts) before canister migration.
In the remainder of this post, we propose a flow for canister migration and would like to kindly ask you for your feedback on our proposal.
High-Level Overview
Canister migration is split into three phases:
- Canister State Migration: via downloading and uploading a canister snapshot;
- Canister Cycles Migration: via cycles wallet;
- Canister ID Migration: via a dedicated NNS canister.
Canister State Migration
Canister state migration proceeds via downloading a canister snapshot of the original canister and uploading that canister snapshot to a new canister on the target subnet (with a temporarily different canister ID). This flow will be enabled by extending the management canister API with endpoints to:
- read snapshotâs metadata;
- read snapshotâs paginated binary data (wasm module, main, stable memory);
- read snapshotâs wasm chunk store (by chunk hash);
- create new snapshot from metadata (instead of the current canister state);
- write snapshotâs paginated binary data (wasm module, main, stable memory);
- write snapshotâs wasm chunk store (chunk-wise).
The new management canister API will be used by:
- a pair of new dfx commands to download and upload canister snapshots stored in a directory on disk (off-chain) and
- by a âsnapshot migration canisterâ (developed by DFINITY) providing an endpoint to migrate a canister snapshot to another canister (on-chain).
The on-chain flow using a snapshot migration canister allows for independent data integrity verification (using reproducible builds, canister history, and logs stored in the snapshot migration canister).
We point out that downloading and uploading canister snapshots is useful beyond canister migration: it enables keeping multiple (backup) snapshots (ICP currently only allows one snapshot per canister), release/local testing with mainnet/preconfigured state, and disaster recovery.
Canister Cycles Migration
Canister cycles migration can be performed by deploying the cycles wallet to the original canister after taking its snapshot and transferring cycles to the target canister using that cycles wallet. The individual steps are already available as dedicated dfx commands (dfx identity deploy-wallet
and dfx canister deposit-cycles
).
Canister ID Migration
After canister state migration, there are two canisters: the original canister with the original canister ID on the original subnet and the new canister with a temporarily different canister ID on the target subnet that has the same state as the original canister. The goal of canister ID migration is to rename the new canister on the target subnet to the original canister ID and to get rid of the original canister on the original subnet. A principal controlling both canisters triggers canister ID migration by
- adding a new dedicated NNS canister performing canister ID migration as an additional controller of both canisters; and
- making a call to the NNS canister performing canister ID migration.
A new dedicated dfx command will encapsulate these steps. Once the call to the NNS canister successfully completes, the new canister on the target subnet has the original canister ID and controllers. Otherwise, canister migration can be aborted by restoring the original canister from its snapshot.
Discussion
We are happy to receive feedback or answer questions here, and weâll share updates on the progress in this forum thread.