Mafiree logo
  • About
  • Services
  • Blogs
  • Careers
  • Products
    • orbit logo Orbit
    • streamer logo Xstreami
  • Contact
Schedule a Call
Menu
  • About
  • Services
  • Blogs
  • Careers
  • Products
    • orbit logo Orbit
    • streamer logo Xstreami
  • Contact
  • Schedule a Call
Database
Database Managed Database Services
MySQL MySQL
MySQL Consulting
MySQL Migration Services
MySQL Optimization & Query Tuning
MySQL Database Administration
MySQL Backup & Recovery
MySQL Security & Maintenance
MySQL Cloud Services (AWS RDS, Aurora, Google Cloud SQL, Azure)
MySQL for Ecommerce
MySQL High Availability & Replication
MongoDB MongoDB
MongoDB Consulting
MongoDB Migration Services
MongoDB Optimization & Query Tuning
MongoDB Database Administration
MongoDB Backup & Recovery
MongoDB Security & Maintenance
MongoDB Cloud (Atlas)
MongoDB Solutions by Industry
MongoDB High Availability & Replication
PostgreSQL PostgreSQL
PostgreSQL Consulting
PostgreSQL Migration & Upgrades
Performance Tuning & Query Optimization
PostgreSQL Administration & Managed Services
High Availability, Clustering & Replication
PostgreSQL Backup, Recovery & Disaster Planning
PostgreSQL Security, Compliance & Auditing
PostgreSQL for Analytics & Data Warehousing
PostgreSQL on Cloud & Containers
PostgreSQL Extensions & Open-Source Integrations
PostgreSQL for Every Industry
SQL Server MSSQL
MSSQL Consulting
MSSQL Migration Services
MSSQL Optimization & Query Tuning Services
MSSQL Database Administration Services
MSSQL Backup & Recovery Services
MSSQL High Availability & Replication Services
MSSQL Security & Compliance Services
MSSQL Performance Monitoring & Health Checks
MSSQL Solutions by Industry
Aerospike Aerospike
Aerospike Consulting
Aerospike Migration Services
Aerospike Performance Optimization & Tuning
Aerospike Backup & Recovery
Aerospike High Availability
Aerospike Cloud & Hybrid Deployments
Aerospike for Real-Time Applications (AdTech, FinTech, Retail, IoT)
Clickhouse Clickhouse
ClickHouse Consulting
ClickHouse Migration Services
ClickHouse Optimization & Query Tuning
ClickHouse Database Administration
ClickHouse Backup & Recovery
ClickHouse Security & Maintenance
ClickHouse Cloud Services (ClickHouse Cloud, AWS, GCP, Azure)
ClickHouse Solutions by Industry
ClickHouse High Availability & Replication
TiDB TiDB
TiDB Consulting
TiDB Administration & Maintenance
TiDB Security and Privacy Maintenance
TiDB Performance & Query Optimization
TiDB Migration Services
TiDB Backup & Disaster Recovery
TiDB High Availability Solutions
TiDB Solutions by Industry
TiDB Cloud Services
ScyllaDB ScyllaDB
ScyllaDB Consulting
ScyllaDB Administration & Maintenance
ScyllaDB Security and Privacy Maintenance
ScyllaDB Performance & Query Optimization
ScyllaDB Migration Services
ScyllaDB Backup & Disaster Recovery
ScyllaDB High Availability Solutions
ScyllaDB Solutions by Industry
ScyllaDB Cloud Services
DevOps
DevOps DevOps Services
Version Control Version Control
Kubernetes Kubernetes
Infrastructure Infrastructure Management
Web Servers Web Servers
Networking
Networking Networking Services
Basic Basic
Advanced Advanced
MySQL MySQL
MongoDB MongoDB
PostgreSQL PostgreSQL
MSSQL MSSQL
Aerospike Aerospike
Clickhouse Clickhouse
TiDB TiDB
ScyllaDB ScyllaDB
Version Control Version Control
Kubernetes Kubernetes
Infrastructure Infrastructure Management
Web Servers Web Servers
Basic Basic
Advanced Advanced
MySQL Consulting
MySQL Migration Services
MySQL Optimization & Query Tuning
MySQL Database Administration
MySQL Backup & Recovery
MySQL Security & Maintenance
MySQL Cloud Services (AWS RDS, Aurora, Google Cloud SQL, Azure)
MySQL for Ecommerce
MySQL High Availability & Replication
MongoDB Consulting
MongoDB Migration Services
MongoDB Optimization & Query Tuning
MongoDB Database Administration
MongoDB Backup & Recovery
MongoDB Security & Maintenance
MongoDB Cloud (Atlas)
MongoDB Solutions by Industry
MongoDB High Availability & Replication
PostgreSQL Consulting
PostgreSQL Migration & Upgrades
Performance Tuning & Query Optimization
PostgreSQL Administration & Managed Services
High Availability, Clustering & Replication
PostgreSQL Backup, Recovery & Disaster Planning
PostgreSQL Security, Compliance & Auditing
PostgreSQL for Analytics & Data Warehousing
PostgreSQL on Cloud & Containers
PostgreSQL Extensions & Open-Source Integrations
PostgreSQL for Every Industry
MSSQL Consulting
MSSQL Migration Services
MSSQL Optimization & Query Tuning Services
MSSQL Database Administration Services
MSSQL Backup & Recovery Services
MSSQL High Availability & Replication Services
MSSQL Security & Compliance Services
MSSQL Performance Monitoring & Health Checks
MSSQL Solutions by Industry
Aerospike Consulting
Aerospike Migration Services
Aerospike Performance Optimization & Tuning
Aerospike Backup & Recovery
Aerospike High Availability
Aerospike Cloud & Hybrid Deployments
Aerospike for Real-Time Applications (AdTech, FinTech, Retail, IoT)
ClickHouse Consulting
ClickHouse Migration Services
ClickHouse Optimization & Query Tuning
ClickHouse Database Administration
ClickHouse Backup & Recovery
ClickHouse Security & Maintenance
ClickHouse Cloud Services (ClickHouse Cloud, AWS, GCP, Azure)
ClickHouse Solutions by Industry
ClickHouse High Availability & Replication
TiDB Consulting
TiDB Administration & Maintenance
TiDB Security and Privacy Maintenance
TiDB Performance & Query Optimization
TiDB Migration Services
TiDB Backup & Disaster Recovery
TiDB High Availability Solutions
TiDB Solutions by Industry
TiDB Cloud Services
ScyllaDB Consulting
ScyllaDB Administration & Maintenance
ScyllaDB Security and Privacy Maintenance
ScyllaDB Performance & Query Optimization
ScyllaDB Migration Services
ScyllaDB Backup & Disaster Recovery
ScyllaDB High Availability Solutions
ScyllaDB Solutions by Industry
ScyllaDB Cloud Services
  1. Home
  2. > Blogs
  3. > PostgreSQL
  4. > PostgreSQL Schema Changes pg_osc: Zero-Downtime Migrations for Production Systems

PostgreSQL Schema Changes pg_osc: Zero-Downtime Migrations for Production Systems

Altering large tables in PostgreSQL can cause locks, performance issues, and downtime in production environments. This blog explains how pg_osc (PostgreSQL Online Schema Change) enables safe schema modifications using a shadow table approach, allowing applications to continue operating during migrations. The article covers how pg_osc works, compares it with alternatives like pg_repack, explores real-world use cases, and provides practical steps for implementing online schema changes in production. It also highlights best practices used by Mafiree to perform reliable zero-downtime PostgreSQL schema migrations in high-traffic environments.

Jethish April 10, 2026

Subscribe for email updates

Summarize with AI: ChatGPT Google AI Perplexity Claude Grok

Managing PostgreSQL schema changes pg_osc in large-scale production databases is one of the most challenging tasks for database teams. A simple ALTER TABLE on a 100GB+ table can block writes, stall applications, and create costly downtime.

 

At Mafiree, we regularly support mission-critical PostgreSQL environments where even a few seconds of blocking can impact revenue, customer experience, and SLAs. Over the years, we’ve implemented safe, zero-downtime schema migration strategies using pg_osc for SaaS platforms, e-commerce systems, fintech workloads, and enterprise reporting databases.

 

This guide explains:

  • Why schema changes cause downtime
  • How pg_osc (PostgreSQL Online Schema Change) solves the problem
  • How it compares to alternatives like pg_repack and pgroll
  • Production best practices we apply at Mafiree

The Problem: Why PostgreSQL Schema Changes Cause Downtime

Understanding PostgreSQL Locking During Schema Changes

In PostgreSQL, most ALTER TABLE operations require an ACCESS EXCLUSIVE lock.

 

This lock:

  • Blocks reads and writes
  • Queues application queries
  • Can cascade into connection pile-ups
  • Impacts replication lag

In production systems we manage at Mafiree, we’ve seen minor schema changes trigger cascading slowdowns because of lock waits — especially in high-concurrency environments.

 

Real-World Cost of Downtime

For high-traffic SaaS and e-commerce platforms:

  • 5–10 minutes of blocking can mean lost revenue
  • Queue buildup may require restarts
  • Background workers may fail
  • Customer trust may be impacted

In one real client scenario handled by Mafiree, a 70GB table rewrite during business hours caused replication lag to spike significantly. After implementing pg_osc-based migration processes, similar changes were executed with no customer-visible impact

 

What is pg_osc? (Shadow Table Approach Explained)

pg_osc (PostgreSQL Online Schema Change) is an open-source tool that enables near zero-downtime schema modifications using a shadow table approach.

 

Instead of modifying the live table directly, it:

  1. Creates a shadow table with the new schema
  2. Copies data in batches
  3. Tracks changes via triggers
  4. Swaps tables with minimal locking

At Mafiree, pg_osc has become a standard component in our production change management framework for large PostgreSQL deployments.

 

How pg_osc Works: The Shadow Table Method

The migration flow:

  1. Create audit triggers on the original table
  2. Build shadow table with desired schema
  3. Copy existing rows
  4. Replay changes from audit log
  5. Acquire brief lock
  6. Swap tables
  7. Drop or retain old table

Only the final swap requires a short lock — typically milliseconds to seconds

 

Why Shadow Tables Enable Zero-Downtime Changes

Because:

  • Data copying happens without blocking writes
  • Changes are continuously synchronized
  • The final swap is metadata-level

This makes pg_osc ideal for large, active production tables — especially those managed under strict SLA environments like the ones Mafiree supports.

 

pg_osc vs Alternatives: pgroll vs pg_repack vs Native PostgreSQL

pg_osc vs pg_repack: Which One to Choose?

pg_repack is designed primarily for reclaiming space and rebuilding tables/indexes online.

Featurepg_oscpg_repack
Schema changesYesLimited
Shadow tableYesYes
Index handlingAutomaticRebuilt
Foreign keysManagedLimited
Custom copy SQLYesNo

At Mafiree, we typically use:

  • pg_repack for bloat cleanup
  • pg_osc for structural production schema changes

pg_osc vs pgroll: The Expand & Contract Approach

pgroll uses an expand-and-contract migration strategy.

Methodpg_oscpgroll
StrategyShadow table swapDual schema versioning
Application changes requiredNoOften yes
Backward compatibilityLimitedStrong
ComplexityModerateHigh

For enterprises requiring application-version compatibility across deployments, pgroll may be appropriate. For operational simplicity and controlled production changes, Mafiree commonly recommends pg_osc.

 

pg_osc vs Native PostgreSQL ALTER TABLE

Native ALTER TABLE in PostgreSQL:

  • May rewrite entire tables
  • Requires ACCESS EXCLUSIVE locks
  • Blocks application traffic

In high-availability environments, we rarely recommend native ALTER for large tables without an online strategy.

 

Step-by-Step: Implementing pg_osc in Production

Installation & Prerequisites

  • pg-online-schema-change binary
  • Required PostgreSQL privileges
  • Adequate disk space (shadow table creation)

At Mafiree, we also validate WAL volume and replication capacity before starting.

 

Basic Syntax & Commands

PGPASSWORD='******' bundle exec ./bin/pg-online-schema-change perform -a "ALTER TABLE customers ADD COLUMN phone_number VARCHAR(15);" -s public -d mafiree -h localhost -u pgosc -p 5432 -v

Performing Multiple ALTER statements

PGPASSWORD='******' bundle exec ./bin/pg-online-schema-change perform -a "ALTER TABLE customers ADD COLUMN phone_number VARCHAR(15); ALTER TABLE customers RENAME COLUMN contact_email TO email;" -s public -d mafiree -h localhost -u pgosc -p 5432 -v

Performing an ALTER statement with drop option which will drop the optional table [--drop]

PGPASSWORD='******' bundle exec ./bin/pg-online-schema-change perform -a "ALTER TABLE customers ADD COLUMN phone_number VARCHAR(15);" -s public -d mafiree -h localhost -u pgosc -p 5432 -v --drop

Handling Locks: --wait-time & --kill-backends

PGPASSWORD='******' bundle exec ./bin/pg-online-schema-change perform -a "ALTER TABLE orders ALTER COLUMN total_amount TYPE NUMERIC(12, 2);" -s public -d mafiree -h localhost -u pgosc -p 5432 -v --kill-backends --wait-time-for-lock=5

Used carefully in production environments with clear operational approval.

 

Backfilling Data During Migration

Using --copy-statement, we often perform:

  • Data transformation
  • Tenant-aware enrichment
  • Historical normalization
PGPASSWORD='******' bundle exec ./bin/pg-online-schema-change perform -a "ALTER TABLE categories ADD COLUMN "tenant_id" VARCHAR;" -s public -d mafiree -h localhost -u pgosc -p 5432 -v --copy-statement "/home/mafiree/pg-osc/pgosc.sql"

This flexibility is especially useful in multi-tenant SaaS systems.

 

Index & Foreign Key Handling

pg_osc:

  • Replicates indexes
  • Handles foreign keys
  • Supports NOT VALID constraints
  • Preserves referential integrity

Key Features, Limitations & Workarounds

What pg_osc Can Do Well

  • Add/drop columns
  • Modify column types
  • Rename columns
  • Backfill data
  • Maintain availability
  • Reduce operational risk

What pg_osc Cannot Do

  • Complex partition restructures
  • Massive schema redesigns across dozens of dependent tables
  • Cross-database migrations

Performance Considerations on Large Tables

On 100GB+ tables:

  • Disk usage temporarily doubles
  • WAL generation increases
  • Replication lag must be monitored
  • I/O spikes possible

We always simulate migration in staging before production execution.

 

Production Best Practices & Safety Measures

Testing Schema Changes Before Production

  • Rehearse on staging
  • Benchmark execution
  • Validate constraints
  • Confirm application compatibility

Backup & Rollback Strategy

  • Take logical or physical backups
  • Avoid --drop initially
  • Validate row counts
  • Keep rollback window

Monitoring During Schema Changes

Monitor:

  • pg_stat_activity
  • Replication lag
  • WAL volume
  • I/O throughput

At Mafiree, we use structured runbooks to monitor migrations in real time.

 

Coordinating with Application Deployments

  • Avoid peak traffic
  • Ensure backward compatibility
  • Inform DevOps and product teams
  • Validate API and ORM mappings

Real-World Case Studies & Results

Across multiple enterprise PostgreSQL deployments, Mafiree has:

  • Migrated 200GB+ production tables
  • Reduced schema-change downtime risk to near zero
  • Improved operational confidence during large releases
  • Standardized safe migration pipelines

PostgreSQL Schema Change Without Downtime

 

When to Choose Mafiree's PostgreSQL Consulting

Choose Mafiree when:

  • You manage 50GB+ production tables
  • Your system operates 24/7
  • Downtime is unacceptable
  • You need expert-guided schema migration planning
  • You want guaranteed safe execution

We specialize in PostgreSQL schema changes pg_osc, replication strategy, performance tuning, and high-availability architecture.

 

Contact: sales@mafiree.com
 

Take Away

  1. Native PostgreSQL schema changes can cause downtime
  2. pg_osc enables near zero-downtime migrations
  3. Proper planning and monitoring are critical
  4. Enterprise-grade execution requires experience

With the right strategy — and the right expertise — schema changes don’t have to mean downtime.

 

FAQ

No, pg_osc currently does not support partitioned tables directly in PostgreSQL.
pg_osc creates a shadow table during the migration process, so additional disk space is required temporarily.
pg_osc is designed to perform schema migrations with minimal or near zero downtime.
Yes, pg_osc can run while the table is actively being used by applications.
If pg_osc fails during migration, the original table remains unchanged and fully intact.
pg_osc automatically recreates indexes and foreign key constraints on the shadow table during the migration process.
pg_repack and pg_osc serve different purposes in PostgreSQL. pg_repack is mainly used to remove table and index bloat and reorganize storage without long blocking operations. It focuses on maintenance rather than schema changes. pg_osc, on the other hand, is designed specifically for online schema modifications, such as adding columns, renaming columns, or changing column data types.
Yes, pg_osc is widely considered safe for production use when executed with proper planning. Mafiree typically runs schema migrations through staging tests, capacity checks, and monitoring to ensure a safe and smooth deployment in production environments.

Author Bio

Jethish

Jethish is a PostgreSQL DBA at Mafiree with expertise in building scalable, reliable, and high-performance database infrastructures. He focuses on PostgreSQL architecture, replication strategies, performance tuning, and high availability for mission-critical systems. Through his technical writing, he shares clear, practical insights on database internals, replication choices, load balancing, and cross-database integrations that help engineers and DBAs tackle real-world data challenges.

Leave a Comment

Related Blogs

PostgreSQL Replication Setup: Step-by-Step Guide for Streaming Replication and Failover

Understand how PostgreSQL streaming replication works, deploy a primary server and replica node, implement failover for high availability, and optimize your replication setup with Mafiree's expert DBA services. Ensuring high availability and data protection in PostgreSQL environments is critical for modern applications. One of the most effective ways to achieve this is through PostgreSQL replication setup, particularly using streaming replication with failover capabilities. This guide walks you through configuring a robust PostgreSQL replication system, covering everything from basic setup to handling failover scenarios.

  21 views
REPACK in PostgreSQL 19: Finally, Online Table Bloat Removal in Core

PostgreSQL 19 introduces REPACK, a native command that unifies the functionality of VACUUM FULL and CLUSTER while adding support for CONCURRENTLY to minimize downtime. Unlike traditional table rewrites that require long ACCESS EXCLUSIVE locks, REPACK can reclaim table bloat online by copying live data, rebuilding indexes, and applying concurrent changes before a final metadata swap. This article explores how REPACK works internally, compares it with VACUUM FULL and pg_repack, demonstrates a hands-on performance test, explains the new pg_stat_progress_repack monitoring view, and covers current limitations and best practices for production environments.

  13198 views
ProxySQL vs HAProxy for MySQL High Availability: Complete Comparison 2026

ProxySQL excels in MySQL-specific query routing, read/write splitting, and performance tuning. HAProxy offers robust load balancing across multiple protocols and is ideal for general-purpose proxying. Choose ProxySQL if your focus is on MySQL optimization; select HAProxy for broader application-level load balancing. Both tools support failover mechanisms but with different levels of database-specific integration.

  339 views
Tracking PostgreSQL Operations in Real Time: A Deep Dive into PostgreSQL Progress Reporting

This blog explores PostgreSQL’s progress reporting system views that provide real-time visibility into long-running operations like VACUUM, ANALYZE, CREATE INDEX, COPY, and base backups. It explains how DBAs can monitor execution phases, estimate completion, detect bottlenecks, and improve operational efficiency using these built-in views. Real-world examples and use cases demonstrate how progress tracking enhances performance tuning, automation, and maintenance planning.

  13141 views
Key Differences Between MySQL and PostgreSQL: Architecture, Performance & Use Cases

Understanding the difference between MySQL and PostgreSQL is critical when choosing a database for production workloads. While both are powerful open-source relational databases, they are built with fundamentally different philosophies. This comprehensive guide compares MySQL vs PostgreSQL across architecture, performance behavior under concurrent loads, replication strategies, and real-world use cases — backed by Mafiree's 17+ years of hands-on production experience across India, APAC, and the Middle East.

  1253 views
AWS Database Storage Optimization: How We Reclaimed 3.6 TB and Cut Costs in Half

A client came to us with a classic AWS database storage optimization problem: 15.2 TB allocated, less than a third actually in use — and a bill that kept growing regardless. Within one week, Mafiree had reclaimed 3.6 TB, validated a safe path to cut allocation nearly in half, and executed a zero-downtime migration. Here's the full story.

  917 views
PostgreSQL Connection Pooling: PgBouncer vs Odyssey – Performance & Configuration

PostgreSQL uses a process-per-connection model, which can limit scalability in high-traffic environments. Connection poolers help manage this challenge by reusing database connections efficiently. This blog compares PgBouncer and Odyssey, two popular PostgreSQL connection poolers, highlighting their architecture, performance characteristics, configuration differences, and ideal use cases. It helps organizations choose the right pooling solution based on workload scale, complexity, and operational requirements.

  7470 views
8 Enhancing Features in PostgreSQL 18

PostgreSQL 18: Efficiency, security, and reliability, all in one upgrade

  13124 views
Optimizing PostgreSQL Queries with Functional Indexes – A Real-World Case Study

Cutting Query Time from 10 Minutes to Under 1 Second – How Functional Indexes Helped Us Optimize Aurora PostgreSQL and Stabilize CPU Performance.

  4433 views
Mastering PostgreSQL Meta-Commands: The Ultimate psql Cheat Sheet

Why memorize SQL queries when \d, \l, and \dx do the heavy lifting? Learn the power of PostgreSQL’s psql meta-commands today.

  5072 views
Choosing the Right Replication Type in PostgreSQL

Choosing the Right Replication Type in PostgreSQL – Understand the key differences between Streaming and Logical Replication, their best use cases, and how to implement them effectively for high availability, scalability, and disaster recovery.

  3757 views
Connecting MySQL to PostgreSQL Using mysql_fdw for Cross-DB Queries

This illustration represents the power of mysql_fdw in enabling smooth data exchange and real-time connectivity between MySQL and PostgreSQL. A perfect solution for cross-database operations and data integration!

  4604 views
Incremental Backup In PostgreSQL 17

Revolutionize your database management with PostgreSQL 17! Experience faster, smarter, and more efficient backups with the power of incremental backup. Reduce storage, save time, and ensure seamless recovery – the future of PostgreSQL backup starts here!

  1274 views
A Practical Guide to PostgreSQL Load Balancing

Load balancing in PostgreSQL distributes client connections across multiple database servers to improve performance, scalability, and availability. This guide compares Pgpool-II, ProxySQL, and HAProxy, covering their key features, advantages, limitations, and suitability for PostgreSQL workloads.

  13131 views
7 Enhancing Features In PostgreSQL 17

PostgreSQL 17 is here to revolutionize your database experience! Packed with enhanced performance, cutting-edge features, and improved scalability, this release is designed to meet the evolving demands of modern applications. Whether you're handling complex queries or scaling to new heights, PostgreSQL 17 brings unparalleled reliability and efficiency to your data management solutions.

  3641 views
6 Interesting Features in PostgreSQL 16

Recently Postgres 16 has launched and I have picked the most interesting feature in this blog.

  5572 views
PostgreSQL Autovacuum Explained in Detail

This blog explains how PostgreSQL Autovacuum works — covering the launcher/worker process model, the exact formula that decides when a table becomes eligible, and the key differences between VACUUM, Autovacuum, and VACUUM FULL. It includes an interactive eligibility calculator, tunable parameters, monitoring queries, and best practices to help DBAs prevent table bloat and transaction ID wraparound.

  1753 views

Subscribe for email updates

Get in touch with us

Highlights

More than 6000 Servers Monitored

Happy Clients

Certified DBAs

24 x 7 x 365 Support

PCI

Database Services

MySQL MongoDB PostgreSQL SQL Server Aerospike Clickhouse TiDB ScyllaDB

Quick Links

Careers Blog Contact Privacy Policy Disclaimer Policy

Contacts

Linkedin Mafiree Facebook Mafiree Twitter Mafiree

Nagercoil Office

Miru IT Park, Vallankumaranvillai,

Nagercoil, Tamilnadu - 629 002.

Bangalore Office

Unit 303, Vanguard Rise,

5th Main, Konena Agrahara,

Old Airport Road, Bangalore - 560 017.

Call: +91 6383016411

Email: sales@mafiree.com


Copyright © - All Rights Reserved - Mafiree