I'm trying to optimise a PostgreSQL 8.4 query. After greatly simplifying the original query, trying to figure out what's making it choose a bad query plan, I got to the point where running the query under EXPLAIN ANALYZE takes only 0.5s, while running it normally takes 2.8s. It seems obvious then, that what EXPLAIN ANALYZE is showing me is not what it normally does, so whatever it's showing me is useless, isn't it? What is going on here and how do I see what it's really doing?

link|improve this question

56% accept rate
1  
Is the query returning lots of data? My understanding is that EXPLAIN ANALYZE discards the data -- perhaps you're gaining back time not having to transfer it through a pipe or network connection? – Thanatos Aug 6 '10 at 2:26
About 75,000 rows so I wouldn't say "lots". Certainly shouldn't take much time on a LAN. – EMP Aug 6 '10 at 2:27
1  
Apparently that's enough data that it takes about 1.3s (which would be about 16.25MB or approx 220KB/row) if you're achieving a transfer rate of 100Mbps – Mark Elliot Aug 6 '10 at 2:30
1  
No, the rows are very small. More like 50 bytes per row. – EMP Aug 6 '10 at 3:49
feedback

1 Answer

Most likely, the data pages are in the OS disk cache when you are manually running with EXPLAIN ANALYZE in order to try and optimize the query. When run in a normal environment, the pages probably aren't in the cache already and have to be fetched from disk, increasing the runtime.

link|improve this answer
I don't understand - if they were in the cache when I ran EXPLAIN ANALYZE then why aren't they in there when I run without EXPLAIN immediately after? – EMP Aug 8 '10 at 23:41
1  
Sorry, I misunderstood the order. Now, I would say that it's more likely that the difference is network throughput. I recommend adding a LIMIT clause and trying varying amounts of records (like 1,5,10,100,1000,10000, etc) until you reach your max and compare the times. I'm guessing it will scale roughly as "a+(t*n)" where a is your EXPLAIN ANALYZE time, t is a rough constant of rows per second transferred and n is your number of rows. Obviously, this won't be exact, but I'm guessing it would trend towards it. – Matthew Wood Aug 9 '10 at 14:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.