Re: [HACKERS] pg_serial early wraparound

Поиск
Список
Период
Сортировка
От Thomas Munro
Тема Re: [HACKERS] pg_serial early wraparound
Дата
Msg-id CAEepm=1F0orbiAhFA2nT3TJGT__BEVLXvguT22evpuU8FV7hMA@mail.gmail.com
обсуждение исходный текст
Ответ на Re: [HACKERS] pg_serial early wraparound  (Thomas Munro <thomas.munro@enterprisedb.com>)
Ответы Re: pg_serial early wraparound  (Anastasia Lubennikova <lubennikovaav@gmail.com>)
Список pgsql-hackers
On Mon, Feb 27, 2017 at 7:28 PM, Thomas Munro
<thomas.munro@enterprisedb.com> wrote:
> On Wed, Nov 9, 2016 at 11:07 AM, Thomas Munro
> <thomas.munro@enterprisedb.com> wrote:
>> The SLRU managed by predicate.c can wrap around and overwrite data if
>> you have more than 1 billion active XIDs.  That's because when SSI was
>> implemented, slru.c was limited to four digit segment names, which
>> implied a page limit that wasn't enough for pg_serial to have space
>> for every possible XID.  We should probably rip that code out, because
>> SLRUs now support five digit segment names.  Something like the
>> attached.  I'll post a test script to demonstrate correct wraparound
>> behaviour around in time for one of the later CFs.
>
> Here is a shell script that shows a full rotation through xid space if
> you build PostgreSQL with TEST_OLDSERXID, which you can do by
> uncommenting a line in predicate.c.  On master we see the SLRU
> segments go around the clock twice for each time xid goes around.
> With the patch it goes around just once, adding an extra character to
> the segment name to double the space.

I attached the wrong version.  Here is the right one.

-- 
Thomas Munro
http://www.enterprisedb.com

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

Вложения

В списке pgsql-hackers по дате отправления:

Предыдущее
От: Thomas Munro
Дата:
Сообщение: Re: [HACKERS] pg_serial early wraparound
Следующее
От: Robert Haas
Дата:
Сообщение: Re: [HACKERS] SerializedSnapshotData alignment