wt(3) | WiredTiger | wt(3) |
wtWiredTiger command line utility
- WiredTiger includes a command line utility, wt.
wt [-LRVv] [-C config] [-E secretkey ] [-h directory] command [command-specific arguments]
The wt tool is a command-line utility that provides access to various pieces of the WiredTiger functionality.
There are several global options:
-C config
-E secretkey
-h directory
-L
-R
-V
-v
Unless otherwise described by a wt command, the wt tool exits zero on success and non-zero on error.
The wt tool supports several commands. If configured in the underlying database, some commands will run recovery when opening the database. If the user wants to force recovery on any command, use the -R option. In general, commands that modify the database or tables will run recovery by default and commands that only read data will not run recovery.
Alter a table.
wt [-RVv] [-C config] [-E secretkey ] [-h directory] alter uri configuration ...
The uri and configuration pairs may be specified to the alter command. These configuration pairs can be used to modify the configuration values from those passed to the WT_SESSION::create call.
The uri part of the configuration pair should match only one of the objects being altered, but may be a prefix of the object being matched. For example, the following two sets of configuration pairs are equivalent in the case of altering a single table named xxx.
table access_pattern_hint=sequential table:xxx access_pattern_hint=sequential
It's an error, however, to specify a matching prefix that matches more than a single object being altered.
Multiple configuration arguments may be specified. For example, the following two sets of configuration pairs are equivalent:
table:xxx access_pattern_hint=random,cache_resident=false table:xxx access_pattern_hint=random table:xxx cache_resident=false
Perform a backup of a database or set of data sources.
The backup command performs a backup of the database, copying the underlying files to a specified directory, which can be subsequently opened as a WiredTiger database. See Backups for more information, and File permissions for specifics on the copied file permissions.
wt [-RVv] [-C config] [-E secretkey ] [-h directory] backup [-t uri] directory
The following are command-specific options for the backup command:
-t uri
Compact a table.
The compact command attempts to rewrite the specified table to consume less disk space.
wt [-RVv] [-C config] [-E secretkey ] [-h directory] compact uri
The compact command has no command-specific options.
Create a table.
The create command creates the specified uri with the specified configuration. It is equivalent to a call to WT_SESSION::create with the specified string arguments.
wt [-RVv] [-C config] [-E secretkey ] [-h directory] create [-c config] uri
The following are command-specific options for the create command:
-c
Drop a table.
The drop command drops the specified uri. It is equivalent to a call to WT_SESSION::drop with the 'force' configuration argument.
wt [-RVv] [-C config] [-E secretkey ] [-h directory] drop uri
The drop command has no command-specific options.
Export data in a text format.
The dump command outputs the specified table in a portable format which can be re-loaded into a new table using the load command.
See Dump Formats for details of the dump file formats.
wt [-RVv] [-C config] [-E secretkey ] [-h directory] dump [-jrx] [-c checkpoint] [-f output] uri
The following are command-specific options for the dump command:
-c
-f
-j
-r
-x
List the tables in the database.
By default, the list command prints out the tables stored in the database. If a URI is specified as an argument, only information about that data source is printed.
wt [-RVv] [-C config] [-E secretkey ] [-h directory] list [-cv] [uri]
The following are command-specific options for the list command:
-c
-v
Load a table from dump output.
The load command reads the standard input for data and loads it into a table, creating the table if it does not yet exist. The data should be the format produced by the dump command; see Dump Formats for details.
By default, if the table already exists, data in the table will be overwritten by the new data (use the -n option to make an attempt to overwrite existing data return an error).
wt [-RVv] [-C config] [-E secretkey ] [-h directory] load [-ajn] [-f input] [-r name] [uri configuration ...]
The following are command-specific options for the load command:
-a
-f
-j
-n
-r
Additionally, uri and configuration pairs may be specified to the load command. These configuration pairs can be used to modify the configuration values from the dump header passed to the WT_SESSION::create call.
The uri part of the configuration pair should match only one of the objects being loaded, but may be a prefix of the object being matched. For example, the following two sets of configuration pairs are equivalent in the case of loading a single table named xxx.
table block_allocation=first table:xxx block_allocation=first
It's an error, however, to specify a matching prefix that matches more than a single object being loaded.
Multiple configuration arguments may be specified. For example, the following two sets of configuration pairs are equivalent:
table:xxx block_allocation=first,prefix_compress=false table:xxx block_allocation=first table:xxx prefix_compress=false
Load text into a table.
The loadtext command reads the standard input for text and loads it into a table. The input data should be printable characters, with newline delimiters for each key or value.
The loadtext command does not create the object if it does not yet exist.
In the case of inserting values into a column-store table, each value is appended to the table; in the case of inserting values into a row-store table, lines are handled in pairs, where the first line is the key and the second line is the value. If the row-store table already exists, data in the table will be overwritten by the new data.
wt [-RVv] [-C config] [-E secretkey ] [-h directory] loadtext [-f input] uri
The following are command-specific options for the loadtext command:
-f
Display the database log.
The printlog command outputs the database log.
wt [-RVv] [-C config] [-E secretkey ] [-h directory] printlog [-x] [-f output]
The following are command-specific options for the printlog command:
-f
-x
Read records from a table.
The read command prints out the records associated with the specified keys from the specified data source. The data source must be configured with string or record number keys and string values.
The read command exits non-zero if a specified record is not found.
wt [-RVv] [-C config] [-E secretkey ] [-h directory] read uri key ...
The read command has no command-specific options.
Rename a table.
The rename command renames the specified table.
wt [-RVv] [-C config] [-E secretkey ] [-h directory] rename uri name
The rename command has no command-specific options.
Recover data from a corrupted table.
The salvage command salvages the specified data source, discarding any data that cannot be recovered. Underlying files are re-written in place, overwriting the original file contents.
wt [-RVv] [-C config] [-E secretkey ] [-h directory] salvage [-F] uri
The following are command-specific options for the salvage command:
-F
Display database or data source statistics.
The stat command outputs run-time statistics for the WiredTiger engine, or, if specified, for the URI on the command-line.
wt [-RVv] [-C config] [-E secretkey ] [-h directory] stat [-f] [uri]
The following are command-specific options for the stat command:
-f
Truncate a table, removing all data.
The truncate command truncates the specified uri. It is equivalent to a call to WT_SESSION::truncate with no start or stop specified.
wt [-RVv] [-C config] [-E secretkey ] [-h directory] truncate uri
The truncate command has no command-specific options.
Upgrade a table.
The upgrade command upgrades the specified table, exiting success if the data source is up-to-date, and failure if the data source cannot be upgraded.
wt [-RVv] [-C config] [-E secretkey ] [-h directory] upgrade uri
The upgrade command has no command-specific options.
Check the structural integrity of a table.
The verify command verifies the specified table, exiting success if the data source is correct, and failure if the data source is corrupted.
wt [-RVv] [-C config] [-E secretkey ] [-h directory] verify uri
The verify command has no command-specific options.
Write records to a table.
The write command stores records into the specified data source. The data source must be configured with string or record number keys and string values.
If the write command is called with the -a option, each command-line argument is a single value to be appended to the specified column-store data source. If the write command is not called with the -a option, the command-line arguments are key/value pairs.
Attempting to overwrite an already existing record will fail.
wt [-RVv] [-C config] [-E secretkey ] [-h directory] write -a uri
value ...
wt [-RVv] [-C config] [-E secretkey ] [-h directory] write [-o] uri key value
...
The following are command-specific options for the write command:
-a
-o
Tue Aug 27 2019 | Version 3.2.1 |