Re: Timing overhead and Linux clock sources - Mailing list pgsql-hackers

From Robert Haas
Subject Re: Timing overhead and Linux clock sources
Date
Msg-id CA+TgmoZ7X+7z7Z58n2Z3bxaWSfb=QKqRhcdByScymvY4VTtyng@mail.gmail.com
Whole thread Raw
In response to Timing overhead and Linux clock sources  (Greg Smith <greg@2ndQuadrant.com>)
Responses Re: Timing overhead and Linux clock sources  (Greg Smith <greg@2ndQuadrant.com>)
List pgsql-hackers
On Tue, Dec 6, 2011 at 9:58 PM, Greg Smith <greg@2ndquadrant.com> wrote:
> -If you have a system with a working TSC clock source (timing data is pulled
> right from the CPU), timing overhead is reasonable enough that you might
> turn it on even for things that happen frequently, such as the buffer I/O
> timing patch enables.

Even the TSC stuff looks expensive enough that you wouldn't to pay the
full overhead all the time on a busy system, but of course we probably
wouldn't want to do that anyway.  EXPLAIN ANALYZE is extremely
expensive mostly because it's timing entry and exit into every plan
node, and the way our executor works, those are very frequent
operations.  But you could probably gather more coarse-grained
statistics, like separating parse, plan, and execute time for each
query, without breaking a sweat.  I'm not sure about buffer I/Os - on
a big sequential scan, you might do quite a lot of those in a pretty
tight loop.  That's not an argument against adding the option, though,
assuming that the default setting is off.  And, certainly, I agree
with you that it's worth trying to document some of this stuff so that
people don't have to try to figure it out themselves (uggh!).

One random thought: I wonder if there's a way for us to just time
every N'th event or something like that, to keep the overhead low.
The problem is that you might not get accurate results if, say, every
2N'th event takes much longer than normal - you'll either hit all the
long ones, or miss them all.  You could "fix" that by using a
pseudorandom number generator to decide whether to time each event,
but that's got it's own overhead...

-- 
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company


pgsql-hackers by date:

Previous
From: Robert Haas
Date:
Subject: Re: Large number of open(2) calls with bulk INSERT into empty table
Next
From: Robert Haas
Date:
Subject: Re: Inlining comparators as a performance optimisation