From: | Peter Eisentraut <peter(at)eisentraut(dot)org> |
---|---|
To: | Ekaterina Kiryanova <e(dot)kiryanova(at)postgrespro(dot)ru>, pgsql-docs(at)lists(dot)postgresql(dot)org |
Subject: | Re: Limitation relates to memory allocation |
Date: | 2024-10-16 07:07:13 |
Message-ID: | 80e8ac9e-da2a-4d3e-8345-d16c77ac88f9@eisentraut.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-docs |
On 14.10.24 08:03, Ekaterina Kiryanova wrote:
> We encountered an issue related to internal memory allocation limit:
> ERROR: invalid memory alloc request size
>
> In the documentation on limits: https://www.postgresql.org/docs/17/
> limits.html
> the description suggests that only a single field is limited to 1GB,
> which could imply that the total tuple size can be larger. So as we
> planned to store three columns of 1GB each in a table and attempted to
> insert this data, we got the error.
>
> Our research showed that the limit is imposed by the palloc() function,
> regardless of whether it is a tuple or not, and if the data is
> serialized or dumped, the effective limit can be even lower, typically
> around 512MB per row. So for allocations exceeding 1GB, the
> palloc_extended() function can be used. Please correct me if I'm wrong.
>
> I prepared a small patch for master, if it's worth clarifying, could you
> please review the attachment?
The 1 GB limit in palloc() is a safety check, when the code shouldn't be
allocating more than that. Code that legitimately wants to allocate
more than 1 GB can use the MCXT_ALLOC_HUGE flag.
If you see this error, then that could either be corruption somewhere
(the kind of thing this safety check is meant to catch) or the code is
buggy.
In either case, I don't know that it is appropriate to document this as
an externally visible system limitation.
From | Date | Subject | |
---|---|---|---|
Next Message | Alvaro Herrera | 2024-10-16 09:22:48 | Re: CLUSTER command |
Previous Message | Steve Lau | 2024-10-16 06:14:25 | Re: Index of expression over table row or column |