Starts from the snapshot
No agent to install, no replication, no CDC. The snapshot AWS already takes is the source — including for databases in another account.
Data Pump starts from the snapshot AWS already takes every day. It exports, organizes and catalogs it — and what comes out is queryable in Athena. Nothing connects to the live database.
A snapshot is a copy frozen in time. Everything comes from there — no query ever touches production, not even to find out which tables exist.
exported/{cluster}/{export}/pagila/public.payment/catalog/{cluster}/pagila.pagamentos/catalog/{cluster}/pagila.pagamentos/ano=2024/mes=03/The pipeline fires on its own when a snapshot is ready. From notification to catalog, nobody intervenes.
No agent to install, no replication, no CDC. The snapshot AWS already takes is the source — including for databases in another account.
Cross-account, the export runs in the source account and writes straight to your bucket. Raw data never travels twice.
Pick the databases, filter tables, and rename anything with a cryptic name. `tb_pgto` becomes `payments` in the lake.
A table repartitioned by year and month lets Athena read only the slice your query needs — not the whole table.
Long-term history is not wiped on each run. Purge old rows from Postgres and they stay queryable here.
Every run records its steps, which tables were touched, and the version of each component. When it fails, the error is visible.
Every way of getting data out of a live Postgres has a price. Starting from the snapshot has the smallest one.
All of Data Pump runs in the customer AWS account — the console included. Your data never passes through us.
Mark which clusters feed the lake and which databases get ingested. The table list comes from the export itself.
Set how each table is repartitioned, and what happens when a row changes in the database after it was already ingested.
Follow each run step by step, see which tables were updated and what failed, with the log for that step.
Every installation starts with a conversation: we settle the account, region, VPC and source databases, then build a package for that setup. There is no generic installer — tell us your case and we will reply with what fits.