From: | Pryscila B Guttoski <pryscila(dot)lista(at)gmail(dot)com> |
---|---|
To: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
Cc: | Neil Conway <neilc(at)samurai(dot)com>, pgsql-performance(at)postgresql(dot)org |
Subject: | Re: About method of PostgreSQL's Optimizer |
Date: | 2005-09-14 03:20:19 |
Message-ID: | cf0868bd05091320204b2d26aa@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers pgsql-performance |
Hi guys,
I really appreciate your suggestions abouts papers, specially this one:
http://citeseer.csail.mit.edu/371707.html
I found some answers on it, like this:
Q: Why the main query planner uses a nearly-exhaustive search?
A: (Page 20 - 4.2.2) ... up to about ten joins, dynamic programming is
preferred over the randomized algorithms because it is faster and it
guarantees finding the optimal plan. For larger queries, the situation is
reversed, and despite the probabilistic nature of the randomized algorithms,
their efficiency makes them the algorithms of choice.
Also in this paper, there is something about the A* algorithm very
interesting for my research.
I have one more question, sorry for doing it on this list, but only here I
had answers...
Does anybody hear anything about using PDDL ("Planning Domain Definition
Language") for query optimization?
[]'s,
Pryscila
On 9/13/05, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
>
> Neil Conway <neilc(at)samurai(dot)com> writes:
> > Pryscila B Guttoski wrote:
> >> On my master course, I'm studying the PostgreSQL's optimizer.
> >> I don't know if anyone in this list have been participated from the
> >> PostgreSQL's Optimizer development, but maybe someone can help me on
> this
> >> question.
>
> > pgsql-hackers might be more appropriate.
>
> AFAIK the basic code goes back to Berkeley days. Elein might possibly
> remember something about it, but no one else that's on the project now
> was involved then. The right place to look would be in the Berkeley
> project's publications:
>
> http://db.cs.berkeley.edu//papers/
>
> I agree with Neil's point that it's a spiritual descendant of System R
> and there's plenty of material about that in the general database
> literature.
>
> regards, tom lane
>
From | Date | Subject | |
---|---|---|---|
Next Message | Min Xu (Hsu) | 2005-09-14 03:22:44 | Re: Spinlocks, yet again: analysis and proposed patches |
Previous Message | Neil Conway | 2005-09-14 03:18:14 | Re: 8.1 system info / admin functions |
From | Date | Subject | |
---|---|---|---|
Next Message | Richard Huxton | 2005-09-14 09:13:58 | Re: Help with performance on current status column |
Previous Message | Jonah H. Harris | 2005-09-14 03:08:31 | Re: About method of PostgreSQL's Optimizer |