Common operations in WiredTiger are performed using WT_CURSOR handles. A cursor includes:
See Cursor operations for a description of how to use cursors.
The following are the builtin basic cursor types:
URI | Type | Notes |
---|---|---|
table:<table name>[<projection>] | table cursor | table key, table value(s) with optional projection of columns |
colgroup:<table name>:<column group name> | column group cursor | table key, column group value(s) |
index:<table name>:<index name>[<projection>] | index cursor | key=index key, value=table value(s) with optional projection of columns |
join:table:<table name>[<projection>] | join cursor | key=table key, value=table value(s) with optional projection of columns |
Some administrative tasks can be accomplished using the following special cursor types that give access to data managed by WiredTiger:
URI | Type | Notes |
---|---|---|
backup:[query_id] | backup cursor (optionally only returning block incremental ids if query_id is appended) | key=string , see Backups for details |
log: | log cursor | key=(long fileID, long offset, int seqno) ,value= (uint64_t txnid, uint32_t rectype, ,see Log cursors for details |
metadata:[create] | metadata cursor (optionally only returning configuration strings for WT_SESSION::create if create is appended) | key=string , value=string ,see Reading WiredTiger Metadata for details |
statistics:[<data source URI>] | database, data source, join or session statistics cursor | key=int id ,value= (string description, string value, uint64_t value) ,see Statistics Data for details |
Advanced applications may also open the following low-level cursor types:
URI | Type | Notes |
---|---|---|
file:<file name> | file cursor | file key, file value(s) |
lsm:<name> | LSM cursor (key=LSM key, value=LSM value) | LSM key, LSM value, see Log-Structured Merge Trees |
See the following for more details:
Cursors on tables and indices can return a subset of columns. This is done by listing the column names in parenthesis in the uri
parameter to WT_SESSION::open_cursor. Only the fields from the listed columns are returned by WT_CURSOR::get_value.
The ex_schema.c example creates a table where the value format is "5sHq"
, where the initial string is the country, the short is a year, and the long is a population. The following example lists just the country and year columns from the table record values:
This is particularly useful with index cursors, because if all columns in the projection are available in the index (including primary key columns, which are the values of the index), the data can be read from the index without accessing any column groups. See Index cursor projections for more information.
Cursor positions hold resources that can inhibit the eviction of memory pages. If a cursor is active on a page being considered for eviction, the eviction will defer until the cursor is moved or reset. To avoid this and to keep resources freed in general, an application should call WT_CURSOR::reset during times it does not need to keep the cursor positioned. A cursor that has been reset is not active and will not inhibit eviction.
Cursors can be configured for raw mode by specifying the "raw"
config keyword to WT_SESSION::open_cursor. In this mode, the methods WT_CURSOR::get_key, WT_CURSOR::get_value, WT_CURSOR::set_key and WT_CURSOR::set_value all take a single WT_ITEM in the variable-length argument list instead of a separate argument for each column.
WT_ITEM structures do not need to be cleared before use.
For WT_CURSOR::get_key and WT_CURSOR::get_value in raw mode, the WT_ITEM can be split into columns by calling WT_EXTENSION_API::struct_unpack with the cursor's key_format
or value_format
, respectively. For WT_CURSOR::set_key and WT_CURSOR::set_value in raw mode, the WT_ITEM should be equivalent to calling WT_EXTENSION_API::struct_pack for the cursor's key_format
or value_format
, respectively.
The ex_schema.c example creates a table where the value format is "5sHq"
, where the initial string is the country, the short is a year, and the long is a population. The following example lists the table record values, using raw mode:
Raw mode can be used in combination with projections. The following example lists just the country and year columns from the table record values, using raw mode:
WiredTiger cursors provide access to data from a variety of sources. One of these sources is the list of objects in the database.
To retrieve the list of database objects, open a cursor on the uri metadata:
. Each returned key will be a database object and each returned value will be the information stored in the metadata for object named by the key.
For example:
To retrieve value strings that are valid arguments for calls to WT_SESSION::create, open a cursor on metadata:create
.
The metadata cursor is read-only, and the metadata cannot be modified.