Re: Re: Postgres 9.4 unlogged table. Under any circumstance after server crash would data persist?

Поиск
Список
Период
Сортировка
От Guillaume Lelarge
Тема Re: Re: Postgres 9.4 unlogged table. Under any circumstance after server crash would data persist?
Дата
Msg-id CAECtzeU4wB92ESkZT4YWHurqS_L9nk2e4fQv3fMYP+Jt+ZZGtg@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Re: Postgres 9.4 unlogged table. Under any circumstance after server crash would data persist?  (Keith <keith@keithf4.com>)
Ответы Re: Re: Postgres 9.4 unlogged table. Under any circumstance after server crash would data persist?  (Stephen Tahmosh <stahmosh@shieldsrx.com>)
Список pgsql-admin

Le 3 févr. 2016 5:30 PM, "Keith" <keith@keithf4.com> a écrit :
>
>
>
> On Wed, Feb 3, 2016 at 7:42 AM, Albe Laurenz <laurenz.albe@wien.gv.at> wrote:
>>
>> Stephen Tahmosh wrote:
>> > Is there any case where this data, in an unlogged table, would persist through a server “crash”?
>> > (however caused).
>>
>> No.
>> That is the price you pay for avoiding transaction logs.
>>
>> Yours,
>> Laurenz Albe
>>
>> --
>> Sent via pgsql-admin mailing list (pgsql-admin@postgresql.org)
>> To make changes to your subscription:
>> http://www.postgresql.org/mailpref/pgsql-admin
>
>
> If you upgrade to 9.5, you can take advantage of the fact that you can convert an unlogged table to a logged one with an ALTER TABLE statement. I believe this does a full rewrite of the table again, but you may be able to incorporate that into your ETL process if it ends up still being quicker than doing the ETL directly on a normal table.
>
> http://www.postgresql.org/docs/9.5/static/sql-createtable.html#SQL-CREATETABLE-UNLOGGED 
>

It doesn't rewrite the whole table, but it puts its whole content in the WAL files.

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

Предыдущее
От: Keith
Дата:
Сообщение: Re: Re: Postgres 9.4 unlogged table. Under any circumstance after server crash would data persist?
Следующее
От: Stephen Tahmosh
Дата:
Сообщение: Re: Re: Postgres 9.4 unlogged table. Under any circumstance after server crash would data persist?