Re: delete/recreate indexes - Mailing list pgsql-performance

From Jeff Davis
Subject Re: delete/recreate indexes
Date
Msg-id 1319079069.16256.42.camel@jdavis
Whole thread Raw
In response to delete/recreate indexes  (alan <alan.miller3@gmail.com>)
Responses Re: delete/recreate indexes  ("Bort, Paul" <pbort@tmwsystems.com>)
List pgsql-performance
On Wed, 2011-10-19 at 08:03 -0700, alan wrote:
> So I thought I’d just run this once (via cron) every morning.
>     BEGIN;
>         DROP INDEX data_unique;
>         UPDATE data SET datum = (data.datum + interval '24 hours');
>         CREATE UNIQUE INDEX data_unique ON public.data USING BTREE
> (device, group, datum);
>     COMMIT;
>
> But
> 1.    it’s taking forever and
> 2.    I’m seeing that my disk is filling up real fast.

An unrestricted update will end up rewriting the whole table. It's
advisable to run VACUUM afterward, so that the wasted space can be
reclaimed. What version are you on? Do you have autovacuum enabled?

Also, to take a step back, why do you try to keep the timestamps
changing like that? Why not store the information you need in the record
(e.g. insert time as well as the datum) and then compute the result you
need using a SELECT (or make it a view for convenience)? Fundamentally,
these records aren't changing, you are just trying to interpret them in
the context of the current day. That should be done using a SELECT, not
an UPDATE.

Regards,
    Jeff Davis



pgsql-performance by date:

Previous
From: Scott Marlowe
Date:
Subject: Re: disused indexes and performance?
Next
From: Craig Ringer
Date:
Subject: Re: How many Cluster database on a single server