Re: Speed differences between in executing the same query

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: plukovic <petar(at)sobot(dot)biz>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: Speed differences between in executing the same query
Date: 2017-05-11 14:06:58
Message-ID: 8393.1494511618@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

plukovic <petar(at)sobot(dot)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

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message plukovic 2017-05-11 17:11:27 Re: Speed differences between in executing the same query
Previous Message plukovic 2017-05-11 13:54:02 Speed differences between in executing the same query