From: | Vitalii Tymchyshyn <tivv00(at)gmail(dot)com> |
---|---|
To: | Anssi Kääriäinen <anssi(dot)kaariainen(at)thl(dot)fi> |
Cc: | "pgsql-performance(at)postgresql(dot)org" <pgsql-performance(at)postgresql(dot)org> |
Subject: | Re: Disabling nested loops - worst case performance |
Date: | 2011-03-18 10:52:03 |
Message-ID: | 4D833953.7080607@gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-performance |
18.03.11 09:15, Anssi Kääriäinen написав(ла):
> Hello list,
>
> I am working on a Entity-Attribute-Value (EAV) database using
> PostgreSQL 8.4.7. The basic problem is that when joining multiple
> times different entities the planner thinks that there is vastly less
> rows to join than there is in reality and decides to use multiple
> nested loops for the join chain. This results in queries where when
> nested loops are enabled, query time is somewhere around 35 seconds,
> but with nested loops disabled, the performance is somewhere around
> 100ms. I don't think there is much hope for getting better statistics,
> as EAV is just not statistics friendly. The values of an attribute
> depend on the type of the attribute, and different entities have
> different attributes defined. The planner has no idea of these
> correlations.
Hello.
If your queries work on single attribute, you can try adding partial
indexes for different attributes. Note that in this case parameterized
statements may prevent index usage, so check also with attribute id inlined.
Best regards, Vitalii Tymchyshyn
From | Date | Subject | |
---|---|---|---|
Next Message | Anssi Kääriäinen | 2011-03-18 10:58:48 | Re: Disabling nested loops - worst case performance |
Previous Message | Scott Marlowe | 2011-03-18 09:11:38 | Re: Request for feedback on hardware for a new database server |