pgsql: Fix error handling of vacuumdb when running out of fds

Поиск
Список
Период
Сортировка
От Michael Paquier
Тема pgsql: Fix error handling of vacuumdb when running out of fds
Дата
Msg-id E1i24Z8-0004Ed-K9@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix error handling of vacuumdb when running out of fds

When trying to use a high number of jobs, vacuumdb has only checked for
a maximum number of jobs used, causing confusing failures when running
out of file descriptors when the jobs open connections to Postgres.
This commit changes the error handling so as we do not check anymore for
a maximum number of allowed jobs when parsing the option value with
FD_SETSIZE, but check instead if a file descriptor is within the
supported range when opening the connections for the jobs so as this is
detected at the earliest time possible.

Also, improve the error message to give a hint about the number of jobs
recommended, using a wording given by the reviewers of the patch.

Reported-by: Andres Freund
Author: Michael Paquier
Reviewed-by: Andres Freund, Álvaro Herrera, Tom Lane
Discussion: https://postgr.es/m/20190818001858.ho3ev4z57fqhs7a5@alap3.anarazel.de
Backpatch-through: 9.5

Branch
------
REL_11_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/5d76c8037329bc259bc1633a09a8550c72650a77

Modified Files
--------------
src/bin/scripts/vacuumdb.c | 20 ++++++++++++++------
1 file changed, 14 insertions(+), 6 deletions(-)


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

Предыдущее
От: Peter Geoghegan
Дата:
Сообщение: Re: pgsql: Fix optimization of foreign-key on update actions
Следующее
От: Michael Paquier
Дата:
Сообщение: Re: pgsql: Fix error handling of vacuumdb and reindexdb when runningout of