Skene
Product
Pricing
Docs
Blog
Events
About
Log InStart free
ProductPricingDocsBlogEventsAbout
Log InStart free
Skene subpage background texture
Resources / Series

Episode 2: Getting started with Pipelines

Supabase Pipelines is managed change data capture: Postgres logical replication, run for you. Here is the whole path from empty dataset to a table sitting at Live.

Pipelines14 August 20263 min

Episodes

  • 0. Start here
  • 1. The stack
  • 2. Getting started with Pipelines
  • 3. What to publish
  • 4. Modeling in BigQuery
  • 5. Activation
  • 6. Account health
  • 7. Expansion signals
  • 8. Schema changes, and what breaks
All episodes
Opening frame of Episode 2: Getting started with PipelinesPlay the episode

Opens on Screen Studio

Open in a new tab

What is in this episode

  • ·Writing the publication in SQL, and why that is a feature
  • ·Enabling Pipelines and wiring the BigQuery destination end to end
  • ·The dataset ID field that trips everyone on their first try
  • ·Who gets the bill: Supabase runs the pipeline, Google bills the warehouse
  • ·The region field you set once and can never change
  • ·Initial sync, and how a busy table can lose its replication slot mid-copy

Two things have to be true

Pipelines is managed change data capture: Postgres logical replication, run for you, using the open-source Supabase ETL engine. It is in private alpha as of this writing, and BigQuery is the destination that exists today.

Before anything moves you need a publication (what to replicate) and a destination (where it goes).

Create the publication

The publication is SQL, not a dashboard toggle. You write it, which is the first good sign: the list of what leaves your database is a thing you author on purpose.

create publication analytics_pub
for table workspaces, repositories, checks;

That tracks inserts, updates, deletes, and truncates on those three tables. You can also publish a whole schema or every table in the database. Do not. Episode 3 is about why.

Once it exists it shows up under Database, then Publications, so you can see what you committed to.

Point it at BigQuery

On the Google side you need three things: a project, a dataset, and a service account key with the BigQuery Data Editor role. In Supabase, go to Database, then Replication, click Add destination, choose BigQuery, and enable Pipelines.

Then fill in the destination: a name, the publication you just created, the project ID, the dataset ID, and the service account JSON.

The one that catches people. The GCP console shows your dataset as project-id.dataset-id. Supabase wants only the part after the dot.

Billing and region, plainly

Supabase runs the pipeline. Google runs BigQuery, and BigQuery is billed to your Google account for storage and for every byte a query scans. Nobody's free tier absorbs a wide select * against a replicated table at nine in the morning. Budget for the warehouse separately from the database.

A BigQuery dataset's location is set when you create it and cannot be changed afterwards. Our Supabase project is in Frankfurt, so the dataset is in Frankfurt (europe-west3). Same continent is not the same as same region, the difference shows up as egress on the Google bill, and if you have made a data-residency promise to a customer, this is the field that keeps it.

Then it runs

Click Create and start. Pipelines copies each table once (the initial sync), then switches that table to continuous streaming. Tables move through Copying and then sit at Live.

The initial sync is the part worth watching. A large, busy table can still be copying while writes pile up behind it, and if the copy falls far enough behind, its temporary replication slot is lost and the table starts over. If you have a big table, run the first copy during a quiet window. It is a one-time cost, and it is much cheaper than paying it twice.

6 episodes to go

Get the next episode when it lands

One email per episode, nothing else. Unsubscribe in one click.

Your address goes on this list and nowhere else.

Previous: The stackNext: What to publish (not out yet)
Skene

Product

How it worksFeaturesSupabaseArchitectureIntegrationsSecurityPricing

Resources

DocumentationGlossaryPlaybooksBlog

Company

AboutOpen sourceContactPrivacyTerms
© 2026 Skene. All rights reserved.
Privacy PolicyTerms of Service
Skene