EDB Postgres Distributed 6.1.0 release notes v6.1.0
Released: 19 August 2025
This is a minor release of PGD 6, which introduces direct upgrade support from PGD 4.4.0+ and PGD 5.9.0+. This makes it the first version of PGD 6 that allows for a seamless, in-place upgrade from older versions. In addition to this key feature, PGD 6.1.0 also includes a variety of new features, enhancements, and important bug fixes.
Highlights
- Seamless upgrades from PGD 4 and PGD 5 to PGD 6: PGD 4.4.0+ and PGD 5.9.0+ users can now perform a direct upgrade to PGD 6, beginning with PGD 6.1.0, ensuring a smooth transition to the latest features.
- Replication to Apache Iceberg: PGD now supports replication to Apache Iceberg when using the Analytics Accelerator. This new capability allows you to stream data directly from your PGD cluster to an Iceberg data lake and also query the Iceberg data directly from within PGD. This significantly expands your options for large-scale data analytics and integration.
- PGD 6 now supports Materialized Views: The CREATE, ALTER, REFRESH, and DROP commands are replicated across the cluster, ensuring that materialized views are consistent on all nodes. When a materialized view is created or concurrently refreshed, the data is populated on the upstream node and then replicated to others, providing full support for this functionality.
- PGD 6 is now on IBM LinuxONE: PGD's native capabilities are expanded with new support for IBM LinuxONE, offering optimized uptime, throughput, and energy efficiency.
Features
Description | Addresses |
---|---|
Added CLI commands to get and update Postgres settings (GUC).Add the | |
New | |
Simplified Node Configuration with the PGD CLIThe pgd command-line tool now includes new commands to make managing individual node configurations easier. You can now use | |
PGD CLI View Commit ScopesThe PGD CLI now includes a new command, | |
PGD CLI - Part a Node from a ClusterThe PGD CLI now includes a new command, | |
Leader DDL LockNew lock type leader DDL lock is used by default for locking DDL statements. This lock locks on write-leaders only, not requiring majority nodes to participate in the locking operation. Old behavior can be restored by adjusting | |
Replication of Roles to witness nodesRoles are now replicated to witness nodes when they join the nodegroup, and also as and when they are created or altered on data nodes. This is useful mainly when dealing with GUC permissions. | |
Added command to list commit scopes for PGD cluster.Add a command | |
Added command to part a PGD node from cluster.Add a command |
Enhancements
Description | Addresses |
---|---|
Update the | |
Apply the PGD Essential constraints for CLI commands.The CLI will check for and enforce the PGD Essential constraints for the commands as applicable. See PGD Essential CLI Constraints for more details. | |
Improve Raft snapshot export/import to reset Raft completelyWe've made improvements to how our Raft consensus mechanism handles snapshots. This ensures that in the rare event of a data consistency issue, restoring a snapshot will now fully reset the system's state, allowing operations to resume smoothly from a consistent starting point. | |
EPAS Interval Partition Support for PGDA new enhancement allows partitions created by EDB Postgres Advanced Server (EPAS) AutoPartition to work correctly within a multi-node PGD environment. This fix ensures partitions are created consistently on each node and are visible across all nodes. | |
Improved max_connections Error ReportingThe Connection Manager now provides more helpful and specific error messages when a max_connections limit is reached. Users will now see a clear message like "sorry, too many clients already," making it much easier to diagnose connection issues. | |
Support for commands that generate Table Rewrites in an explicit transaction blockPGD now supports executing ALTER TABLE commands that generate a table rewrite within a transaction block. Multiple commands are supported in a single transaction block. This simplifies complex DDL operations by applying all changes as a single atomic unit and provides performance optimizations when multiple commands target the same table. | |
Postgres Compatibility with PGD - Phase 5This is a placeholder for future updates regarding Postgres compatibility. |
Changes
Description | Addresses |
---|---|
Removal of listen_address Group OptionThe |
Bug Fixes
Description | Addresses |
---|---|
Fix the | |
Fix the data dir check for the setup command.The | |
Fix for Mixed_version ClustersWe've resolved a bug that could cause replication to fail in a mixed-version PGD cluster (e.g., combining Postgres 12 and Postgres 16), an architecture used temporarily during postgres rolling upgrade. Previously, DDL statements on a newer node could lead to replication slot disconnection on older nodes, with an "unrecognized configuration parameter" error. This fix ensures that replication now functions correctly during a rolling upgrade or in a temporary mixed-version state. | |
Connection Manager Behavior on Routing ChangesThe Connection Manager now correctly handles connections following a change in cluster routing configuration (e.g., switching between global and no routing). This resolves unexpected behavior and ensures client connections are routed as intended after a configuration update. | |
Fix for node_pkey Errors When Rebuilding Parted NodesA fix has been added to address a bug that could cause a consensus worker to crash with a duplicate key value violates unique constraint "node_pkey" error when a parted node was being rebuilt. This fix ensures that you can now successfully rebuild a parted node using | |
PGD CLI cluster verify Command Fix for Witness-Only GroupsThe pgd cluster verify command no longer displays a warning for witness-only groups that do not contain data nodes. This resolves an issue where the command incorrectly flagged these groups, ensuring that the verification output is now accurate for all cluster types. | |
Raft Fix for Parting Lagging NodesRaft no longer fails to recover after a heavily-lagging node that was previously a leader is parted from the cluster. This fixes a bug where the Raft leader could crash with a "BDR node XXX not found" error, which previously required a manual, forceful reset of the Raft state. Now, Raft correctly handles this scenario and recovers automatically, ensuring cluster stability. | |
Fix for PGD CLI Multi-Group SetupA bug has been fixed in the PGD CLI setup command that prevented the creation of multi-group clusters. Previously, the command would fail with an unhelpful error when attempting to add a node to a second group. The fix ensures that the command now correctly handles the creation of nodes in new groups, allowing for successful multi-group cluster setup. | |
Fix for CLI setup Command GUC UpdateThe PGD CLI setup command no longer fails when attempting to update Postgres settings on remote nodes. This fix resolves a "malformed array literal" error that occurred during the cluster setup, improving the reliability of the initialization process. | |
Fix for "Clock Has Moved Backwards" Error with Snowflake SequencesA race condition has been fixed that could cause a "clock has moved backwards" error when using Snowflake sequences, even when the system clock was functioning correctly. This fix ensures the sequence correctly handles concurrent access, preventing this error and improving the reliability of Snowflake sequence generation. | |
Fix a crash with pg_failover_slotsEnsure that CDC hooks are no-op when recovery is in progress or the backend is not connected to a database. This can definitely happen if | |
Fix a crash on a stat view for connection manager statThe view | |
Node kind checkPGD CLI now has a verify check for nodes not having a node kind properly set. This check emits a warning on nodes that are coming from a previous major version upgrade that missed setting the node kind. | |
Skip the node GUCs update with |
- On this page
- Highlights
- Features
- Enhancements
- Changes
- Bug Fixes