Re: [HACKERS] asynchronous execution

Поиск
Список
Период
Сортировка
Искать
От
Antonin Houska
Тема
Re: [HACKERS] asynchronous execution
Дата
Msg-id
4579.1498638234@localhost
Ответ на
Список
Дерево обсуждения
Re: asynchronous execution Robert Haas <robertmhaas@gmail.com>
Re: asynchronous execution Kyotaro HORIGUCHI <horiguchi.kyotaro@lab.ntt.co.jp>
Re: asynchronous execution Kyotaro HORIGUCHI <horiguchi.kyotaro@lab.ntt.co.jp>
Re: asynchronous execution Kyotaro HORIGUCHI <horiguchi.kyotaro@lab.ntt.co.jp>
Re: asynchronous execution Kyotaro HORIGUCHI <horiguchi.kyotaro@lab.ntt.co.jp>
Re: asynchronous execution Kyotaro HORIGUCHI <horiguchi.kyotaro@lab.ntt.co.jp>
Re: asynchronous execution Kyotaro HORIGUCHI <horiguchi.kyotaro@lab.ntt.co.jp>
Re: asynchronous execution Kyotaro HORIGUCHI <horiguchi.kyotaro@lab.ntt.co.jp>
Re: asynchronous execution Kyotaro HORIGUCHI <horiguchi.kyotaro@lab.ntt.co.jp>
Re: [HACKERS] asynchronous execution Kyotaro HORIGUCHI <horiguchi.kyotaro@lab.ntt.co.jp>
Re: [HACKERS] asynchronous execution Kyotaro HORIGUCHI <horiguchi.kyotaro@lab.ntt.co.jp>
Re: [HACKERS] asynchronous execution Antonin Houska <ah@cybertec.at>
Re: [HACKERS] asynchronous execution Corey Huinker <corey.huinker@gmail.com>
Re: [HACKERS] asynchronous execution Amit Langote <Langote_Amit_f8@lab.ntt.co.jp>
Re: [HACKERS] asynchronous execution Kyotaro HORIGUCHI <horiguchi.kyotaro@lab.ntt.co.jp>
Re: [HACKERS] asynchronous execution Kyotaro HORIGUCHI <horiguchi.kyotaro@lab.ntt.co.jp>
Re: [HACKERS] asynchronous execution Kyotaro HORIGUCHI <horiguchi.kyotaro@lab.ntt.co.jp>
Re: [HACKERS] asynchronous execution Corey Huinker <corey.huinker@gmail.com>
Re: [HACKERS] asynchronous execution Amit Langote <Langote_Amit_f8@lab.ntt.co.jp>
Re: [HACKERS] asynchronous execution Corey Huinker <corey.huinker@gmail.com>
Re: [HACKERS] asynchronous execution Corey Huinker <corey.huinker@gmail.com>
Re: [HACKERS] asynchronous execution Amit Langote <Langote_Amit_f8@lab.ntt.co.jp>
Re: [HACKERS] asynchronous execution Corey Huinker <corey.huinker@gmail.com>
Re: [HACKERS] asynchronous execution Amit Langote <Langote_Amit_f8@lab.ntt.co.jp>
Re: [HACKERS] asynchronous execution Corey Huinker <corey.huinker@gmail.com>
Re: [HACKERS] asynchronous execution Tom Lane <tgl@sss.pgh.pa.us>
Re: [HACKERS] asynchronous execution Corey Huinker <corey.huinker@gmail.com>
Re: [HACKERS] asynchronous execution Kyotaro HORIGUCHI <horiguchi.kyotaro@lab.ntt.co.jp>
Re: [HACKERS] asynchronous execution Kyotaro HORIGUCHI <horiguchi.kyotaro@lab.ntt.co.jp>
Re: asynchronous execution Corey Huinker <corey.huinker@gmail.com>
Re: asynchronous execution Kyotaro HORIGUCHI <horiguchi.kyotaro@lab.ntt.co.jp>
Re: [HACKERS] asynchronous execution Kyotaro HORIGUCHI <horiguchi.kyotaro@lab.ntt.co.jp>
Re: [HACKERS] asynchronous execution Kyotaro HORIGUCHI <horiguchi.kyotaro@lab.ntt.co.jp>
Re: [HACKERS] asynchronous execution Kyotaro HORIGUCHI <horiguchi.kyotaro@lab.ntt.co.jp>
Re: [HACKERS] asynchronous execution Antonin Houska <ah@cybertec.at>
Re: [HACKERS] asynchronous execution Kyotaro HORIGUCHI <horiguchi.kyotaro@lab.ntt.co.jp>
Re: [HACKERS] asynchronous execution Antonin Houska <ah@cybertec.at>
Re: [HACKERS] asynchronous execution Kyotaro HORIGUCHI <horiguchi.kyotaro@lab.ntt.co.jp>
Re: [HACKERS] asynchronous execution Kyotaro HORIGUCHI <horiguchi.kyotaro@lab.ntt.co.jp>
Re: [HACKERS] asynchronous execution Robert Haas <robertmhaas@gmail.com>
Re: [HACKERS] asynchronous execution Tom Lane <tgl@sss.pgh.pa.us>
Re: [HACKERS] asynchronous execution Robert Haas <robertmhaas@gmail.com>
Re: [HACKERS] asynchronous execution Kyotaro HORIGUCHI <horiguchi.kyotaro@lab.ntt.co.jp>
Re: [HACKERS] asynchronous execution Antonin Houska <ah@cybertec.at>
Re: [HACKERS] asynchronous execution Kyotaro HORIGUCHI <horiguchi.kyotaro@lab.ntt.co.jp>
Re: [HACKERS] asynchronous execution Amit Langote <Langote_Amit_f8@lab.ntt.co.jp>
Re: [HACKERS] asynchronous execution Kyotaro HORIGUCHI <horiguchi.kyotaro@lab.ntt.co.jp>
Re: [HACKERS] asynchronous execution Michael Paquier <michael.paquier@gmail.com>
Re: [HACKERS] asynchronous execution Kyotaro HORIGUCHI <horiguchi.kyotaro@lab.ntt.co.jp>
Re: asynchronous execution Amit Khandekar <amitdkhan.pg@gmail.com>
Re: asynchronous execution Kyotaro HORIGUCHI <horiguchi.kyotaro@lab.ntt.co.jp>
Re: asynchronous execution Robert Haas <robertmhaas@gmail.com>
Re: asynchronous execution Amit Khandekar <amitdkhan.pg@gmail.com>
Re: asynchronous execution Robert Haas <robertmhaas@gmail.com>
Kyotaro HORIGUCHI  wrote:

> The patch got conflicted. This is a new version just rebased to
> the current master. Furtuer amendment will be taken later.

Can you please explain this part of make_append() ?

/* Currently async on partitioned tables is not available */
Assert(nasyncplans == 0 || partitioned_rels == NIL);

I don't think the output of Append plan is supposed to be ordered even if the
underlying relation is partitioned. Besides ordering, is there any other
reason not to use the asynchronous execution?

And even if there was some, the planner should ensure that executor does not
fire the assertion statement above. The script attached shows an example how
to cause the assertion failure.

-- 
Antonin Houska
Cybertec Schönig & Schönig GmbH
Gröhrmühlgasse 26
A-2700 Wiener Neustadt
Web: http://www.postgresql-support.de, http://www.cybertec.at


-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers
В списке pgsql-hackers по дате отправления
От: Beena Emerson
Дата:
От: Lelisa Diriba
Дата:
FAQ