Sammlung von Newsfeeds

Jimmy Angelakos: pg_statviz 0.9 released with new features

Neues vom PostgreSQL Planet - 12. Januar 2026 - 21:30

Happy New Year! I'm excited to announce release 0.9 of pg_statviz, the minimalist extension and utility pair for time series analysis and visualization of PostgreSQL internal statistics.

This is a significant feature release that expands the scope of analysis to include several new modules and a visualization update:

Esther Minano: Optimizing data throughput for Postgres snapshots with batch size auto-tuning

Neues vom PostgreSQL Planet - 12. Januar 2026 - 15:00
Why static batch size configuration breaks down in real world networks and how automatic batch size tuning improves snapshot throughput.

Floor Drees: Updating CloudNativePG's documentation

Neues vom PostgreSQL Planet - 12. Januar 2026 - 1:00
Meet the mentee: Anushka Saxena worked with the project maintainers on transforming the documentation for CloudNativePG, as part of the LFX mentorship program.

Virender Singla: Idle Session Triggers a Transaction Wraparound?

Neues vom PostgreSQL Planet - 10. Januar 2026 - 14:51

At first glance, the idea that an idle session could lead to a transaction wraparound might seem counterintuitive. Most PostgreSQL users are familiar with how long-running queries or open transactions can cause table bloat and wraparound risks by pinning the xmin horizon, which prevents autovacuum from reclaiming dead tuples and Transaction IDs.

Ian Barwick: PgPedia Week, 2025-12-21

Neues vom PostgreSQL Planet - 9. Januar 2026 - 8:03
PostgreSQL 19 changes this week cumulative statistics support for reading/writing auxiliary data from/to disk added pg_createsubscriber support for handling existing publications added pg_sync_replication_slots()  retry logic added PostgreSQL 18 articles PostgreSQL 18 Asynchronous Disk I/O - Deep Dive Into Implementation (2025-12-15) - Josef Machytka / Credativ

more...

Zhang Chen: How to Turn PostgreSQL Unconventional Recovery into an Elegant Art

Neues vom PostgreSQL Planet - 9. Januar 2026 - 1:00
When the database won't start and there's no backup available, most teams assume the game is over. But that's not true—the data is still on disk, it just lost the ability to speak. PostgreSQL data files remain transparent and readable, but here's the problem - without the data dictionary, you cannot understand what those bytes actually mean.

Zhang Chen: Not a Backup Replacement: What PostgreSQL Instant Recovery Actually Solves

Neues vom PostgreSQL Planet - 9. Januar 2026 - 1:00
When people first hear "instant recovery," they often assume it is a replacement for backup—or worse, a risky shortcut only experts should attempt. But the truth is exactly the opposite. Instant recovery does not challenge any design boundary of PostgreSQL.

Ian Barwick: PgPedia Week, 2025-12-14

Neues vom PostgreSQL Planet - 7. Januar 2026 - 23:10
PostgreSQL 19 changes this week ALTER TABLE ALTER TABLE ... SPLIT PARTITION ... syntax added ALTER TABLE ... MERGE PARTITIONS ... syntax added pg_stat_progress_analyze column started_by added pg_stat_progress_vacuum columns mode and started_by added vacuumdb option --dry-run added PostgreSQL 18 articles Postgres 18 New Default for Data Checksums and How to Deal with Upgrades (2025-12-11) - Greg Sabino Mullane / Crunchy Data

more...

MAROJU PAVAN CHARY: Summary of PostgreSQL in the year 2025

Neues vom PostgreSQL Planet - 7. Januar 2026 - 20:26
As we wrap up 2025 and prepare for another exciting year of 2026, HexaCluster is back again with our annual Summary of PostgreSQL in 2025, continuing the tradition we set in 2024.

Andrei Lepikhov: Custom Properties for PostgreSQL Database Objects Without Core Patches

Neues vom PostgreSQL Planet - 7. Januar 2026 - 7:20

Working in development, there is a common challenge: how to attach custom metadata to database objects without modifying Postgres's core code. In this article, I briefly demonstrate a practical solution using Postgres's SECURITY LABELS mechanism to implement custom properties that are transactional, properly linked to database objects, and work with standard Postgres operations.

Hubert 'depesz' Lubaczewski: Quick and dirty loading of CSV files

Neues vom PostgreSQL Planet - 7. Januar 2026 - 1:10
Back in September 2025, David Fetter asked on IRC, about a tool to quickly load CSV to database. One that would require minimal configuration, will try to figure out as much as possible on its own. I thought that it would be great idea. Plus, I'm trying to learn more JavaScript / Node, so figured … Continue reading "Quick and dirty loading of CSV files"

Andreas Scherbaum: PostgreSQL Meetup in Frankfurt December 2025

Neues vom PostgreSQL Planet - 6. Januar 2026 - 23:00
On December 10th, 2025, the PostgreSQL December Meetup in Frankfurt (Main) took place. We had two speakers, and a nice dinner. This Meetup was organized around the IT-Tage, and the Meetup organizers had booked a reeting toom in the Scandic Frankfurt Museumsufer. About 15 minutes walking from the conference, and unfortunately it was raining that evening. Meeting room Dirk Aumueller: Running PostgreSQL with Podman, Quadlet & Systemd Dirk spoke about how to run PostgreSQL inside a Podman Quadlet which is managed by systemd.

Hubert 'depesz' Lubaczewski: Small improvement for pretty-printing in paste.depesz.com

Neues vom PostgreSQL Planet - 6. Januar 2026 - 16:13
As you maybe know, some time ago I made paste service, mostly to use for queries, or related text to share on IRC. One part of it is that it also has pretty printer of provided queries. Recently I realized that in case of complex join conditions, the output is, well, sub-optimal. For example: SELECT … Continue reading "Small improvement for pretty-printing in paste.depesz.com"

Hubert 'depesz' Lubaczewski: What is index overhead on writes?

Neues vom PostgreSQL Planet - 6. Januar 2026 - 12:57
One of things people learn is that adding indexes isn't free. All write operations (insert, update, delete) will be slower – well, they have to update index. But realistically – how much slower? Full tests should involve lots of operations, on realistic data, but I just wanted to see some basic info. So I figured … Continue reading "What is index overhead on writes?"

Henrietta Dombrovskaya: pg_acm is here!

Neues vom PostgreSQL Planet - 6. Januar 2026 - 12:15

I am writing this post over the weekend but scheduling it to be published on Tuesday, after the PG DATA CfP closes, because I do not want to distract anyone, including myself, from the submission process.

A couple of months ago, I created a placeholder in my GitHub, promising to publish pg_acm before the end of the year. The actual day I pushed the initial commit was January 3, but it still counts, right? At least, it happened before the first Monday of 2026!

Tomas Vondra: Stabilizing Benchmarks

Neues vom PostgreSQL Planet - 6. Januar 2026 - 11:00

I do a fair amount of benchmarks as part of development, both on my own patches and while reviewing patches by others. That often requires dealing with noise, particularly for small optimizations. Here’s an overview of ways I use to filter out random variations / noise.

Most of the time it’s easy - the benefits are large and obvious. Great! But sometimes we need to care about cases when the changes are small (think less than 5%).

Josef Machytka: Dissecting PostgreSQL Data Corruption

Neues vom PostgreSQL Planet - 6. Januar 2026 - 10:03

PostgreSQL 18 made one very important change – data block checksums are now enabled by default for new clusters at cluster initialization time. I already wrote about it in my previous article. I also mentioned that there are still many existing PostgreSQL installations without data checksums enabled, because this was the default in previous versions.

Umut TEKIN: Exploration: CNPG Logical Replication in PostgreSQL

Neues vom PostgreSQL Planet - 6. Januar 2026 - 7:05
Introduction

PostgreSQL has built-in support for logical replication. Unlike streaming replication, which works at the block level, logical replication replicates data changes based on replica-identities, usually primary keys, rather than exact block addresses or byte-by-byte copies.

Ahsan Hadi: PostgreSQL 18 RETURNING Enhancements: A Game Changer for Modern Applications

Neues vom PostgreSQL Planet - 6. Januar 2026 - 6:45

PostgreSQL 18 has arrived with some fantastic improvements, and among them, the RETURNING clause enhancements stand out as a feature that every PostgreSQL developer and DBA should be excited about. In this blog, I'll explore these enhancements, with particular focus on the MERGE RETURNING clause enhancement, and demonstrate how they can simplify your application architecture and improve data tracking capabilities.

Zhang Chen: Not All Unrecoverable PostgreSQL Data Is Actually Lost

Neues vom PostgreSQL Planet - 6. Januar 2026 - 1:00
Most teams assume data loss means restore from backup. This article introduces the Instant Recovery mindset, explains why PostgreSQL makes it possible, and how PDU turns recoverability into a practical, predictable process.

Seiten