Robert Haas <robertmhaas@xxxxxxxxx> writes: > On Tue, Oct 19, 2010 at 10:36 AM, Tom Lane <tgl@xxxxxxxxxxxxx> wrote: >> Those lseeks are for the purpose of detecting the current EOF >> location, ie, finding out whether some other backend has extended the >> file recently. We could get rid of them, but only at the cost of >> putting in some other communication mechanism instead. > I don't get it. Why would be doing that in a tight loop within a > single backend? Well, we weren't shown any context whatsoever about what the backend was actually doing ... but for example the planner likes to recheck the current physical size of each relation in a query, so that it's working with an up-to-date number. That could probably be avoided, since an estimate would be good enough as long as it wasn't horribly stale. But there are other places that *have* to have the accurate size, like seqscan startup. I doubt it was as tight a loop as all that. It wouldn't be hard at all to have an example where those lseeks are the only operations visible to strace, if all the data the backend needs is in shared buffers. regards, tom lane -- Sent via pgsql-performance mailing list (pgsql-performance@xxxxxxxxxxxxxx) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-performance