Re: Query much slower when run from postgres function

From: Віталій Тимчишин <tivv00(at)gmail(dot)com>
To:
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: Query much slower when run from postgres function
Date: 2009-03-16 13:04:18
Message-ID: 331e40660903160604v3a47fabfqef2bdd75289edb4e@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc pgsql-performance

2009/3/14 decibel <decibel(at)decibel(dot)org>

> On Mar 10, 2009, at 12:20 PM, Tom Lane wrote:
>
>> fche(at)redhat(dot)com (Frank Ch. Eigler) writes:
>>
>>> For a prepared statement, could the planner produce *several* plans,
>>> if it guesses great sensitivity to the parameter values? Then it
>>> could choose amongst them at run time.
>>>
>>
>> We've discussed that in the past. "Choose at runtime" is a bit more
>> easily said than done though --- you can't readily flip between plan
>> choices part way through, if you've already emitted some result rows.
>>
>
> True, but what if we planned for both high and low cardinality cases,
> assuming that pg_stats indicated both were a possibility? We would have to
> store multiple plans for one prepared statement, which wouldn't work well
> for more complex queries (if you did high and low cardinality estimates for
> each table you'd end up with 2^r plans, where r is the number of relations),
> so we'd need a way to cap it somehow. Of course, whether that's easier than
> having the ability to throw out a current result set and start over with a
> different plan is up for debate...
>
> On a related note, I wish there was a way to tell plpgsql not to pre-plan a
> query. Sure, you can use EXECUTE, but building the query plan is a serious
> pain in the rear.
>

I'd say it would be great for PostgreSQL to replan each execution of query
automatically if execution plan tells it would take some factor (say, x100,
configurable) more time to execute query then to plan. In this case it would
not spend many time planning for small queries, but will use the most
efficient plan possible for long queries. And even if a query can't be run
better, it would spend only 1/factor time more (1% more time for factor of
100).

In response to

Browse pgsql-jdbc by date

  From Date Subject
Next Message Peter 2009-03-16 13:50:22 Re: Totally weird behaviour in org.postgresql.Driver
Previous Message Dave Cramer 2009-03-16 09:57:29 Re: Totally weird behaviour in org.postgresql.Driver

Browse pgsql-performance by date

  From Date Subject
Next Message Greg Smith 2009-03-16 15:04:23 Re: Postgres benchmarking with pgbench
Previous Message ml@bortal.de 2009-03-16 10:48:36 Postgres benchmarking with pgbench