From: | Robert Haas <robertmhaas(at)gmail(dot)com> |
---|---|
To: | Andres Freund <andres(at)2ndquadrant(dot)com> |
Cc: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Heikki Linnakangas <hlinnakangas(at)vmware(dot)com>, Rushabh Lathia <rushabh(dot)lathia(at)gmail(dot)com>, PostgreSQL Hackers <pgsql-hackers(at)postgresql(dot)org>, Rushabh Lathia <rushabh(dot)lathia(at)enterprisedb(dot)com>, Amit Kapila <amit(dot)kapila16(at)gmail(dot)com> |
Subject: | Re: ERROR: missing chunk number 0 for toast value |
Date: | 2014-01-06 14:10:48 |
Message-ID: | CA+TgmoZJ+eGnwVCDbpbaXOgs8UQzv8KoSrX+CSZzM=duA4tr+A@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
On Thu, Jan 2, 2014 at 4:15 PM, Andres Freund <andres(at)2ndquadrant(dot)com> wrote:
> On 2014-01-02 16:05:09 -0500, Robert Haas wrote:
>> On Thu, Jan 2, 2014 at 3:19 PM, Andres Freund <andres(at)2ndquadrant(dot)com> wrote:
>> >> I was wondering if we could somehow arrange to not
>> >> release the subtransaction's AccessShareLock on the table, as long as it
>> >> was protecting toasted references someplace.
>> >
>> > Sounds fairly ugly...
>>
>> I think the only principled fixes are to either retain the lock or
>> forcibly detoast before releasing it.
>
> I don't think that's sufficient. Unless I miss something the problem
> isn't restricted to TRUNCATE and such at all. I think a plain VACUUM
> should be sufficient? I haven't tested it, but INSERT RETURNING
> toasted_col a row, storing the result in a record, and then aborting the
> subtransaction will allow the inserted row to be VACUUMed by a
> concurrent transaction.
Hmm, that's actually nastier than the case that the case Rushabh
originally reported. A somewhat plausible response to "my holdable
cursor didn't work after I truncated the table it read from" is "well
don't do that then". But this case could actually happen to someone
who wasn't trying to do anything screwy.
--
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company
From | Date | Subject | |
---|---|---|---|
Next Message | Craig Ringer | 2014-01-06 14:12:06 | Re: Convert Datum* to char* |
Previous Message | Andres Freund | 2014-01-06 14:04:38 | Re: Re: In-core regression tests for replication, cascading, archiving, PITR, etc. Michael Paquier |