Skip to content

How to Migrate from MotherDuck to Snowflake

Skippr is the easiest way to migrate from MotherDuck to Snowflake and get fully cleansed and modeled data in one run command.

Source: MotherDuck. Destination: Snowflake.

Sample config

yaml
skippr:
  workspace: motherduck_to_snowflake
pipelines:
  motherduck_to_snowflake:
    data_source: data_sources.source
    data_sink: data_sinks.warehouse
data_sources:
  source:
    Motherduck:
      motherduck_token: "${MOTHERDUCK_TOKEN}"
      database: my_db
data_sinks:
  warehouse:
    Snowflake:
      database: ANALYTICS
      schema: RAW
      warehouse: COMPUTE_WH
      role: ACCOUNTADMIN

Environment

bash
export SNOWFLAKE_ACCOUNT="MYORG-MYACCOUNT"
export SNOWFLAKE_USER="myuser"
export SNOWFLAKE_PRIVATE_KEY_PATH="/path/to/snowflake_key.p8"
export MOTHERDUCK_TOKEN="eyJ..."

Source connector: motherduck-source. Destination connector: snowflake.

See Quick start.