Skip to content

Schema configuration

A schema is a description of a collection of tables. Schemas are used to describe all of the tables within a kdb Insights Database. Schemas can also be used in pipelines to transform datatypes to match a particular table.

A schema is made up of one or more tables and some metadata properties. Each table defines a set of columns and metadata information. Each column within a table must have a name and a type associated with it.

Partitioned tables

A schema must have at least one table that is a partitioned table.

Schema overview

Tables can be added or removed from a schema, but schemas can only be changed when the associated database is torn down.

Configuration in YAML

This guide discusses how to configure a schema using the kdb Insights Enterprise User Interface (UI). Schemas can also be configured using a YAML configuration file. YAML configured schemas can be added to databases.

Create a schema

A schema can be created during the database wizard process, or added directly to a database from the schema tab.

A schema has a set of tables corresponding to the data stored in the database.

A new schema comes with a default table, table1, that can be changed or deleted. Every data table in a schema must have a Timestamp column - set as the partition - for storage on a kdb+ database. The Timestamp column represents the time characteristic in the data used for data tier migration.

Additional schemas are saved as part of the parent database.

Table Properties

A table is a definition of a set of columns correlated by a common feature set. The definition of a table describes the types and purpose of the each column within that table, as well as some usage metadata properties.

Table properties

name description
Primary Keys Names of columns to use as primary keys for this table. Primary keys are used for indicating unique data within a table. When provided, the table is keyed by these columns and any updates that have matching keys will update records with matching keys.
Description A textual description for the table. This can be used to provide an overview of the data collected in the current table.
Type The type of the table is how the table is managed on disk. For time based tables, use Partitioned. For supplementary data, use Splayed. Note that at least one of your tables must be Partitioned.
Partition Column The name of the column within the table to use to partition the content. The column type it points to must be a timestamp. This value is required if the table type is set to partitioned.
Block Size This value indicates when data should be written to disk. After this many records are received, data is written to disk. Writing more frequently increases disk IO but will use less memory. If omitted, the default value is 12 million records.
Real-time Sort A list of columns to use for sorting columns in a memory tier. This typically corresponds to the data sort of the RDB tier.
Interval Sort A list of columns to use for sorting columns in an ordinal partitioned tier. This typically corresponds to the data sort of the IDB tier.
Historical Sort A list of columns to use for sorting columns in a normal disk tier. This typically corresponds to the data sort of the HDB tier.

Keyed tables and object storage

Keyed tables will update values for records that have matching keys, except for data that has been migrated to an object storage tier. Once data has migrated to an object storage tier, it is immutable.

Column Properties

Columns describe the distinct features within a table with a unique name and datatype. Each row of data in the system for a given table must have a value for each column within a table.

Partition tables need a timestamp column

Partition tables require a timestamp column to order data and to propagate it through database tiers. The Partition Column field in the table must be set to the temporal column that will be used for ordering data.

Column properties

name description
Name The name of the column in the table. The name must be unique within a single table and should be a single word that represents the purpose of the data within the column. This name must conform to kdb+ naming restrictions and should not use any reserved kdb+ primitives. See .Q.id for details.
Type The type of the column. See types below for more details.
Description A textual description of the column for documentation purposes.
Primary Key If checked, adds the key to the set of primary keys in the table properties.
In-Memory Attribute Column attributes to apply when the table is in memory. This typically only applies to the RDB tier. See attribute details below for more information.
On-Disk Attribute (Ordinal Partitioning) Column attributes to apply when the table is ordinal partitioned. This typically only applies to the IDB tier. See attribute details below for more information.
On-Disk Attribute (Temporal Partitioning) Column attributes to apply when the table is partitioned on disk. This typically only applies to the HDB tier. See attribute details below for more information.
Foreign Indicates the values of this column are a foreign key into a column in another table. This value should be in the form of table.column, where the table is another table in the same schema and the column is in that table. If the foreign key value is provided, the column type must match the type of the column in the other table.

Types

Column types support all of the base datatypes supported in kdb+. For columns containing only atom values, use the singular form of the data type. To indicate that a column is intended to support vectors of a given type, use the plural of the type name.

Type example

For a column of long numbers, use the type Long.

x
-
0
1
2

For a column of vectors of long integers, use Longs.

x
-
0 1 2
4 5 6
7 8 9
name type description
Any 0h Allows for mixed types within a single column. Mixed types are useful for having mixed data or lists of strings but do have a performance trade-off and should be used sparingly.
Boolean 1h True or false values.
Guid 2h Unique identifiers in the form of 00000000-0000-0000-0000-000000000000.
Byte 4h Individual byte values on the range of 0x00 to 0xFF.
Short 5h A 2 byte short integer value in the range of -32767h to 32767h.
Int 6h A 4 byte integer value value in the range of -2147483647 to 2147483647.
Long 7h An 8 byte integer value with the maximum unsigned integer byte range.
Real 8h A 4 byte floating point value.
Float 9h An 8 byte floating point value.
Char 10h A byte value representing a character value.
Symbol 11h A symbol is a string of characters that is stored as an enumeration on disk. Reserve this datatype for repeated character values. Using this for unique character data will incur significant query performance overhead.
Timestamp 12h Stores a date and time as the number of nanoseconds since 2000.01.01. All partitioned tables should have at least one column that is a timestamp for partitioning its data on.
Month 13h Represents a month and year value without a day.
Date 14h Represents a month, year and day value as a date.
Datetime 15h A deprecated format for storing temporal values that uses a float as its underlying data structure. When using this datatype, it is possible to have two datetimes point to the same day but not be equivalent due to float precision. Use a timestamp over datetime whenever possible.
Timespan 16h Stores a time duration as a number of nanoseconds.
Minute 17h Stores hours and minutes of a timestamp.
Second 18h Stores hours, minutes and seconds of a timestamp.
Time 19h Stores hours, minutes, seconds and sub-seconds to nanosecond precision.

Attributes

Attributes are a key performance tuning point for modifying the performance of queries in a kdb+ Insights database. Attributes can be set differently depending on the different tiers of your database and can be tuned to optimize performance at each tier. The following column attributes are available:

  • None - requires a linear scan for filters against the column
  • Sorted - ascending values - allows binary search for filters against the column
  • Parted - (requires sorted) - maintains an index allowing constant time access to the start of a group of identical values
  • Grouped - (does not require sorted) maintains a separate index for the column, identifying the positions of each distinct value. note - this index can take up significant storage space.
  • Unique - (requires all values be distinct) allows a constant-time lookup - typically used for primary keys

More information about attributes, their use, and tradeoffs is available in the kdb+ documentation.

Within the table configuration, an attribute property can be set on particular columns within the table. There are three levels of attributes that can be set, attrMem, attrOrd and attrDisk. The memory level attribute applies when data is in memory which is used for any real-time tiers (RDB) in your database configuration. The ordinal level attribute is used for data that is stored intermittently throughout the day. This applies to the IDB tier of a database. Lastly, the disk attribute applies to all disk tiers including the HDB and subsequent tiers such as object storage.

It is recommended that the parted attribute is used on any column that will be used for filtering most frequently. You can have multiple columns with a parted attribute if there are multiple columns frequently used for filtering. Note that setting the parted attribute does require a significant amount of memory when constructing the column query index at write down. Ensure that enough memory is allocated to the Storage Manager for an full day's worth of data for the largest column that has this attribute set.

Removing columns

Columns can be be removed from a schema from the three dot menu, "Delete Column".

Delete column

Duplicating columns

Columns and their properties can be copied with "Duplicate Column" from the three dot menu.

Duplicate column

Editing a schema

A deployed schema cannot be edited until its associated database has been torn down.

Schema modifications

Schema modifications are supported for YAML based deployments; export the database and deploy it using the kdb Insights CLI. Then modify the schema.

Code view

Code view defines schemas using JSON. Schemas built using the code editor use table properties defined for the YAML schema configuration, encoded as JSON.

Schema code editor

A validation check prevents submission of invalid code. Error details appear on hover-over of the underlined problem. In addition, on editing a property, a pop-up of supported attributes is offered:

Schema editor validation

Upgrading schemas to kdb Insights Enterprise 1.5

In previous versions of kdb Insights Enterprise, schemas could be created separately from databases. These schemas must be upgraded to the latest version of kdb Insights Enterprise. Any schema that is not assigned to a database must be assigned to a database. You can see if there are any schemas to upgrade by looking at the Upgrades icon in the sidebar.

Upgrades Icon

After clicking on the upgrades icon, click on "Schemas" in the sidebar tree.

Upgrades document list

The list shows the schemas that need to be upgraded.

Schema Upgrades Overview

Now, each of these schemas can be upgraded by choosing one of these three options, add to database, create new database, or delete schema.

Schema upgrade actions

Add to database

This action adds the schema to an existing database. Click on the "Add to database" button for the schema you want to upgrade.

Add to database

A dialog opens with a list of databases to select from.

Add to database dialog

Select a database and click on the "Replace" button to add the schema to this database.

Replace button

Create new database

This action creates a new database and associated schema. Click on the "Create new database" button for the schema you want to upgrade.

Create new database

A dialog opens; enter the name of the new database.

Create new database dialog

Click on the "Create" button to add the schema to this new database.

Create button

Delete schema upgrade

This action deletes the schema. Click on the "Delete" button for the schema you want to delete.

Delete schema

A dialog opens; click on the "Delete" button to delete the schema.

Delete confirm dialog

Next steps

Now that your schema has been configured, continue by creating a database to complete the configuration of the database. If you already have a database, you may be ready to move to deploying the database.