vacuumdb
garbage-collect and analyze a Postgres-XC database node
- Provided by: postgres-xc-client (Version: 1.1-2ubuntu2)
- Source: postgres-xc
- Report a bug
garbage-collect and analyze a Postgres-XC database node
vacuumdb [connection-option...] [option...] [--table | -t table [( column [,...] )]] [dbname]
vacuumdb [connection-option...] [option...] --all | -a
vacuumdb is a utility for cleaning a Postgres-XC database node. vacuumdb will also generate internal statistics used by the Postgres-XC query optimizer.
vacuumdb is a wrapper around the SQL command VACUUM(7). There is no effective difference between vacuuming and analyzing databases via this utility and via other methods for accessing the server.
The following description applies only to Postgres-XC
In Postgres-XC, VACUUM will be performed in all the Datanodes as well.
vacuumdb accepts the following command-line arguments:
-a, --all
[-d] dbname, [--dbname=]dbname
-e, --echo
-f, --full
-F, --freeze
-q, --quiet
-t table [ (column [,...]) ], --table=table [ (column [,...]) ]
-v, --verbose
-V, --version
-z, --analyze
-Z, --analyze-only
-?, --help
vacuumdb also accepts the following command-line arguments for connection parameters:
-h host, --host=host
-p port, --port=port
-U username, --username=username
-w, --no-password
-W, --password
This option is never essential, since vacuumdb will automatically prompt for a password if the server demands password authentication. However, vacuumdb will waste a connection attempt finding out that the server wants a password. In some cases it is worth typing -W to avoid the extra connection attempt.
--maintenance-db=dbname
PGDATABASE, PGHOST, PGPORT, PGUSER
This utility, like most other PostgreSQL utilities, also uses the environment variables supported by libpq (see Section 32.14, “Environment Variables”, in the documentation).
In case of difficulty, see VACUUM(7) and psql(1) for discussions of potential problems and error messages. The database server must be running at the targeted host. Also, any default connection settings and environment variables used by the libpq front-end library will apply.
vacuumdb might need to connect several times to the Postgres-XC nodes, asking for a password each time. It is convenient to have a ~/.pgpass file in such cases. See Section 32.15, “The Password File”, in the documentation for more information.
To clean the database test:
$ vacuumdb test
To clean and analyze for the optimizer a database named bigdb:
$ vacuumdb --analyze bigdb
To clean a single table foo in a database named xyzzy, and analyze a single column bar of the table for the optimizer:
$ vacuumdb --analyze --verbose --table 'foo(bar)' xyzzy