What problem does it solve? Moving large datasets from legacy databases like PostgreSQL, MySQL, Oracle, or MSSQL into CockroachDB involves complex tooling choices, storage backend configuration, and failure recovery. This Skill guides you through running molt fetch correctly so bulk migrations complete reliably. ## Core Features & Use Cases - Storage Backend Configuration: Choose between S3/GCS/Azure bucket paths, direct copy, or local paths depending on your network topology and downtime tolerance. - Import Mode Selection: Use IMPORT INTO for maximum throughput with offline tables, or COPY FROM with --use-copy for zero-downtime online loads. - Failure Recovery & Resumption: Resume interrupted migrations using fetch IDs and continuation tokens instead of restarting from scratch. - Use Case: You need to migrate a production PostgreSQL database to CockroachDB without downtime. Use direct copy with --use-copy, filter to specific tables, then run molt verify afterward to confirm data integrity. ## Quick Start Ask the assistant to migrate the customers and orders tables from your PostgreSQL database to CockroachDB using molt fetch with an S3 bucket as intermediate storage.