pgsql: Improve the heuristic for ordering child paths of a parallelapp

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Improve the heuristic for ordering child paths of a parallelapp
Дата
Msg-id E1eYyb1-0006NN-70@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Improve the heuristic for ordering child paths of a parallel append.

Commit ab7271677 introduced code that attempts to order the child
scans of a Parallel Append node in a way that will minimize execution
time, based on total cost and startup cost.  However, it failed to
think hard about what to do when estimated costs are exactly equal;
a case that's particularly likely to occur when comparing on startup
cost.  In such a case the ordering of the child paths would be left
to the whims of qsort, an algorithm that isn't even stable.

We can improve matters by applying the rule used elsewhere in the
planner: if total costs are equal, sort on startup cost, and
vice versa.  When both cost estimates are exactly equal, rather
than letting qsort do something unpredictable, sort based on the
child paths' relids, which should typically result in sorting in
inheritance order.  (The latter provision requires inventing a
qsort-style comparator for bitmapsets, but maybe we'll have use
for that for other reasons in future.)

This results in a few plan changes in the select_parallel test,
but those all look more reasonable than before, when the actual
underlying cost numbers are taken into account.

Discussion: https://postgr.es/m/4944.1515446989@sss.pgh.pa.us

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/624e440a474420fa0d6cf26c19bfb256547ab71d

Modified Files
--------------
src/backend/nodes/bitmapset.c                 | 46 ++++++++++++++++++++++++++-
src/backend/optimizer/util/pathnode.c         | 34 ++++++++++++--------
src/include/nodes/bitmapset.h                 |  1 +
src/test/regress/expected/select_parallel.out | 14 ++++----
4 files changed, 73 insertions(+), 22 deletions(-)


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: While waiting for a condition variable,detect postmaster death.
Следующее
От: Peter Eisentraut
Дата:
Сообщение: pgsql: Update portal-related memory context names and API