Neues vom PostgreSQL Planet
Pavlo Golub: PGDay/MED 2024 Napoli Edition
The first-ever official PostgreSQL conference was held in Italy. Years later, PGDay/MED 2024 brought us back to this inspiring country. I was excited to visit Naples, often called the cradle of pizza and home to some of the finest cuisines in the world. As a self-proclaimed gastronomic geek, this was a bucket-list experience both professionally and personally!
Karen Jex: PGConf.EU 2025 - Join us in Riga, Latvia on 21-24 October
We're happy to announce that PostgreSQL Conference Europe 2025 will be held in Riga, Latvia on October 21-24 2025. The conference format and schedule will be announced later in 2025.
In the meantime, mark your calendars, and we look forward to seeing you in Riga in October!
Andrei Lepikhov: Fractional Path Issue in Partitioned Postgres databases
While the user notices the positive aspects of technology, a developer, usually encountering limitations, shortcomings or bugs, watches the product from a completely different perspective.
Ian Barwick: PgPedia Week, 2024-12-15
Checking the referer logs, delighted to find pgPedia ranking fourth in Postgres Weekly 's " top 5 links of the year based upon reader engagement ":
Many thanks for the support, it is most appreciated!
In other site news, this blog does actually have an RSS feed , it was just cunningly hidden.
REGINA OBE: The bus factor problem
One of the biggest problems open source projects face today is the bus factor problem.
I've been thinking a lot about this lately as how it applies to my PostGIS, pgRouting, and OSGeo System Administration (SAC) teams.
Continue reading "The bus factor problem"Dave Cramer: Does anyone use client connectors for PostgreSQL ?
Recently, I attended a conference talk about the vibrant ecosystem of PostgreSQL. It was a fascinating presentation, showcasing the incredible breadth of innovation in the PostgreSQL community. Extensions that push the boundaries of functionality, AI integrations within PostgreSQL, advanced connection pools, and robust cluster management tools were all highlighted.
But something vital was conspicuously absent. Can you guess? That’s right—not a single mention of client connectors.
Shaun M. Thomas: PG Phriday: Whats Our Vector Victor
Jimmy Angelakos: Contributions for the week of 2024-11-25 (Week 48 overview)
- Ayse Bilge Ince was interviewed as "PostgreSQL Person of the Week".
Umair Shahid: VACUUM FULL in PostgreSQL – What you need to be mindful of
If you have worked with PostgreSQL for a while, you have probably come across the command VACUUM FULL. At first glance, it might seem like a silver bullet for reclaiming disk space and optimizing tables. After all, who would not want to tidy things up and make their database more efficient, right?
But here is the thing: while VACUUM FULL can be useful in some situations, it is not the hero it might seem. In fact, it can cause more problems than it solves if you are not careful.
Andreas Scherbaum: PGConf.EU 2024 Review
Robert Haas: PostgreSQL Hacking Workshop - January 2025
Next month, I'l be hosting 2 or 3 discussions of Andres Freund's talk, NUMA vs PostgreSQL, given at PGConf.EU 2024. You can sign up using this form. I anticipate that both Andres and I will be present for the discussions, and I'd like to thank Andres and all of the other presenters who have made time to join the discussions and answer questions for their time (so far: Melanie Plageman, Thomas Munro, Andrey Borodin).
Hubert 'depesz' Lubaczewski: How to ALTER tables without breaking application?
Henrietta Dombrovskaya: November 20 Chicago PUG recording
Better later than never – here is a recording of Devrim Gunduz’s talk at the November meetup – enjoy!
Daniel Westermann: PGConf.DE 2025 - Call for Sponsors at PostgreSQL Conference Germany 2025 opens soon!
As announced earlier this month [1], PostgreSQL Conference Germany 2025 will take place from May 08-09, 2025 in Berlin
We now invite you to join us as a sponsor and become an integral part of this exciting event!
The Call for Sponsors opens at December, 16th 2025 at 2PM UTC
Gabriele Bartolini: CNPG Recipe 15 - PostgreSQL major online upgrades with logical replication
This recipe shows how to perform an online major PostgreSQL upgrade using the new declarative approach to logical replication introduced in CloudNativePG 1.25. By leveraging the Publication and Subscription CRDs, users can set up logical replication between PostgreSQL clusters with ease. I will walk you through configuring a PostgreSQL 15 publisher, importing schemas into a PostgreSQL 17 subscriber, and verifying data synchronisation, with the broader goal of highlighting the benefits of a repeatable and testable upgrade process.
Umair Shahid: Understanding Wait Events in PostgreSQL
As databases grow in size and complexity, performance issues inevitably arise. Whether it is slow query execution, lock contention, or disk I/O bottlenecks, identifying the root cause of these issues is often the most challenging aspect of database management. One way to understand performance bottlenecks is to determine what the database is waiting for.
Peter Eisentraut: Where are all the PostgreSQL users?
Let’s stipulate that PostgreSQL has grown significantly in popularity over the last 20 years. I don’t know by how much, but certainly at least one order of magnitude, probably two or more.
Andrew Atkinson: Django and Postgres for the Busy Rails Developer
About 10 years ago I wrote a post PostgreSQL for the Busy MySQL Developer, as part of switching from MySQL to Postgres for my personal and professional projects, wherever I could.
Recently I had the chance to work with Python, Django, and Postgres together, as a long-time and busy Rails developer.
There were some things I thought were really nice. So am I switching?
Colin Copeland: Getting Started with Dagster
Recently, Caktus has been using Tailscale to manage VPN connections between Android tablets and a central server. We wanted to report on the devices connected to the network using the Tailscale API. While we could use tools like Celery to fetch data from the API and load it into a database—given its widespread use in the Django ecosystem—we also wanted to explore other options.