The Global Synchronizer upgrades frequently. Validators must keep pace with network versions to remain connected. This page describes the upgrade types, procedures, and verification steps.Documentation Index
Fetch the complete documentation index at: https://cantonfoundation-issue-365-details-history.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Upgrade types
Canton Network upgrades fall into three categories based on their scope and impact.Type 1: Backward-compatible updates
These are routine releases that do not change the synchronizer protocol or Daml models. They typically include bug fixes, performance improvements, and minor feature additions.- Frequency: Weekly to monthly
- Downtime: None required. Perform a rolling upgrade.
- Procedure: Update the container image version and restart. For Kubernetes, run
helm upgradewith the new chart version. For Docker Compose, updateIMAGE_TAGand restart. - Deadline: Apply within 2 weeks of release.
Type 2: Daml model changes
These releases include updated Daml models (Splice Daml packages). The participant needs to load new packages, but the synchronizer protocol itself does not change.- Frequency: Quarterly or as needed
- Downtime: Brief restart required. No network-wide coordination.
- Procedure: Same as Type 1, but verify that new Daml packages are loaded after upgrade by checking participant logs.
- Deadline: Before the date announced in release notes.
Type 3: Synchronizer protocol changes (with downtime)
These are major upgrades that change the synchronizer protocol itself. The entire network coordinates a migration window where Super Validators pause the synchronizer, generate migration dumps, and bring up a new synchronizer instance.- Frequency: Infrequent (announced well in advance)
- Downtime: Network-wide coordinated downtime
- Procedure: Follow the migration procedure described below
- Deadline: Must complete during the announced migration window
Type 1 and Type 2 upgrade procedure
- Kubernetes
- Docker Compose
Pre-upgrade checklist
- Review the release notes for breaking changes or new configuration parameters
- Back up your PostgreSQL database
- Confirm the new chart version is available
Upgrade
Post-upgrade verification
Type 3 upgrade procedure (synchronizer migration)
Type 3 upgrades require coordinated action across the entire network. Super Validators announce the migration window in advance through Slack and mailing lists.How the migration works
- Super Validators pause the Global Synchronizer, halting all transaction processing
- Each validator’s node generates a migration dump — a snapshot of the active contract set
- Super Validators bring up the new synchronizer instance
- Validators deploy the new software version, pointing to the new synchronizer
- The new synchronizer imports the migration dump and resumes transaction processing
Key technical details
- Identities are preserved. All party IDs, participant identities, and validator identities carry over to the new synchronizer.
- Active contracts transfer. The migration dump contains the full active contract set.
- Transaction history does not transfer. The new participant database starts fresh. If you need historical data, archive it before the migration.
- Traffic balances reset to zero. All traffic purchases on the old synchronizer are lost. If auto-top-up is configured, the validator will automatically purchase traffic on the new synchronizer after migration completes. Purchase traffic incrementally to minimize losses during future migrations.
- Migration ID increments. Each Type 3 upgrade increments the migration ID by 1.
Pre-migration checklist
- Back up your entire PostgreSQL database
- Confirm your validator has caught up with the paused synchronizer — check logs for
"Ingested transaction"messages. If the most recent message is more than 10 minutes old, catch-up is likely complete. - Verify the migration dump was created — search logs for
"Wrote domain migration dump" - Download the new Splice node bundle
Migration procedure
- Kubernetes
- Docker Compose
Update your Helm values to enable migration mode:Deploy:After the validator successfully ingests the migration dump and connects to the new synchronizer, disable migration mode:
Post-migration verification
- Validator logs show successful ingestion of the migration dump
- The Wallet UI loads and displays your validator identity
- The new migration ID is active
- Traffic purchase works on the new synchronizer
- Applications can submit transactions through the Ledger API
Staying informed about upgrades
- Slack:
#validator-operationsfor real-time coordination during upgrades - Mailing lists: lists.sync.global for advance notice of upcoming upgrades
- Release notes: Published with each new version on the Splice GitHub releases page
Next steps
Configuration
Review configuration options for your upgraded node.
Super Validator Setup
SV-specific upgrade considerations.