pgsql: Propagate parallel VACUUM's buffer access strategy.

Поиск
Список
Период
Сортировка
От Peter Geoghegan
Тема pgsql: Propagate parallel VACUUM's buffer access strategy.
Дата
Msg-id E1lTXEQ-0008Ie-Pr@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Propagate parallel VACUUM's buffer access strategy.

Parallel VACUUM relied on global variable state from the leader process
being propagated to workers on fork().  Commit b4af70cb removed most
uses of global variables inside vacuumlazy.c, but did not account for
the buffer access strategy state.

To fix, propagate the state through shared memory instead.

Per buildfarm failures on elver, curculio, and morepork.

Many thanks to Thomas Munro for off-list assistance with this issue.

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/49f49defe7c0a330cca084de5da14ccdfdafc6a3

Modified Files
--------------
src/backend/access/heap/vacuumlazy.c | 7 +++++++
1 file changed, 7 insertions(+)


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

Предыдущее
От: Peter Geoghegan
Дата:
Сообщение: Re: pgsql: Simplify state managed by VACUUM.
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Support INCLUDE'd columns in SP-GiST.