Re: Postgresql update op is very very slow - Mailing list pgsql-performance

From Heikki Linnakangas
Subject Re: Postgresql update op is very very slow
Date
Msg-id 486219B6.7050003@enterprisedb.com
Whole thread Raw
In response to Postgresql update op is very very slow  ("jay" <jackem.mojx@alibaba-inc.com>)
Responses 答复: [PERFORM] Postgresql update op is very very slow
List 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 by date:

Previous
From: Nikhils
Date:
Subject: Re: PostgreSQL and Ruby on Rails - better accessibility
Next
From: Henrik
Date:
Subject: Hardware suggestions for high performance 8.3