Re: REINDEX DATABASE - Mailing list pgsql-sql

From Christopher Browne
Subject Re: REINDEX DATABASE
Date
Msg-id m3vf2xk8md.fsf@mobile.int.cbbrowne.com
Whole thread Raw
In response to Closes Match  (Christian Rusa <christian@rusa.at>)
Responses Re: REINDEX DATABASE
List pgsql-sql
> Hello
>
> Would you like to advice to use REINDEX DATABASE on regular basis ?
>
> if (yes)
> how it should be connected with VACUUM FULL ANALYZE which is run
> regularly ?  (reindex before vacuum or vacuum before reindex?)
>
> else
> haw to determine _when_ to run REINDEX ?

If you are doing ordinary VACUUM ANALYZE frequently enough, it
shouldn't be necessary to either VACUUM FULL or REINDEX.

Back in the 7.2 days, there were sorts of update patterns that would
mandate reindexing every so often, as you could get cases where index
pages would be very sparsely populated.  That was alleviated in
version 7.3, I believe, and was clearly evident in 7.4.

You know you need to REINDEX if analysis of an index shows that it is
sparsely populated.  This generally shows up if you do an analyze on
the table and find an index has more pages than tuples.

But if you run VACUUM reasonably frequently, this shouldn't be
necessary...
-- 
let name="cbbrowne" and tld="acm.org" in String.concat "@" [name;tld];;
http://cbbrowne.com/info/rdbms.html
Rules of  the Evil  Overlord #153.  "My Legions of  Terror will  be an
equal-opportunity employer. Conversely, when  it is prophesied that no
man  can defeat  me, I  will  keep in  mind the  increasing number  of
non-traditional gender roles." <http://www.eviloverlord.com/>


pgsql-sql by date:

Previous
From: "Eugene E."
Date:
Subject: REINDEX DATABASE
Next
From: Achilleus Mantzios
Date:
Subject: Re: REINDEX DATABASE