Re: [PERFORM] Speed differences between in executing the same query - Mailing list pgsql-performance

From Tom Lane
Subject Re: [PERFORM] Speed differences between in executing the same query
Date
Msg-id 8393.1494511618@sss.pgh.pa.us
Whole thread Raw
In response to [PERFORM] Speed differences between in executing the same query  (plukovic <petar@sobot.biz>)
Responses Re: [PERFORM] Speed differences between in executing the same query  (plukovic <petar@sobot.biz>)
List pgsql-performance
plukovic <petar@sobot.biz> writes:
> I have a weird case of query execution performance here.

My first thought is that you are getting a bad plan because of this
estimation error:

>                     ->  Index Scan using uk_TBL_sk0_account_code on TBL_sk
> sk2_  (cost=0.14..12.53 rows=1 width=426) (actual time=1.036..1.084 rows=50
> loops=1)
>                           Index Cond: (acco_id = 1)

That rowcount estimate is off by 50X, resulting in 50X errors for the
joins above it too, and in misguided choices of nestloops when some
other join method would be better.  Probably things would improve with
a better estimate.  Maybe you need to increase the stats target for
that table ... or maybe it just hasn't been ANALYZEd lately?

            regards, tom lane


pgsql-performance by date:

Previous
From: plukovic
Date:
Subject: [PERFORM] Speed differences between in executing the same query
Next
From: plukovic
Date:
Subject: Re: [PERFORM] Speed differences between in executing the same query