Re: slow dropping of tables, DropRelFileNodeBuffers, tas
Tom Lane <tgl@sss.pgh.pa.us>
From: Tom Lane <tgl@sss.pgh.pa.us>
To: Jeff Janes <jeff.janes@gmail.com>
Cc: Simon Riggs <simon@2ndquadrant.com>, Heikki Linnakangas <heikki.linnakangas@enterprisedb.com>, Sergey Koposov <koposov@ast.cam.ac.uk>, pgsql-hackers@postgresql.org
Date: 2012-06-07T20:52:01Z
Lists: pgsql-hackers
Jeff Janes <jeff.janes@gmail.com> writes: >> On 30 May 2012 12:10, Heikki Linnakangas >> <heikki.linnakangas@enterprisedb.com> wrote: >>> Also, I wonder if DropRelFileNodeBuffers() could scan the pool without >>> grabbing the spinlocks on every buffer? It could do an unlocked test first, >>> and only grab the spinlock on buffers that need to be dropped. >> Sounds less good and we'd need reasonable proof it actually did >> anything useful without being dangerous. > Doing an initial unlocked test speeds things up another 2.69 fold (on > top of 3.55 for your patch) for me, with 1GB of shared buffers. That > seems like it should be worthwhile. With shared_buffers set to 1GB, I see about a 2X reduction in the total time to drop a simple table, ie create table zit(f1 text primary key); drop table zit; (This table definition is chosen to ensure there's an index and a toast table involved, so several scans of the buffer pool are needed.) The DROP goes from about 40ms to about 20ms on a fairly recent Xeon desktop. So I'm convinced this is a win. I extended the patch to also cover DropDatabaseBuffers, FlushRelationBuffers, and FlushDatabaseBuffers, which have got the exact same type of full-pool scan loop, and committed it. regards, tom lane