Thread
Commits
Same data as JSON:
GET /api/v1/messages/:b64id/commits
the thread's linked commits as JSON, with link sources.
API reference →
-
Fix re-distributing previously distributed invalidation messages during logical decoding.
- d87d07b7ad3b 18.0 landed
- 45c357e0e85d 17.6 landed
- b2ae077205e1 16.10 landed
- fc0fb77c550f 15.14 landed
- 983b3636259b 14.19 landed
- 1230be12f086 13.22 landed
-
BUG #18938: Logical replication failure in 16.9: "invalid memory alloc request size 1372786672"
PG Bug reporting form <noreply@postgresql.org> — 2025-05-28T03:30:48Z
The following bug has been logged on the website: Bug reference: 18938 Logged by: John Hutchins Email address: john.hutchins@wicourts.gov PostgreSQL version: 16.9 Operating system: Ubuntu 24.04.2 LTS (GNU/Linux 6.8.0-60-generic x8 Description: We encountered a critical logical replication failure after upgrading to PostgreSQL 16.9 (Ubuntu package 16.9-0ubuntu0.24.04.1) that resolved upon downgrading to 16.2. I believe this is very similar to the bug reported in this current thread: https://www.postgresql.org/message-id/CAD21AoBCn7RR0EYbK%2B1n5UTksc3CVn5AKvxBRSr7zR2eWqTTOw%40mail.gmail.com Environment: OS: Ubuntu 24.04.2 LTS (Linux 6.8.0-60-generic) Hardware: x86_64 Compiler: gcc 13.3.0 Upgraded production instance from 16.8 → 16.9 Subscribers began failing with error: [2025-05-27 13:56:07.860 CDT] ERROR: invalid memory alloc request size 1372786672 Downgrade to 16.2 restored normal replication from point of failure. Observations: Currently affects 1/72 production instances using logical replication Error occurs consistently across all subscribers to affected database, regardless of publication (appears to be related to logical decoding) No schema changes or unusual load during incident Other 16.9 instances remain operational (for now) Logged error: [2025-05-27 13:56:07.860 CDT] 649724 <logicalrep@xxx.xxx.xx.xxx(42454) publishingdb subscribername> Versions: -- 16.9 (failing): PostgreSQL 16.9 (Ubuntu 16.9-0ubuntu0.24.04.1) -- 16.2 (working): PostgreSQL 16.2 (Ubuntu 16.2-1ubuntu4) Suspected area: Recent commits to logical decoding in 16.9 (specific changesets may be relevant). We urgently need assistance diagnosing this, as it blocks patch updates. Full server logs and configuration details are available upon request. Thank you for your time, John Hutchins Wisconsin Court System DBA
-
Re: BUG #18938: Logical replication failure in 16.9: "invalid memory alloc request size 1372786672"
Masahiko Sawada <sawada.mshk@gmail.com> — 2025-05-28T17:15:46Z
Hi, On Wed, May 28, 2025 at 5:33 AM PG Bug reporting form <noreply@postgresql.org> wrote: > > The following bug has been logged on the website: > > Bug reference: 18938 > Logged by: John Hutchins > Email address: john.hutchins@wicourts.gov > PostgreSQL version: 16.9 > Operating system: Ubuntu 24.04.2 LTS (GNU/Linux 6.8.0-60-generic x8 > Description: > > We encountered a critical logical replication failure after upgrading to > PostgreSQL 16.9 (Ubuntu package 16.9-0ubuntu0.24.04.1) that resolved upon > downgrading to 16.2. I believe this is very similar to the bug reported in > this current thread: > https://www.postgresql.org/message-id/CAD21AoBCn7RR0EYbK%2B1n5UTksc3CVn5AKvxBRSr7zR2eWqTTOw%40mail.gmail.com Yes, I think the same issue happened. We're discussing the best way to resolve this issue on that thread. > Environment: > OS: Ubuntu 24.04.2 LTS (Linux 6.8.0-60-generic) > Hardware: x86_64 > Compiler: gcc 13.3.0 > Upgraded production instance from 16.8 → 16.9 > Subscribers began failing with error: > [2025-05-27 13:56:07.860 CDT] ERROR: invalid memory alloc request size > 1372786672 > Downgrade to 16.2 restored normal replication from point of failure. > Observations: > Currently affects 1/72 production instances using logical replication > Error occurs consistently across all subscribers to affected database, > regardless of publication (appears to be related to logical decoding) > No schema changes or unusual load during incident > Other 16.9 instances remain operational (for now) > Logged error: > [2025-05-27 13:56:07.860 CDT] 649724 <logicalrep@xxx.xxx.xx.xxx(42454) > publishingdb subscribername> > Versions: > -- 16.9 (failing): > PostgreSQL 16.9 (Ubuntu 16.9-0ubuntu0.24.04.1) > -- 16.2 (working): > PostgreSQL 16.2 (Ubuntu 16.2-1ubuntu4) > Suspected area: > Recent commits to logical decoding in 16.9 (specific changesets may be > relevant). > We urgently need assistance diagnosing this, as it blocks patch updates. > Full server logs and configuration details are available upon request. > Thank you for your time, The configuration details would help the investigation. IIUC this issue could happen especially if there are many concurrent transactions that perform DDLs. Does this match the workload on your server? Regards, -- Masahiko Sawada Amazon Web Services: https://aws.amazon.com
-
Re: [E] Re: BUG #18938: Logical replication failure in 16.9: "invalid memory alloc request size 1372786672"
John Hutchins <john.hutchins@wicourts.gov> — 2025-05-28T19:13:20Z
Hi, Thanks very much for your reply. > The configuration details would help the investigation. Here are all configs which may be relevant: wal_level = logical max_replication_slots = 20 max_logical_replication_workers = 14 max_wal_senders = 20 wal_keep_size = 4096 max_wal_size = 4GB min_wal_size = 1GB wal_sender_timeout = 300s archive_mode = on archive_command = 'true' archive_timeout = 3600 max_worker_processes = 18 max_connections = 1000 shared_buffers = 10GB maintenance_work_mem = 2GB work_mem = 26214kB effective_cache_size = 30GB effective_io_concurrency = 200 > IIUC this issue could happen especially if there are many concurrent > transactions that perform DDLs. Does this match the workload on your > server? I'm not sure if our workload would contain "many concurrent transactions that perform DDLs." Our workload includes DDLs to create temporary tables and also "ALTER TABLE ENABLE/DISABLE TRIGGER" statements that are single-threaded, but may run concurrently with other DML operations. So, in our workloads, there is a possibility of overlap between DDL (trigger management and temporary table creation) and DML from other sessions. Please let me know if you need any additional details. John Hutchins Wisconsin Court System DBA
-
Re: [E] Re: BUG #18938: Logical replication failure in 16.9: "invalid memory alloc request size 1372786672"
Amit Kapila <amit.kapila16@gmail.com> — 2025-05-29T03:32:45Z
On Thu, May 29, 2025 at 12:43 AM John Hutchins <John.Hutchins@wicourts.gov> wrote: > > Hi, > Thanks very much for your reply. > > > The configuration details would help the investigation. > > Here are all configs which may be relevant: > > wal_level = logical > max_replication_slots = 20 > max_logical_replication_workers = 14 > max_wal_senders = 20 > wal_keep_size = 4096 > max_wal_size = 4GB > min_wal_size = 1GB > wal_sender_timeout = 300s > archive_mode = on > archive_command = 'true' > archive_timeout = 3600 > max_worker_processes = 18 > max_connections = 1000 > shared_buffers = 10GB > maintenance_work_mem = 2GB > work_mem = 26214kB > effective_cache_size = 30GB > effective_io_concurrency = 200 > > > IIUC this issue could happen especially if there are many concurrent > > transactions that perform DDLs. Does this match the workload on your > > server? > > I'm not sure if our workload would contain "many concurrent transactions that perform DDLs." Our workload includes DDLs to create temporary tables and also "ALTER TABLE ENABLE/DISABLE TRIGGER" statements that are single-threaded, but may run concurrently with other DML operations. So, in our workloads, there is a possibility of overlap between DDL (trigger management and temporary table creation) and DML from other sessions. > It can happen in this workload due to the reason explained in email [1]. We are talking about the right fix for the problem. [1] - https://www.postgresql.org/message-id/CAA4eK1LMgqeT_bPZ3MH-VKvwOqpZyfJmF7knZhu1rqt2Pqsnwg%40mail.gmail.com -- With Regards, Amit Kapila.
-
Re: [E] Re: BUG #18938: Logical replication failure in 16.9: "invalid memory alloc request size 1372786672"
Masahiko Sawada <sawada.mshk@gmail.com> — 2025-06-17T17:42:41Z
On Wed, May 28, 2025 at 8:32 PM Amit Kapila <amit.kapila16@gmail.com> wrote: > > On Thu, May 29, 2025 at 12:43 AM John Hutchins > <John.Hutchins@wicourts.gov> wrote: > > > > Hi, > > Thanks very much for your reply. > > > > > The configuration details would help the investigation. > > > > Here are all configs which may be relevant: > > > > wal_level = logical > > max_replication_slots = 20 > > max_logical_replication_workers = 14 > > max_wal_senders = 20 > > wal_keep_size = 4096 > > max_wal_size = 4GB > > min_wal_size = 1GB > > wal_sender_timeout = 300s > > archive_mode = on > > archive_command = 'true' > > archive_timeout = 3600 > > max_worker_processes = 18 > > max_connections = 1000 > > shared_buffers = 10GB > > maintenance_work_mem = 2GB > > work_mem = 26214kB > > effective_cache_size = 30GB > > effective_io_concurrency = 200 > > > > > IIUC this issue could happen especially if there are many concurrent > > > transactions that perform DDLs. Does this match the workload on your > > > server? > > > > I'm not sure if our workload would contain "many concurrent transactions that perform DDLs." Our workload includes DDLs to create temporary tables and also "ALTER TABLE ENABLE/DISABLE TRIGGER" statements that are single-threaded, but may run concurrently with other DML operations. So, in our workloads, there is a possibility of overlap between DDL (trigger management and temporary table creation) and DML from other sessions. > > > > It can happen in this workload due to the reason explained in email > [1]. We are talking about the right fix for the problem. I pushed the fix for this issue[1]. Regards, [1] https://git.postgresql.org/gitweb/?p=postgresql.git;a=commit;h=d87d07b7ad3b782cb74566cd771ecdb2823adf6a -- Masahiko Sawada Amazon Web Services: https://aws.amazon.com