Re: unlogged tables

From: Josh Berkus <josh(at)agliodbs(dot)com>
To: pgsql-performance(at)postgresql(dot)org
Subject: Re: unlogged tables
Date: 2011-11-15 20:51:01
Message-ID: 4EC2D0B5.6060901@agliodbs.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance


>> Unlogged table can increase speed, this table has about 1.6
>> millions of update per hour, but unlogged with a chance of loss
>> all information on a crash are not a good idea for this.
>
> pg_dump -t 'tablename' from a cron job? (Make sure to rotate dump
> file names, maybe with day of week or some such.)

Or just "CREATE TABLE AS" copy the table every hour to a second, backup
table. Then it would be much easier to script automated restore of the
data.

--
Josh Berkus
PostgreSQL Experts Inc.
http://pgexperts.com

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message Scott Marlowe 2011-11-15 20:54:07 Re: What's the state of postgresql on ext4 now?
Previous Message Josh Berkus 2011-11-15 20:48:33 Re: What's the state of postgresql on ext4 now?