PG Down Under 2026 Program

Unscheduled events
Caleb Schoepp Fair & Square: Building Bulletproof Multi-Tenant Job Queues on Postgres + Kubernetes

presented by Caleb Schoepp

When you run jobs on behalf of thousands of tenants it’s only a matter of time before one noisy neighbor floods the system, starves everyone else, and brings your queue to its knees. This talk is about building a bulletproof multi-tenant job queue using tools you already have.

We'll start with the database. Postgres is a perfectly good job queue if you know the tricks: SELECT ... FOR UPDATE ...

more

Development
Toby Hede Searchable Encryption with Postgres Types

presented by Toby Hede

Encrypt Query Language (EQL) brings searchable encryption to PostgreSQL as ordinary column types. Encrypted values stay encrypted in the database, yet still support equality, ordering, and range queries backed by real indexes — with no decryption. This talk shows how encrypted types, index terms, and functional indexes fit together, and how a single source of truth keeps their query behaviour c...

more

Development
Eugene Bobkov Achieving High Availability for PostgreSQL with Patroni, etcd and Barman
Achieving High Availability for PostgreSQL with Patroni, etcd and Barman

presented by Eugene Bobkov

*The Challenge *

High availability in PostgreSQL environments is often assumed to be solved by managed cloud services. In practice, many default implementations rely on DNS-based failover mechanisms that can take up to five minutes to reroute application traffic. They do not guarantee zero data loss across regions, and they offer limited control over leader election and replication behavio...

more

Ops and Administration
Venkata Ravi Kumar Yenugula Rajni Baliyan Migrating from Oracle Database to PostgreSQL
Leveraging Ora2Pg for Efficient, Cost-Effective Database Transitions

presented by Venkata Ravi Kumar Yenugula and Rajni Baliyan

This session presents an end-to-end blueprint for migrating from Oracle to PostgreSQL using Ora2Pg, the free Perl-based migration toolkit. Beginning with the business case for migration, we examine how Ora2Pg automates schema export, data movement via the COPY protocol, PL/SQL-to-PL/pgSQL translation, and assessment reporting that grades migration complexity from A to D. Attendees will walk thr...

more

Ops and Administration
Craig Ringer An OpenTelemetry API for PostgreSQL and its extensions
Bringing distributed tracing to the whole of PostgreSQL using a pluggable interface that enables any extension to emit traces

presented by Craig Ringer

This talk presents otel_api, a generic OpenTelemetry distributed tracing and metrics API usable by all extensions. It explains why this API is needed - and how extension and application authors can benefit from it. I demonstrate working examples of useful tracing - including synchronous replication timing and tracing through foreign data wrapper (FDW) calls. Because the API is available as ...

more

Development
James Blackwood-Sewell Fearless Extension Development with Rust and PGRX

presented by James Blackwood-Sewell

I’ve been working with Postgres since 2010, and over the years there have been many times when I’ve hit functionality or performance barriers and wanted to extend PostgreSQL to do new things.

This presented a problem for me: I knew I needed to use C, but as someone who didn’t have years of professional experience writing code for production this felt error-prone and daunting.

Enter PGRX, ...

more

Development
Diksha Sharma Beyond Alerts: Using PostgreSQL for Operational Log Analysis
Combining SQL, Full-Text Search, and pgvector for Deeper Investigation

presented by Diksha Sharma

Monitoring tools are effective at detecting when a server or PostgreSQL service is unhealthy, but they do not always explain why an incident occurred. Engineers may still need to search through large log files, compare timestamps, and connect related events across multiple sources before the cause becomes clear.

This session explores how PostgreSQL can be used as an investigation platform fo...

more

Ops and Administration
Joe Conway PostgreSQL: An Unexpected Journey
Keynote

presented by Joe Conway

I have been participating and contributing to the PostgreSQL community for over 26 years, and been interested in data and databases much longer than that. The journey from starting University to the present day has been filled with twists and turns that I never could have guessed. I will walk you through that journey and the lessons learned along the way in hopes that it will illustrate that li...

more

Essentials
Sameer Kumar Roneel Kumar Postgres at Scale: Lessons from Running Multi-Terabyte Clusters

presented by Sameer Kumar and Roneel Kumar

PostgreSQL has matured into one of the most trusted databases for mission-critical workloads, but scaling it to tens or even hundreds of terabytes is a different game altogether. At this scale, the challenges shift from simple tuning to deep architectural decisions: vacuum pressure, index bloat, replication lag, and the limits of storage and I/O subsystems all start to matter.

In this talk...

more

Essentials
Alena Rybakina When the Optimizer Guesses Wrong: A Reproducibility Lens on Cardinality Estimation

presented by Alena Rybakina

For decades, the query optimizer's hardest problem has not been searching for a plan - it has been predicting how many rows each operator will produce. Cardinality estimation errors, and underestimation especially, compound multiplicatively across joins: estimate one row against a reality of a million, and the optimizer commits to a nested-loop plan that runs orders of magnitude too slow. This ...

more

Development
Ravi Kiran Venkata Bhaskarabhatta Postgres for AI: Agentic PostgreSQL Lifecycle Management
From Provisioning to Optimisation in Natural Language

presented by Ravi Kiran Venkata Bhaskarabhatta

PostgreSQL has cemented itself as the database of the AI era. With 55.6% developer adoption, major AI platforms scaling to hundreds of millions of users on PostgreSQL, and recent conference keynotes framing PostgreSQL as the foundation for agentic AI workloads, the conversation has shifted from whether PostgreSQL can handle AI-scale demands to how AI can transform the way we manage PostgreSQL i...

more

Ops and Administration
Manan Gupta Making pg_regress the Bar: Getting a Connection Pooler to 100% on PostgreSQL's Own Test Suite

presented by Manan Gupta

A connection pooler is a lie you tell your application. The client thinks it has a PostgreSQL backend all to itself; in reality it is being multiplexed onto a shared pool. Every Postgres behaviour that quietly depends on which backend you are on is a chance for that lie to leak: GUCs, prepared statements, temp tables, advisory locks, LISTEN/NOTIFY, query cancellation, COPY, and the exte...

more

Development
Andrei Lepikhov Teaching PostgreSQL to scan temporary tables in parallel
Why Your Temp Table Kills Parallelism and How We Fixed It

presented by Andrei Lepikhov

Ever since PostgreSQL gained parallel query in 9.6, it has unconditionally refused to parallelise any part of a plan that touches a temporary table. The reason is structural: temporary-table pages live in the leader's local buffers, which parallel workers cannot see, so the planner simply marks such scans parallel-restricted.

As parallel execution has matured — partial aggregation, parallel ...

more

Development
Avinash Vallarapu PostgreSQL Features That Buy You a Fast Performance Win
Free, already-in-the-database features you never switched on, ranked by return on effort and measured every time

presented by Avinash Vallarapu

There is a category of PostgreSQL performance work that costs nothing but attention - features already in the database, already free, that most clusters never switch on or never tune. This is not about buying a bigger instance or re-architecting anything. It is about the parameters you usually miss to tune, index-only scan you are missing because your index does not cover the query, the extende...

more

Ops and Administration
Peter Smith Ajin Cherian New Publication Syntax and Sequence Synchronization in PostgreSQL 19 and Beyond
.

presented by Peter Smith and Ajin Cherian

This talk will be co-presented by Peter Smith and Ajin Cherian.

PostgreSQL 19 brings significant enhancements to logical replication, giving administrators far greater control over what gets replicated and how. In this talk, two Fujitsu contributors who worked directly on these features cover complementary aspects of the same story.

Peter Smith opens with the new publication syntax. Post...

more

Essentials