Re: Postgresql update op is very very slow

Поиск
Список
Период
Сортировка
От Heikki Linnakangas
Тема Re: Postgresql update op is very very slow
Дата
Msg-id 486219B6.7050003@enterprisedb.com
обсуждение исходный текст
Ответ на Postgresql update op is very very slow  ("jay" <jackem.mojx@alibaba-inc.com>)
Ответы 答复: [PERFORM] Postgresql update op is very very slow
Список pgsql-performance
jay wrote:
> I've a table with about 34601755 rows ,when I execute 'update msg_table set
> type=0;' is very very slow, cost several hours, but still not complete?
>
> Why postgresql is so slowly? Is the PG MVCC problem?

Possibly. Because of MVCC, a full-table update will actually create a
new version of each row.

I presume that's a one-off query, or a seldom-run batch operation, and
not something your application needs to do often. In that case, you
could drop all indexes, and recreate them after the update, which should
help a lot:

BEGIN;
DROP INDEX <index name>, <index name 2>, ...; -- for each index
UPDATE msg_table SET type = 0;
CREATE INDEX ... -- Recreate indexes
COMMIT;

Or even better, instead of using UPDATE, do a SELECT INTO a new table,
drop the old one, and rename the new one in its place. That has the
advantage that the new table doesn't contain the old row version, so you
don't need to vacuum right away to reclaim the space.

Actually, there's an even more clever trick to do roughly the same thing:

ALTER TABLE msg_table ALTER COLUMN type TYPE int4 USING 0;

(assuming type is int4, replace with the actual data type if necessary)

This will rewrite the table, similar to a DROP + CREATE, and rebuild all
indexes. But all in one command.

--
   Heikki Linnakangas
   EnterpriseDB   http://www.enterprisedb.com

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

Предыдущее
От: Nikhils
Дата:
Сообщение: Re: PostgreSQL and Ruby on Rails - better accessibility
Следующее
От: Henrik
Дата:
Сообщение: Hardware suggestions for high performance 8.3