aboutsummaryrefslogtreecommitdiff
path: root/src/bin/scripts
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2019-08-26 11:14:24 +0900
committerMichael Paquier <michael@paquier.xyz>2019-08-26 11:14:24 +0900
commit63fc3b124008fa626b9f2e57f2211b9c3fb9a4ba (patch)
treec610606d3d4b1e835877eccda92ea8a8089e61eb /src/bin/scripts
parent363382521eb26106587c7dab7f439636c3a6876a (diff)
downloadpostgresql-63fc3b124008fa626b9f2e57f2211b9c3fb9a4ba.tar.gz
postgresql-63fc3b124008fa626b9f2e57f2211b9c3fb9a4ba.zip
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
Diffstat (limited to 'src/bin/scripts')
-rw-r--r--src/bin/scripts/vacuumdb.c18
1 files changed, 12 insertions, 6 deletions
diff --git a/src/bin/scripts/vacuumdb.c b/src/bin/scripts/vacuumdb.c
index df2a315f958..0c434c68711 100644
--- a/src/bin/scripts/vacuumdb.c
+++ b/src/bin/scripts/vacuumdb.c
@@ -207,12 +207,6 @@ main(int argc, char *argv[])
pg_log_error("number of parallel jobs must be at least 1");
exit(1);
}
- if (concurrentCons > FD_SETSIZE - 1)
- {
- pg_log_error("too many parallel jobs requested (maximum: %d)",
- FD_SETSIZE - 1);
- exit(1);
- }
break;
case 2:
maintenance_db = pg_strdup(optarg);
@@ -633,6 +627,18 @@ vacuum_one_database(const char *dbname, vacuumingOptions *vacopts,
{
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);
}
}