Re: Index scan startup time - Mailing list pgsql-performance

From Tom Lane
Subject Re: Index scan startup time
Date
Msg-id 14952.1143732263@sss.pgh.pa.us
Whole thread Raw
In response to Re: Index scan startup time  (Peter Eisentraut <peter_e@gmx.net>)
List pgsql-performance
Peter Eisentraut <peter_e@gmx.net> writes:
> So from when to when is the startup time (the "x" in "x..y") actually
> measured?  When does the clock start ticking and when does it stop?
> That is what's confusing me.

The planner thinks of the startup time (the first estimated-cost number)
as the time before the output scan can start, eg, time to do the sort in
a sort node.  EXPLAIN ANALYZE however reports the actual time until the
first output row is delivered.  When you've got a filter applied to the
node result, as in this case, there can be a material difference between
the two definitions, because of the time spent scanning rows that don't
get past the filter.

            regards, tom lane

pgsql-performance by date:

Previous
From: Tom Lane
Date:
Subject: Re: CREATE INDEX rather sluggish
Next
From: Simon Riggs
Date:
Subject: Re: CREATE INDEX rather sluggish