Postgres and Open Source Experts

Anytime. Anywhere. Since 1997.

Blog

Lessons from the Road: Gratitude

I was on the phone with one of my most active clients at Command Prompt when I had to interrupt the call because my dogs somehow opened the bus door and went running after horses. The client and Command Prompt have a good relationship so I wasn’t too worried about the fallout. However, what the client said when I returned to the call and explained the interruption was surprising.

“I …

Part 5: Temp Tables and XID Wraparound in Single-DB Clusters

Even in single-database setups, temp tables can quietly lead to major problems. In this post, we break down how long-lived temp tables contribute to XID wraparound risk, why PostgreSQL shuts down to protect against it, and what proactive steps you can take to avoid unexpected downtime.

Lessons from the Road: Know your footprint

What is the weight of your footprint?

What is the cost of your footprint?

One of the most surprising things I experience when I go from a house to a school bus is the sheer amount of waste we as humans produce. From packaging to paper towels to food scraps to everything else I won’t mention here, it’s a lot. When I am stationary at home, my trash hides …

Part 4: Debugging Limitations in RDS and Cloud Environments

Part 4 of our PostgreSQL Autovacuum Failure Series explores how session-level temp tables in RDS can silently stall autovacuum—and how we resolved it. Learn why monitoring and visibility are critical in managed cloud environments.

PgManage 1.3 Release: Powerful New Features and Enhanced Usability

PgManage 1.3 is here with major updates including a redesigned dashboard UI, JSON export, code folding, PostgreSQL 17 support, and more. This release focuses on usability, performance, and cross-database compatibility, enhancing your workflow whether you're using PostgreSQL, MariaDB, MySQL, or others.

Part 3: Why Autovacuum Stops — PostgreSQL Internal Mechanics Explained

Series Summary: This is Part 3 of a multi-part series on PostgreSQL autovacuum failures.

In Part 2, we reproduced the autovacuum failure issue — now let’s understand why it happens. This post dives into PostgreSQL internals, explaining how autovacuum allocates its resources and why certain databases get “stuck” in maintenance limbo.

Why Does This Occur?

This behavior stems from how the autovacuum daemon allocates its resources. Autovacuum identifies the …

Lessons from the Road: The weight of consumerism

How many things do you own? How many things are you responsible for?

Every thing we have comes with a cost beyond the purchase price. From maintenance to cleaning to relocating to using: we are required to do much more with our things than we usually think about. Let’s consider a lawn mower: it has the original purchase price, the sales tax if applicable, the time to transport, the space …

Part 2: Reproducing and Diagnosing Autovacuum Failures

Series Summary: This is Part 2 of a multi-part series on PostgreSQL autovacuum failures.

In Part 1, we introduced the scenario where autovacuum mysteriously halts in a multi-database PostgreSQL cluster. Now, we’ll reproduce the issue using a lightweight test setup. This walkthrough will help you see the failure in action and understand how quickly your system can degrade.

How to Reproduce the Problem (and Watch PostgreSQL Go Sideways)

Let’s …

Lessons from the Road: Know your values

Ever wonder why we so often don’t follow through on the goals we set for ourselves? Or why it is so easy to slide back into our old habits?

One part is neurological: our brain is full of established neural pathways that get larger the longer we reinforce the same behavior.

The other part is not having clarity on our values.

We can have all of the “right” motivation, including …

Part 1: When Autovacuum Silently Fails Across Databases

This blog series examines PostgreSQL autovacuum failures, focusing on temp tables and multi-database edge cases that cause bloat, slowdowns, or XID wraparound risks in complex environments.