Jeff Janes <jeff.ja...@gmail.com> writes: >> On 30 May 2012 12:10, Heikki Linnakangas >> <heikki.linnakan...@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 -- Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-hackers