Migration Guide

Overview

This guide covers upgrading Litestream versions, migrating configuration formats, and switching between replica types. Follow the appropriate section based on your current setup and target version.

Version Upgrades

Upgrading to v0.5.0+

v0.5.0 includes MCP support and NATS replication.

Pre-Upgrade Checklist

  1. Backup your current setup:

    # Stop Litestream
    sudo systemctl stop litestream
    
    # Backup configuration
    cp /etc/litestream.yml /etc/litestream.yml.backup
    
    # Backup binary
    cp $(which litestream) /usr/local/bin/litestream.backup
    
  2. Review configuration changes (see Configuration Migration below)

  3. Test in staging environment before upgrading production

Installation

Download and install the new version:

# Download latest stable release (check https://github.com/benbjohnson/litestream/releases)
wget https://github.com/benbjohnson/litestream/releases/download/v0.3.13/litestream-v0.3.13-linux-amd64.tar.gz

# Extract and install
tar -xzf litestream-v0.3.13-linux-amd64.tar.gz
sudo mv litestream /usr/local/bin/
sudo chmod +x /usr/local/bin/litestream

# Verify installation
litestream version

Upgrading from v0.3.x to v0.5.0+

Key Changes

  1. Command Changes:

    • litestream wallitestream ltx (WAL command renamed to LTX)
    • New mcp-addr configuration option for Model Context Protocol support
    • NATS replica support with JetStream
  2. Configuration Changes:

    • Single replica field replaces replicas array (backward compatible)
    • New global configuration sections: levels, snapshot, exec
    • Extended replica configuration options

Migration Steps

  1. Update configuration format:
# OLD FORMAT (still supported, but only with a single replica)
dbs:
  - path: /var/lib/app.db
    replicas:
      - url: s3://my-bucket/app
        retention: 72h

# NEW FORMAT (recommended)
dbs:
  - path: /var/lib/app.db
    replica:
      url: s3://my-bucket/app
      retention: 72h
  1. Override default settings:
# Add MCP support (disabled by default)
mcp-addr: ":3001"

# Override global snapshot configuration (defaults: interval=24h, retention=24h)
snapshot:
  interval: 24h
  retention: 168h

# Add level-based retention (no default levels configured)
levels:
  - interval: 1h
    retention: 24h
  - interval: 24h
    retention: 168h
  1. Update command usage:
# OLD: Query WAL information
litestream wal /path/to/db.sqlite

# NEW: Query LTX information  
litestream ltx /path/to/db.sqlite
  1. Restart services:
# Restart Litestream with new configuration
sudo systemctl restart litestream

# Verify it's working
sudo systemctl status litestream
litestream databases

Configuration Migration

Single Replica vs Multiple Replicas

The new configuration format uses a single replica field instead of a replicas array:

# Multiple replicas (OLD - still supported)
dbs:
  - path: /var/lib/app.db
    replicas:
      - url: s3://primary-bucket/app
      - url: s3://secondary-bucket/app
      - type: file
        path: /local/backup

# Single replica (NEW - recommended)
dbs:
  - path: /var/lib/app.db
    replica:
      url: s3://primary-bucket/app
  - path: /var/lib/app.db  # Separate entry for each replica
    replica:
      url: s3://secondary-bucket/app
  - path: /var/lib/app.db
    replica:
      type: file
      path: /local/backup

Global Configuration Sections

New global sections provide better control:

# Global snapshot configuration
snapshot:
  interval: 24h
  retention: 168h

# Global level-based retention
levels:
  - interval: 5m
    retention: 1h
  - interval: 1h
    retention: 24h
  - interval: 24h
    retention: 168h

# Global exec hooks
exec:
  - cmd: ["/usr/local/bin/notify", "Litestream started"]

# Enable MCP server
mcp-addr: ":3001"

dbs:
  - path: /var/lib/app.db
    replica:
      url: s3://my-bucket/app

Replica Type Migration

Migrating from File to S3

  1. Prepare S3 bucket and credentials:

    # Create S3 bucket
    aws s3 mb s3://my-litestream-backups
    
    # Configure credentials
    aws configure
    
  2. Update configuration:

    dbs:
      - path: /var/lib/app.db
        replica:
          # OLD: File replica
          # type: file  
          # path: /backup/app
    
          # NEW: S3 replica
          url: s3://my-litestream-backups/app
          region: us-east-1
    
  3. Perform initial sync:

    # Stop current replication
    sudo systemctl stop litestream
    
    # Start with new configuration
    sudo systemctl start litestream
    
    # Verify replication
    litestream databases
    

Migrating from S3 to NATS

  1. Set up NATS server with JetStream:

    # Start NATS with JetStream enabled
    nats-server -js
    
  2. Update configuration:

    dbs:
      - path: /var/lib/app.db
        replica:
          # OLD: S3 replica
          # url: s3://my-bucket/app
    
          # NEW: NATS replica
          type: nats
          url: nats://localhost:4222/my-app-bucket
          # Add authentication if needed
          username: litestream
          password: ${NATS_PASSWORD}
    
  3. Create NATS bucket:

    # Create JetStream bucket
    nats stream create my-app-bucket \
      --subjects="my-app-bucket.>" \
      --storage=file \
      --retention=limits \
      --max-age=168h
    

Migrating Between Cloud Providers

S3 to Google Cloud Storage

dbs:
  - path: /var/lib/app.db
    replica:
      # OLD: AWS S3
      # url: s3://aws-bucket/app
      # region: us-east-1
      
      # NEW: Google Cloud Storage
      url: gs://gcs-bucket/app
      # Set up Application Default Credentials

S3 to Azure Blob Storage

dbs:
  - path: /var/lib/app.db
    replica:
      # OLD: AWS S3
      # url: s3://aws-bucket/app
      
      # NEW: Azure Blob Storage
      url: abs://storage-account/container/app
      account-name: ${AZURE_STORAGE_ACCOUNT}
      account-key: ${AZURE_STORAGE_KEY}

Data Migration

Copying Existing Backups

When changing replica types, you may want to preserve existing backups:

  1. Export current backups:

    # List available LTX files
    litestream ltx /var/lib/app.db
    
    # Restore latest to temporary file
    litestream restore -o /tmp/app-backup.db /var/lib/app.db
    
  2. Initialize new replica with existing data:

    # Stop replication
    sudo systemctl stop litestream
    
    # Update configuration to new replica type
    # Start replication (will sync current database)
    sudo systemctl start litestream
    

Zero-Downtime Migration

For production systems requiring zero downtime:

  1. Set up parallel replication:

    dbs:
      # Keep existing replica
      - path: /var/lib/app.db
        replica:
          url: s3://old-bucket/app
    
      # Add new replica type  
      - path: /var/lib/app.db
        replica:
          type: nats
          url: nats://localhost:4222/new-bucket
    
  2. Monitor both replicas:

    # Watch replication status
    watch -n 5 'litestream databases'
    
  3. Switch over when new replica is synchronized:

    dbs:
      # Remove old replica, keep new one
      - path: /var/lib/app.db
        replica:
          type: nats
          url: nats://localhost:4222/new-bucket
    

Command-Line Migration

Script Updates

Update any scripts using deprecated commands:

#!/bin/bash

# OLD commands
# litestream wal /var/lib/app.db
# litestream databases -replica s3

# NEW commands  
litestream ltx /var/lib/app.db
litestream databases

Cron Job Updates

Update cron jobs and systemd timers:

# OLD cron job
# 0 2 * * * litestream wal -path /var/lib/app.db

# NEW cron job
0 2 * * * litestream ltx /var/lib/app.db

Testing Migration

Validation Steps

After migration, validate your setup:

  1. Verify configuration:

    litestream databases
    
  2. Test restore functionality:

    litestream restore -o /tmp/test-restore.db /var/lib/app.db
    sqlite3 /tmp/test-restore.db "PRAGMA integrity_check;"
    
  3. Monitor replication:

    # Watch for replication activity
    tail -f /var/log/litestream.log
    

Rollback Plan

Always have a rollback plan:

  1. Keep old binary available:

    # Quick rollback if needed
    sudo cp /usr/local/bin/litestream.backup /usr/local/bin/litestream
    sudo cp /etc/litestream.yml.backup /etc/litestream.yml
    sudo systemctl restart litestream
    
  2. Restore from backup if needed:

    litestream restore -o /var/lib/app-recovered.db /var/lib/app.db
    

Common Migration Issues

Configuration Validation Errors

Error: yaml: unmarshal errors Solution: Validate YAML syntax and check for unsupported options

Missing Dependencies

Error: MCP server fails to start Solution: Ensure all required ports are available and firewall rules permit access

Permission Issues

Error: permission denied when accessing new replica locations
Solution: Verify credentials and access permissions for new replica type

Getting Help

Migration Support

Professional Services

For complex migrations or production environments, consider:

  • Reviewing migration plan with the community
  • Testing in staging environment first
  • Planning maintenance windows for critical systems

Next Steps

After migration: