mirror of
https://github.com/postgres/postgres.git
synced 2025-07-31 22:04:40 +03:00
Teach vacuumlo to limit number of removals, via new -l option.
Also, handle failure better: don't just blindly keep trying to delete stuff after the transaction has already failed. Tim Lewis, reviewed by Josh Kupershmidt, with further hacking by me.
This commit is contained in:
@ -48,6 +48,7 @@ struct _param
|
|||||||
char *pg_host;
|
char *pg_host;
|
||||||
int verbose;
|
int verbose;
|
||||||
int dry_run;
|
int dry_run;
|
||||||
|
long transaction_limit;
|
||||||
};
|
};
|
||||||
|
|
||||||
int vacuumlo(char *, struct _param *);
|
int vacuumlo(char *, struct _param *);
|
||||||
@ -65,11 +66,12 @@ vacuumlo(char *database, struct _param * param)
|
|||||||
PGresult *res,
|
PGresult *res,
|
||||||
*res2;
|
*res2;
|
||||||
char buf[BUFSIZE];
|
char buf[BUFSIZE];
|
||||||
int matched;
|
long matched;
|
||||||
int deleted;
|
long deleted;
|
||||||
int i;
|
int i;
|
||||||
static char *password = NULL;
|
static char *password = NULL;
|
||||||
bool new_pass;
|
bool new_pass;
|
||||||
|
bool success = true;
|
||||||
|
|
||||||
if (param->pg_prompt == TRI_YES && password == NULL)
|
if (param->pg_prompt == TRI_YES && password == NULL)
|
||||||
password = simple_prompt("Password: ", 100, false);
|
password = simple_prompt("Password: ", 100, false);
|
||||||
@ -280,12 +282,19 @@ vacuumlo(char *database, struct _param * param)
|
|||||||
{
|
{
|
||||||
fprintf(stderr, "\nFailed to remove lo %u: ", lo);
|
fprintf(stderr, "\nFailed to remove lo %u: ", lo);
|
||||||
fprintf(stderr, "%s", PQerrorMessage(conn));
|
fprintf(stderr, "%s", PQerrorMessage(conn));
|
||||||
|
if (PQtransactionStatus(conn) == PQTRANS_INERROR)
|
||||||
|
{
|
||||||
|
success = false;
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
deleted++;
|
deleted++;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
deleted++;
|
deleted++;
|
||||||
|
if (param->transaction_limit != 0 && deleted >= param->transaction_limit)
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
PQclear(res);
|
PQclear(res);
|
||||||
|
|
||||||
@ -298,10 +307,20 @@ vacuumlo(char *database, struct _param * param)
|
|||||||
PQfinish(conn);
|
PQfinish(conn);
|
||||||
|
|
||||||
if (param->verbose)
|
if (param->verbose)
|
||||||
fprintf(stdout, "\r%s %d large objects from %s.\n",
|
{
|
||||||
(param->dry_run ? "Would remove" : "Removed"), deleted, database);
|
if (param->dry_run)
|
||||||
|
fprintf(stdout, "\rWould remove %ld large objects from %s.\n",
|
||||||
|
deleted, database);
|
||||||
|
else if (success)
|
||||||
|
fprintf(stdout,
|
||||||
|
"\rSuccessfully removed %ld large objects from %s.\n",
|
||||||
|
deleted, database);
|
||||||
|
else
|
||||||
|
fprintf(stdout, "\rRemoval from %s failed at object %ld of %ld.\n",
|
||||||
|
database, deleted, matched);
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return ((param->dry_run || success) ? 0 : -1);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
@ -311,6 +330,7 @@ usage(const char *progname)
|
|||||||
printf("Usage:\n %s [OPTION]... DBNAME...\n\n", progname);
|
printf("Usage:\n %s [OPTION]... DBNAME...\n\n", progname);
|
||||||
printf("Options:\n");
|
printf("Options:\n");
|
||||||
printf(" -h HOSTNAME database server host or socket directory\n");
|
printf(" -h HOSTNAME database server host or socket directory\n");
|
||||||
|
printf(" -l LIMIT stop after removing LIMIT large objects\n");
|
||||||
printf(" -n don't remove large objects, just show what would be done\n");
|
printf(" -n don't remove large objects, just show what would be done\n");
|
||||||
printf(" -p PORT database server port\n");
|
printf(" -p PORT database server port\n");
|
||||||
printf(" -U USERNAME user name to connect as\n");
|
printf(" -U USERNAME user name to connect as\n");
|
||||||
@ -342,6 +362,7 @@ main(int argc, char **argv)
|
|||||||
param.pg_port = NULL;
|
param.pg_port = NULL;
|
||||||
param.verbose = 0;
|
param.verbose = 0;
|
||||||
param.dry_run = 0;
|
param.dry_run = 0;
|
||||||
|
param.transaction_limit = 0;
|
||||||
|
|
||||||
if (argc > 1)
|
if (argc > 1)
|
||||||
{
|
{
|
||||||
@ -359,7 +380,7 @@ main(int argc, char **argv)
|
|||||||
|
|
||||||
while (1)
|
while (1)
|
||||||
{
|
{
|
||||||
c = getopt(argc, argv, "h:U:p:vnwW");
|
c = getopt(argc, argv, "h:l:U:p:vnwW");
|
||||||
if (c == -1)
|
if (c == -1)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@ -395,6 +416,16 @@ main(int argc, char **argv)
|
|||||||
}
|
}
|
||||||
param.pg_port = strdup(optarg);
|
param.pg_port = strdup(optarg);
|
||||||
break;
|
break;
|
||||||
|
case 'l':
|
||||||
|
param.transaction_limit = strtol(optarg, NULL, 10);
|
||||||
|
if (param.transaction_limit < 0)
|
||||||
|
{
|
||||||
|
fprintf(stderr,
|
||||||
|
"%s: transaction limit must not be negative (0 disables)\n",
|
||||||
|
progname);
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
break;
|
||||||
case 'h':
|
case 'h':
|
||||||
param.pg_host = strdup(optarg);
|
param.pg_host = strdup(optarg);
|
||||||
break;
|
break;
|
||||||
|
@ -56,6 +56,16 @@ vacuumlo [options] database [database2 ... databaseN]
|
|||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
|
<varlistentry>
|
||||||
|
<term><option>-l</option> <replaceable>limit</></term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Stop after removing LIMIT large objects. Useful to avoid
|
||||||
|
exceeding <xref linkend="guc-max-locks-per-transaction">.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><option>-w</></term>
|
<term><option>-w</></term>
|
||||||
<term><option>--no-password</></term>
|
<term><option>--no-password</></term>
|
||||||
|
Reference in New Issue
Block a user