Re: shared_buffers advice - Mailing list pgsql-performance

From Alvaro Herrera
Subject Re: shared_buffers advice
Date
Msg-id 20100316222058.GI3037@alvh.no-ip.org
Whole thread Raw
In response to Re: shared_buffers advice  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: shared_buffers advice
List pgsql-performance
Tom Lane escribió:
> Alvaro Herrera <alvherre@commandprompt.com> writes:
> > Tom Lane escribi�:
> >> Reorder to what, though?  You still have the problem that we don't know
> >> much about the physical layout on-disk.
>
> > Well, to block numbers as a first step.
>
> fsync is a file-based operation, and we know exactly zip about the
> relative positions of different files on the disk.

Doh, right, I was thinking in the sync-file-range kind of API.


> > We had a customer that had a
> > performance problem because they were inserting lots of data to TOAST
> > tables, causing very frequent extensions.  I kept wondering whether an
> > allocation policy that allocated several new blocks at a time could be
> > useful (but I didn't try it).  This would also alleviate fragmentation,
> > thus helping the physical layout be more similar to logical block
> > numbers.
>
> That's not going to do anything towards reducing the actual I/O volume.
> Although I suppose it might be useful if it just cuts the number of
> seeks.

Oh, they had no problems with I/O volume.  It was relation extension
lock that was heavily contended for them.

--
Alvaro Herrera                                http://www.CommandPrompt.com/
PostgreSQL Replication, Consulting, Custom Development, 24x7 support

pgsql-performance by date:

Previous
From: Tom Lane
Date:
Subject: Re: shared_buffers advice
Next
From: Tom Lane
Date:
Subject: Re: shared_buffers advice