Re: Identical query slower on 8.4 vs 8.3

From: Patrick Donlin <pdonlin(at)oaisd(dot)org>
To: Merlin Moncure <mmoncure(at)gmail(dot)com>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: Identical query slower on 8.4 vs 8.3
Date: 2010-07-15 18:48:04
Message-ID: 1045407518.13317091279219684833.JavaMail.root@mm-mailstore02.merit.edu
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Thanks everyone for the input so far, Merlin's comment about the network gave me one of those duh moments since I have been running these queries remotely using pgadmin. I will experiment with this more tomorrow/Monday along with the other suggestions that have been posted to hopefully narrow it down. Running the query from my webserver yielded much better times, but from a quick look it seems my 8.4 server is still a bit slower. I will share more details as I dig into it more tomorrow or Monday.

-Patrick

----- Original Message -----
From: "Merlin Moncure" <mmoncure(at)gmail(dot)com>
To: "Patrick Donlin" <pdonlin(at)oaisd(dot)org>
Cc: "Kevin Grittner" <Kevin(dot)Grittner(at)wicourts(dot)gov>, pgsql-performance(at)postgresql(dot)org
Sent: Thursday, July 15, 2010 12:04:13 PM GMT -05:00 US/Canada Eastern
Subject: Re: [PERFORM] Identical query slower on 8.4 vs 8.3

your plans are identical as is the runtime basically. this means you
might want to consider the following possibilities:
*) operator error :-)
*) cache effects
*) environmental factors on the server at the time
*) network/client issues

I say network issues because if your explain analyze (which actually
does run the entire query) is significantly faster than the full
query, then we have to consider that the formatting and transfer of
the data back to the client (even if it's on the same box) becomes
suspicious. If you've eliminated other possibilities, try running
other big, trivially planned, mucho result returning queries (like
select * from table) on both servers and comparing times.

merlin

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message Ben Chobot 2010-07-15 19:35:16 Re: performance on new linux box
Previous Message Benjamin Krajmalnik 2010-07-15 17:27:46 Question of using COPY on a table with triggers