diff options
author | Michael Paquier <michael@paquier.xyz> | 2019-08-26 11:14:18 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2019-08-26 11:14:18 +0900 |
commit | 71d84efba714db3b8a330a54be15c4d385719ad6 (patch) | |
tree | ed75656ab6a856695db6adad11944aeaddea888f /src/bin/scripts/scripts_parallel.c | |
parent | 6338fa3e715ad1cb12e0760bf73ffc2a906098ea (diff) | |
download | postgresql-71d84efba714db3b8a330a54be15c4d385719ad6.tar.gz postgresql-71d84efba714db3b8a330a54be15c4d385719ad6.zip |
Fix error handling of vacuumdb and reindexdb when running out of fds
When trying to use a high number of jobs, vacuumdb (and more recently
reindexdb) 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
Diffstat (limited to 'src/bin/scripts/scripts_parallel.c')
-rw-r--r-- | src/bin/scripts/scripts_parallel.c | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/src/bin/scripts/scripts_parallel.c b/src/bin/scripts/scripts_parallel.c index 10379a1f99b..55bda9044b4 100644 --- a/src/bin/scripts/scripts_parallel.c +++ b/src/bin/scripts/scripts_parallel.c @@ -95,20 +95,6 @@ select_loop(int maxFd, fd_set *workerset, bool *aborting) } /* - * ParallelSlotsMax - * Returns the maximum number of parallel slots supported. - * - * Note that this is included here as FD_SETSIZE is declared in sys/select.h - * per POSIX. - */ -int -ParallelSlotsMax(void) -{ - /* leave some room for pre-existing fds */ - return FD_SETSIZE - 10; -} - -/* * ParallelSlotsGetIdle * Return a connection slot that is ready to execute a command. * @@ -246,6 +232,18 @@ ParallelSlotsSetup(const char *dbname, const char *host, const char *port, { conn = connectDatabase(dbname, host, port, username, prompt_password, progname, echo, false, true); + + /* + * Fail and exit immediately if trying to use a socket in an + * unsupported range. POSIX requires open(2) to use the lowest + * unused file descriptor and the hint given relies on that. + */ + if (PQsocket(conn) >= FD_SETSIZE) + { + pg_log_fatal("too many jobs for this platform -- try %d", i); + exit(1); + } + init_slot(slots + i, conn); } } |