Re: Major performance problem after upgrade from 8.3 to 8.4 - Mailing list pgsql-performance

From Merlin Moncure
Subject Re: Major performance problem after upgrade from 8.3 to 8.4
Date
Msg-id AANLkTi=18cbt7UqUy49_=sSkC6fxxGtynV=_9vviMu6Q@mail.gmail.com
Whole thread Raw
In response to Re: Major performance problem after upgrade from 8.3 to 8.4  (Gerhard Wiesinger <lists@wiesinger.com>)
Responses Re: Major performance problem after upgrade from 8.3 to 8.4  (Gerhard Wiesinger <lists@wiesinger.com>)
List pgsql-performance
On Wed, Sep 15, 2010 at 2:32 AM, Gerhard Wiesinger <lists@wiesinger.com> wrote:
> On Tue, 14 Sep 2010, Merlin Moncure wrote:
>>
>> np -- this felt particularly satisfying for some reason. btw, I think
>> you have some more low hanging optimization fruit.  I think (although
>> it would certainly have to be tested) hiding your attribute
>> description under keyid is buying you nothing but headaches.  If you
>> used natural key style, making description primary key of
>> key_description (or unique), and had log_details have a description
>> column that directly referenced that column, your subquery:
>>
>> (
>>  SELECT value FROM log_details d WHERE l.id = d.fk_id AND d.fk_keyid =
>>  (
>>   SELECT keyid FROM key_description WHERE description =
>> 'Kesselsolltemperatur'
>>  )
>> ) AS Kesselsolltemperatur,
>>
>> would look like this:
>> (
>>  SELECT value FROM log_details d WHERE l.id = d.fk_id AND
>> d.description = 'Kesselsolltemperatur'
>> ) AS Kesselsolltemperatur,
>>
>> your index on log_details(fk_id, description) is of course fatter, but
>> quite precise...does require rebuilding your entire dataset however.
>> food for thought.
>
> I think your suggestion might be slower because the WHERE clause and
> possible JOINS with BIGINT is much faster (especially when a lot of data is
> queried) than with a VARCHAR. With the latest query plan key_description is
> only queried once per subselect which is perfect. I've also chosen that
> indirection that I can change description without changing too much in data
> model and all data rows on refactoring.

You're not joining -- you're filtering (and your assumption that
bigint is always going to be faster is quite debatable depending on
circumstances).  The join is skipped because of the key (yes, it's
cheap lookup, but w/50 columns each doing it, nothing is cheap).

merlin

pgsql-performance by date:

Previous
From:
Date:
Subject: POSTGRES error
Next
From: "Kevin Grittner"
Date:
Subject: Re: POSTGRES error