Re: Vacuum Full - stops responding(?)

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Greg Stark <gsstark(at)mit(dot)edu>
Cc: Scott Marlowe <scott(dot)marlowe(at)gmail(dot)com>, Krowa Krowax <krowa333(at)gmail(dot)com>, pgsql-admin(at)postgresql(dot)org
Subject: Re: Vacuum Full - stops responding(?)
Date: 2009-10-20 03:56:45
Message-ID: 17908.1256011005@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Greg Stark <gsstark(at)mit(dot)edu> writes:
> The run-time of CLUSTER doesn't vary very much based on whether the
> data is already in index order or not. The number of passes only grows
> like log(n) of the size of your data and if you set
> maintenance_work_mem large enough (somewhere around 100MB-1GB) the
> constants are small enough that you're unlikely to even outgrow a
> single pass (plus a final merge though)

Uh ... what? It's not based on the sort code, unless someone rewrote it
since I looked last. It's an index scan and will definitely depend on
the index ordering.

regards, tom lane

In response to

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message Greg Stark 2009-10-20 04:02:57 Re: Vacuum Full - stops responding(?)
Previous Message Greg Stark 2009-10-20 03:46:10 Re: Vacuum Full - stops responding(?)