How to Migrate from Amazon DynamoDB to PostgreSQL
Skippr is the easiest way to migrate from DynamoDB to PostgreSQL and get fully cleansed and modeled data in one run command.
Source: DynamoDB. Destination: PostgreSQL.
Sample config
yaml
skippr:
workspace: dynamodb_to_postgres
pipelines:
dynamodb_to_postgres:
data_source: data_sources.source
data_sink: data_sinks.warehouse
data_sources:
source:
Dynamodb:
table_name: my-table
region: us-east-1
data_sinks:
warehouse:
Postgres:
host: localhost
port: 5432
user: ${POSTGRES_USER}
password: ${POSTGRES_PASSWORD}
database: analytics
schema: publicEnvironment
bash
export POSTGRES_HOST="localhost"
export POSTGRES_USER="myuser"
export POSTGRES_PASSWORD="mypassword"
export AWS_ACCESS_KEY_ID="your-key"
export AWS_SECRET_ACCESS_KEY="your-secret"Source connector: dynamodb. Destination connector: postgres-warehouse.
See Quick start.
