Re: Behavior of debug_parallel_query=regress

Поиск
Список
Период
Сортировка
От David Rowley
Тема Re: Behavior of debug_parallel_query=regress
Дата
Msg-id CAApHDvoz7iwUAGbcEFYMi+vZbuPC-YDLnoPCqT37OfK9Nk8oAw@mail.gmail.com
обсуждение исходный текст
Ответ на Behavior of debug_parallel_query=regress  (Rafsun Masud Prince <rafsun.masud.99@gmail.com>)
Список pgsql-general
On Tue, 27 Feb 2024 at 23:23, Rafsun Masud Prince
<rafsun.masud.99@gmail.com> wrote:
> I am looking for a combination of the 'off' and 'regress' state, which is:
>     use parallel if improves performance + suppress context line (if
> parallel is used)
>
> Our project, Apache AGE, has a regression test for cypher MATCH queries. If
> that test is run repeatedly, the optimizer chooses a parallel plan at a random
> iteration (the issue is reported here:
> https://github.com/apache/age/issues/1439).
> In that case, the test fails due to the addition of 'CONTEXT: parallel worker'
> line in the diff.

In our regression tests, we normally adjust the parallel_setup_cost
and parallel_tuple_cost and maybe
min_parallel_index_scan_size/min_parallel_table_scan_size to force a
parallel plan when we want one.  If we don't want one, we'll set
max_parallel_workers_per_gather to 0.

I don't think the feature you propose would be any good as if the test
is looking at the EXPLAIN output, then the parallel plan won't look
anything like the serial plan.  All debug_parallel_query = 'regress'
does is add a Gather node with a single worker at the top of the plan
then suppress it from EXPLAIN.  In that case, the EXPLAIN looks the
same as the serial plan.  If the planner chooses a parallel plan of
its own accord, then it'd look nothing like the serial plan.

David



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

Предыдущее
От: Dominique Devienne
Дата:
Сообщение: PQgetCopyData() and "big" rows
Следующее
От: Dominique Devienne
Дата:
Сообщение: PQftype(copy_rset) returns zero OIDs???