Re: APR 1.0 released

Поиск
Список
Период
Сортировка
От Mike Rylander
Тема Re: APR 1.0 released
Дата
Msg-id b918cf3d04100813187dae55d7@mail.gmail.com
обсуждение исходный текст
Ответ на Re: APR 1.0 released  (Bruce Momjian <pgman@candle.pha.pa.us>)
Ответы Re: APR 1.0 released  (Sailesh Krishnamurthy <sailesh@cs.berkeley.edu>)
Список pgsql-hackers
A while back I was looking the backend code in preparation to start
beginning to look at parallelization techniques for PG ;)... My
thought was instead of trying to parallelize each individual plan node
(multi-process sort, etc.) I would look at creating worker
threads/processes for each plan node as a whole.  For example, take a
plan that looks like this:
                                                                QUERY
PLAN

---------------------------------------------------------------------------------------------------------------------------------------------Subquery
Scanmetarecord_field_entry_view  (cost=5.32..4038.80
 
rows=21 width=112)  ->  Append  (cost=5.32..4038.59 rows=21 width=112)        ->  Subquery Scan "*SELECT* 1"
(cost=5.32..5.33rows=1 width=74)              ->  HashAggregate  (cost=5.32..5.32 rows=1 width=74)
-> Index Scan using tmr_fe_field on
 
metarecord_title_field_entry  (cost=0.00..5.31 rows=1 width=74)                          Index Cond: (field =
'added_entry_author'::text)                         Filter: ((field_class = 'title'::text) AND
 
(value ~~* '% joe %'::text))        ->  Subquery Scan "*SELECT* 2"  (cost=4031.02..4031.20
rows=18 width=62)              ->  HashAggregate  (cost=4031.02..4031.02 rows=18 width=62)                    ->  Seq
Scanon metarecord_author_field_entry 
 
(cost=0.00..4030.79 rows=18 width=62)                          Filter: ((field_class = 'author'::text) AND
(field = 'added_entry_author'::text) AND (value ~~* '% joe %'::text))        ->  Subquery Scan "*SELECT* 3"
(cost=2.03..2.04rows=1 width=81)              ->  HashAggregate  (cost=2.03..2.03 rows=1 width=81)
-> Index Scan using smr_fe_field on
 
metarecord_subject_field_entry  (cost=0.00..2.02 rows=1 width=81)                          Index Cond: (field =
'added_entry_author'::text)                         Filter: ((field_class = 'subject'::text)
 
AND (value ~~* '% joe %'::text))        ->  Subquery Scan "*SELECT* 4"  (cost=0.01..0.02 rows=1 width=112)
-> HashAggregate  (cost=0.01..0.01 rows=1 width=112)                    ->  Seq Scan on metarecord_misc_field_entry 
 
(cost=0.00..0.00 rows=1 width=112)                          Filter: ((field_class = 'misc'::text) AND
(field = 'added_entry_author'::text) AND (value ~~* '% joe %'::text))

The optimizer would look at each node as it walked down the tree and
see that 'Append' node has multiple peer child nodes.  It would look
at the cost estimate of the child nodes and if that cost is greater
that the total average cost across all nodes it would spin off a
worker thread/process to handle gathering the sub-resultset.

In any case, I've no time to even *start* looking into something like
that.  But even if I did, am I all wet?

--miker

On Fri, 8 Oct 2004 11:56:27 -0400 (EDT), Bruce Momjian
<pgman@candle.pha.pa.us> wrote:
> Neil Conway wrote:
> > Marc G. Fournier wrote:
> > > Do we have 'make backend thread safe' listed yet?  As I recall it, until
> > > that gets done, parallelization of anything was considered to be a
> > > relatively onerous task, no?
> >
> > ISTM there's no reason we couldn't parallelize query execution using the
> > same IPC techniques that we use now. What would be the advantage of
> > using threads instead?
> 
> Separate processes.  Yes, we could do that too and the item mentions that.
> 
> --
>   Bruce Momjian                        |  http://candle.pha.pa.us
>   pgman@candle.pha.pa.us               |  (610) 359-1001
>   +  If your life is a hard drive,     |  13 Roberts Road
>   +  Christ can be your backup.        |  Newtown Square, Pennsylvania 19073
> 
> ---------------------------(end of broadcast)---------------------------
> TIP 2: you can get off all lists at once with the unregister command
>     (send "unregister YourEmailAddressHere" to majordomo@postgresql.org)
>


В списке pgsql-hackers по дате отправления:

Предыдущее
От: James Robinson
Дата:
Сообщение: Thank you ...
Следующее
От: "Dann Corbit"
Дата:
Сообщение: Re: APR 1.0 released