Re: delete/recreate indexes

Поиск
Список
Период
Сортировка
От Jeff Davis
Тема Re: delete/recreate indexes
Дата
Msg-id 1319079069.16256.42.camel@jdavis
обсуждение исходный текст
Ответ на delete/recreate indexes  (alan <alan.miller3@gmail.com>)
Ответы Re: delete/recreate indexes  ("Bort, Paul" <pbort@tmwsystems.com>)
Список 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 по дате отправления:

Предыдущее
От: Scott Marlowe
Дата:
Сообщение: Re: disused indexes and performance?
Следующее
От: Craig Ringer
Дата:
Сообщение: Re: How many Cluster database on a single server