While many tables have simple key/value pairs for records, WiredTiger also supports more complex data patterns.
A table is a logical representation of data consisting of cells in rows and columns. For example, a database might have this table.
EmpId | Lastname | Firstname | Salary |
---|---|---|---|
1 | Smith | Joe | 40000 |
2 | Jones | Mary | 50000 |
3 | Johnson | Cathy | 44000 |
This simple table includes an employee identifier, last name and first name, and a salary.
A row-oriented database would store all of the values in a row together, then the values in the next row, and so on:
1,Smith,Joe,40000; 2,Jones,Mary,50000; 3,Johnson,Cathy,44000;
A column-oriented database stores all of the values of a column together, then the values of the next column, and so on:
1,2,3; Smith,Jones,Johnson; Joe,Mary,Cathy; 40000,50000,44000;
WiredTiger supports both storage formats, and can mix and match the storage of columns within a logical table.
Applications describe the format of their data by supplying a schema to WT_SESSION::create. This specifies how the application's data can be split into fields and mapped onto rows and columns.
By default, WiredTiger works as a traditional key/value store, where the keys and values are raw byte arrays accessed using a WT_ITEM structure. Keys and values may be up to (4GB - 512B) bytes in size, but depending on how internal_item_max or leaf_item_max are configured, large key and value items will be stored on overflow pages.
See Key/Value pairs for more details on raw key / value items.
The schema layer allows key and value types to be chosen from a list, or composite keys or values made up of columns with any combination of types. The size (4GB - 512B) byte limit on keys and values still applies.
WiredTiger's uses format strings similar to those specified in the Python struct module to describe the types of columns in a table: http://docs.python.org/library/struct
Format | C Type | Java type | Python type | Standard size |
---|---|---|---|---|
x | pad byte | N/A | N/A | 1 |
b | signed char | byte | integer | 1 |
B | unsigned char | byte | integer | 1 |
h | short | short | integer | 2 |
H | unsigned short | short | integer | 2 |
i | int | int | integer | 4 |
I | unsigned int | int | integer | 4 |
l | long | int | integer | 4 |
L | unsigned long | int | integer | 4 |
q | long long | long | integer | 8 |
Q | unsigned long long | long | integer | 8 |
r | uint64_t | long | integer | 8 |
s | char[] | String | string | fixed length |
S | char[] | String | string | variable |
t | unsigned char | byte | integer | fixed bit length |
u | WT_ITEM * | byte[] | string | variable |
The 'r'
type is used for record number keys in column stores.
The 'S'
type is encoded as a C language string terminated by a NUL character.
The 't'
type is used for fixed-length bit field values. If it is preceded by a size, that indicates the number of bits to store, between 1 and 8. That number of low-order bits will be stored in the table. The default is a size of 1 bit: that is, a boolean. The application must always use an unsigned char
type (or equivalently, uint8_t
) for calls to WT_CURSOR::set_value, and a pointer to the same for calls to WT_CURSOR::get_value. If a bit field value is combined with other types in a packing format, it is equivalent to 'B'
, and a full byte is used to store it.
When referenced by a record number (that is, a key format of 'r'
), the 't'
type will be stored in a fixed-length column-store, and will not have a out-of-band value to indicate the record does not exist. In this case, a 0 byte value is used to indicate the record does not exist. This means removing a record with WT_CURSOR::remove is equivalent to storing a value of 0 in the record with WT_CURSOR::update (and storing a value of 0 in the record will cause cursor scans to skip the record). Additionally, creating a record past the end of an object implies the creation of any missing intermediate records, with byte values of 0.
The 'u'
type is for raw byte arrays: if it appears at the end of a format string (including in the default "u"
format for untyped tables), the size is not stored explicitly. When 'u'
appears within a format string, the size is stored as a 32-bit integer in the same byte order as the rest of the format string, followed by the data.
There is a default collator that gives lexicographic (byte-wise) comparisons, and the default encoding is designed so that lexicographic ordering of encoded keys is usually the expected ordering. For example, the variable-length encoding of integers is designed so that they have the natural integer ordering under the default collator.
See Packing and Unpacking Data for details of WiredTiger's packing format.
WiredTiger can also be extended with WT_COLLATOR.
Every table has a key format and a value format as describe in Column types. These types are configured when the table is created by passing key_format
and value_format
keys to WT_SESSION::create.
Cursors for a table have the same key format as the table itself. The key columns of a cursor are set with WT_CURSOR::set_key and accessed with WT_CURSOR::get_key. WT_CURSOR::set_key is analogous to printf
, and takes a list of values in the order the key columns are configured in key_format
. The columns values are accessed with WT_CURSOR::get_key, which is analogous to scanf
, and takes a list of pointers to values in the same order.
Cursors for a table have the same value format as the table, unless a projection is specified to WT_SESSION::open_cursor. WT_CURSOR::set_value is used to set value columns, and WT_CURSOR::get_value is used to get value columns.
The columns in a table can be assigned names by passing a columns
key to WT_SESSION::create. The column names are assigned first to the columns in the key_format
, and then to the columns in value_format
. There must be a name for every column, and no column names may be repeated.
Once column names are assigned, they can be used to configure column groups, where groups of columns are stored in separate files.
There are two steps involved in setting up column groups: first, pass a list of names for the column groups in the colgroups
configuration key to WT_SESSION::create. Then make a call to WT_SESSION::create for each column group, using the URI colgroup:<table>:<colgroup name>
and a columns
key in the configuration. Columns can be stored in multiple column groups, but all value columns must appear in at least one column group.
Column groups have the same key as the table. This is particularly useful for column stores, because record numbers are not stored explicitly on disk, so there is no repetition of keys across multiple files. Also note that key columns cannot be stored in column group values: they can be retrieved with WT_CURSOR::get_key.
Schema columns can also be used to configure indices on tables. To create an index, call WT_SESSION::create using the URI index:<table>:<index name>
and include a columns
key in the configuration. WiredTiger updates all indices for a table whenever the table is modified.
A cursor can be opened on an index by passing the index URI to WT_SESSION::open_cursor. Index cursors use the specified index key columns for WT_CURSOR::get_key and WT_CURSOR::set_key, and by default return all of the table value columns in WT_CURSOR::get_value.
Index cursors are read-only: they cannot be used to perform updates.
Index cursors for column-store objects may not be created using the record number as the index key.
The code below is taken from the complete example program ex_schema.c.
The code below is taken from the complete example program ex_call_center.c.