Skip site navigation (1) Skip section navigation (2)

Peripheral Links

Header And Logo

PostgreSQL
| The world's most advanced open source database.

Site Navigation

Search for
  Advanced Search

Re: Why so slow?



On April 28, 2006 04:41 am, "Bealach-na Bo" <bealach_na_bo(at)hotmail(dot)com> 
wrote:
> INFO:  index "job_log_id_pkey" now contains 10496152 row versions in
> 59665 pages

See the 10496152  above?  That means you have 10496152 rows of data in your 
table.  If those, only 365000 are alive.  That means you have basically 
never vacuumed this table before, correct?  

Every update or delete creates a new dead row.  count(*) scans the whole 
table, dead rows included.  That's why it takes so long, the table acts as 
though it has 10496152 rows when doing sequential scans.

Do a VACCUM FULL on it or CLUSTER it on on a index, both of which will empty 
out all the free space and make it behave as it should.  Note; VACUUM FULL 
will take quite a while and requires an exclusive lock on the table.  
CLUSTER also requires an exclusive lock but should be a lot faster for this 
table.

Oh, and get autovacuum setup and working, posthaste.

-- 
No long, complicated contracts. No actuarial tables to pore over.  Social
Security operates on a very simple principle: the politicians take your 
money from you and squander it "




Home | Main Index | Thread Index

Privacy Policy | PostgreSQL Archives hosted by Command Prompt, Inc. | Designed by tinysofa
Copyright © 1996 – 2007 PostgreSQL Global Development Group