Data modeling performance considerations
This article outlines key data modeling factors that impact performance when ingesting and querying data.
To manage containers and govern schema components, you can use NEAT (open source) and the CDF Toolkit.
Indexes and constraints
To improve the speed of data retrieval and sorting, you can index any property defined in a container. However, indexes also come with a performance cost during certain operations.
You can configure a maximum of 10 indexes for each container. Each index can include an individual property, or combinations of properties (composite indexes). The order of the properties is important for composite indexes.
The properties most frequently included in queries are primary candidates to include in an index. Also, you should consider the size of the data set, and the update frequency of the data.
You can specify two main index types for the data modeling service: Btree and inverted indexes.
The examples in this section assume the following container definitions:
# Example container definitions
space: site_assets
container:
# A container for the "Asset" type with a single property "asset_id"
- externalId: Asset
name: Asset
usedFor: node
description: The Asset container
properties:
asset_id:
name: asset_id
type:
type: int64
site:
name: site
type:
type: text
name:
name: name
type:
type: text
# [... more asset specific container properties could be included here]
# A container for the "Description" type
- externalId: Description
usedFor: node
properties:
title:
type:
type: text
list: false
collation: ucs_basic
nullable: true
description_text:
type:
type: text
list: false
collation: ucs_basic
nullable: true
labels:
type:
type: text
list: true
collation: ucs_basic
nullable: true
Why not index all properties?
Well-planned indexes that match the query patterns of your data consumers improve the performance of data retrieval operations. But indexes come at a cost, and creating an index on the wrong properties can be detrimental to both data retrieval, and insert/update operations:
- Indexes built on properties containing a lot of unique data will often impede performance.
- BTree indexes for properties with large amounts of data can use significant amounts of memory and can cause intermittent error/timeout statuses for update or add operations.
- Composite indexes for millions of pieces of data can lead to poor performance during add and update operations for the indexed properties. It may impact the experienced stability of your solutions and your data objects.
Having an index for every property is unlikely to give the desired result even if the total property count in the container would allow it. Too many indexes, across too many properties, in too many related containers may lead to slow performance during ingestion, query, search, and filtering operations. Slow performance can result in a lot of push-back on the client in the form of retry statuses from the data modeling service.
BTree indexes
BTree indexes maintain data in a sorted order and lets you quickly look up instances based on the properties defined in the index. The indexes are ideal for queries using both range and equality filters. Conceptually, a BTree is similar to a phone book, which is sorted by name, allowing you to find a person's phone number quickly.
BTree indexes are particularly useful for data stored as scalar data types. To see the scalar data types available in container properties, navigate to the type
> PrimitiveProperty
section of the Create or update containers entry in the API documentation.
The following example illustrates creating BTree indexes for the asset name and site:
indexes:
siteIndex:
properties:
- site
indexType: btree
cursorable: true
nameIndex:
properties:
- name
indexType: btree
Inverted indexes
Inverted indexes allow you to filter on the values of array properties efficiently. Conceptually, this is like a cookbook where you can quickly find all recipes that contain a specific ingredient. Inverted indexes cannot be made cursorable.
This example adds a single inverted index for the labels property in the asset container:
indexes:
labels:
properties:
- labels
indexType: inverted
Composite indexes
Composite indexes are effective when properties are used together in query conditions, for example, a WHERE
filter using several related properties. Build composite indexes for properties that are commonly used together to filter or sort data. This improves performance because the data modeling service data store quickly can find the data that meet all criteria included in the index.
The following query examples illustrate the usefulness of a composite inverted index, and the order of the properties in the index:
- a) return assets where their name starts with the letter A, from site X
- b) return all assets at site Y
- c) return all assets where their name starts with the letter B
Query a) and b) should see a performance benefit by defining the composite inverted index described as site_asset_name
in the the example below. However, the site_asset_name
won't improve the performance of query c).
To improve the performance for query c), you would need the asset_name_site
composite index below. The asset_name_site
index would also improve performance for query a), but not for query b).
You cannot create composite indexes using properties in different containers
We suggest you use the requirements collection phase to test, and validate, your data volume expectations for the container(s). Also use it to identify the most likely query patterns. Then build the smallest number of composite indexes you need, so your graph will deliver the performance and scalability your consumers expect during data onboarding and consumption.
With large data sets, try using distinct and small composite indexes to support the specific queries you expect consumers will use.
Composite index examples
# Composite index combining the site and asset name for the Asset container
indexes:
site_asset_name:
# An inverted index for the combined site and asset name properties should deliver more performant queries
# when searching for asset names within a site.
properties:
- site
- name
# alternative definition for properties included in the index:
# properties: [site, name]
indexType: inverse
asset_name_site:
# An inverted index for the combined asset name and site properties should deliver more performant queries
# when searching for whether a site is linked to a (set of) asset name(s).
properties:
- name
- site
# alternative definition for properties included in the index:
# properties: [name, site]
indexType: inverse
Pagination (cursorable indexes)
Use cursorable indexes to support efficient pagination through large data sets. For example, when your users need to receive all available data based on a set of filters. To enable these types of indexes, set the cursorable:
parameter to true
for a BTree index.
A cursorable index will have an internal unique identifier padded to it, and cursors have a suitable tiebreaker when the indexed values are not unique. As a result, cursorable indexes are more expensive than non-cursorable indexes, so use them carefully.
For incremental processing — "Return all data that has changed, based on this/these filters" — use the sync feature. For small or static data sets, we recommend that you keep the default value for cursorable:
(false
).
Inverted indexes can't be cursorable.
# A "cursorable" btree index for the asset_id property in the example Asset container
indexes:
# The BTree index for the asset_id property in the example Asset container
assetIdIndex:
properties:
- asset_id
# alternative definition for properties included in the index:
# properties: [asset_id]
indexType: btree
cursorable: true # Set to true to enable a cursorable index
For DMS's query executor to use the cursorable index, the sort in your query must match the cursorable index.
A cursorable index is ordered. If you have a cursorable index on property1
and property2
, its data could looks like this:
property1 | property2 |
---|---|
1 | 1 |
1 | 2 |
2 | 1 |
2 | null |
null | null |
To cursor through this index efficiently, you need to either sort ascending with nulls last:
- property: property1
direction: ascending
nullsFirst: false
- property: property2
direction: ascending
nullsFirst: false