Sammlung von Newsfeeds

Jimmy Angelakos: Announcing the second PostgreSQL Edinburgh meetup

Neues vom PostgreSQL Planet - 14. Januar 2026 - 16:33

The Lister Learning and Teaching Centre at the University of Edinburgh. Photo by Paul Zanre - COPYRIGHT: PAUL ZANRE PHOTOGRAPHY.

I'm thrilled to announce that the PostgreSQL Edinburgh meetup is back! 🐘

Floor Drees: PostgreSQL Contributor Story: Mark Wong

Neues vom PostgreSQL Planet - 14. Januar 2026 - 12:32
Earlier this year we started a program (“Developer U”) to help colleagues who show promise for PostgreSQL Development to become contributors. Meet Mark Wong, wearer of many hats.

Pavlo Golub: Stand Up, Mentor! Help Postgres Shine in GSoC 2026!

Neues vom PostgreSQL Planet - 14. Januar 2026 - 4:00

Google Summer of Code is back for 2026! We’re celebrating the 22nd year of this incredible program that has brought countless talented developers into the open-source world. Please take a moment to review Google’s announcement and familiarize yourself with what makes this year special.

Ian Barwick: PgPedia Week, 2025-12-28

Neues vom PostgreSQL Planet - 14. Januar 2026 - 0:47
PostgreSQL 19 changes this week logical replication logical decoding enabled dynamically based on logical slot presence and does not require wal_level to be set to logical PostgreSQL 18 articles Instant database clones with PostgreSQL 18 (2025-12-22) - Radim Marek

more...

Radim Marek: The hidden cost of PostgreSQL arrays

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

Starting with arrays in PostgreSQL is as simple as declaring a column as integer[], inserting some values, and you are done.

Or building the array on the fly.

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?"

Seiten