Indexes

Indexing is a way of increasing performance of queries on large tables.

What is an Index?

An index is a database feature that helps improve the speed and efficiency of queries made against a database table. They help when searching through large, unordered data sets and give the database search engine a quick way to sort and find specific data. Indexes can be created using one or more columns of a database table, providing the basis for both rapid random lookups and efficient access to ordered records.

How do they work?

A table index is very similar in practice to the index of a textbook. When there is a specific piece of information that you want to find, reading every page of that book to find what you are looking for can be very slow and inefficient. So, you would use the index at the back of the book to find exactly which page contains the information you need.

This is the same concept for a database table index. They create a special type of lookup table in the background that the database engine can use to retrieve the data faster than looking through each individual row for every search.

When to use an Index?

Indexes are the most beneficial in the following scenario(s):

  • You have a specific query that you want to ensure is as performant as possible

  • The query uses simple operators in one or more conditions

    • Yes: Where user region = Canada

    • No: Where user ID is even, or user region is empty

  • The table has 10,000 records or more

  • The data you are looking for lives in a field with a large number of unique values

  • The table is not frequently written to or updated

    • This is because when a table is indexed and frequently written to, the performance of inserting new data can suffer because the index has to be updated at the same time. You can index a table that has frequent writes, but use caution.

How do I apply an index properly?

It’s important to construct your index based on the query being performed that you are trying to address. We will use the an example scenario to explain an approach to indexing. All scenarios were built and performed on a Launch plan instance with no additional load or processing. Your results may vary based on other factors related to your specific instance or the plan you are on.

Example Table: 515,195 records

idnameregioncountryprofessionfirstnamelastnameemailbirthday

Example Query: Find all users in a specific country, with a specific profession

With no indexing applied, this query takes 0.62 seconds to complete.

Because these two pieces of data can exist independently of each other -- meaning we don't need to know a country to determine a profession, and vice versa, we will apply two separate indexes to our table, one for each field.

With these indexes applied, the example query now executes in 0.05 seconds, a 95% increase in query speed.

When should I index a single field by itself vs multiple fields in the same index?

This is based on the hierarchy of the query being performed, and what makes the most sense in terms of your data set. It’s important to think about what fields relate to each other; what fields in your query require the data from others to make sense in context?

It is also important to note that if you have multiple fields defined in a single index, but are not using both of those fields in your query, the index will not provide any benefit to the performance of that query. Indexes are only useful if you are indexing based on the queries you are making, and the hierarchy of your query makes sense.

You can use a field in a double-field index as well as a single-field index, but it is important to consider the storage requirement for each index you create. In addition, it is possible to ‘trap’ yourself into a situation where you have too many indexes, and it becomes more difficult to determine what is helping and what is not.

Example Query: Find all users who are part of a specific subset of artists

Executing the example query, with no indexing applied, takes 1.44s.

Because we know that the artist_service field requires the profession field to make sense in the context of our query, we will place both of those fields, in order, in the same index.

After applying the index shown, this query completes in 0.02 seconds, 98% faster.

In this same scenario, if there was a world where we would potentially query artist_service by itself, and it did not also need a profession to make sense based on the context of our query, we would want to create single-field indexes for these fields.

Example 2: When to use Single-Field vs. Multi-Field Indexes

We have a table of people, and each person lives in a specific region. We want to build a query where we find all people named "Jack" in a specific region. We will not be building any other queries to search our table of people.

In this example, we would build one index with both fields. This is because we are not utilizing these fields in any other queries, and they are both required in the context of the query we are building.

Example 3: When to use Single-Field vs Multi-Field Indexes

We have a table of people, and each person lives in a specific region. We want to build a query where we find all people named "Jack" in a specific region. We also want to build a second query that just finds us all people named "Jack", and a third query that finds all people in a certain region without specifying a name.

In this example, we would build two single-field indexes, one for each field. This is because we are utilizing the fields in multiple different queries.

Using the GIN Index to search complex data types

The GIN index is used specifically when searching through more complex data types, such as objects and arrays, as these fields can not be indexed using the methods described previously.

This index is automatically applied to all of your database tables; you do not need to add or maintain this.

Let's say, as an example, we have a list field called my_list, and we want to find all records that contain a value of special inside of my_list.

To use the GIN index in this query, we first need to create a variable with the following structure:

{"my_list":[
    "special"
    ]
}

The structure starts with an object containing the name of the field, with the value being an empty array. We then use the push filter to add the value we are searching for inside of that list. You can use multiple push filters to search for multiple values.

Once we have our object constructed, we will set up our custom query by selecting the table on the left side, which leaves us with the 'contains' operator, and our constructed object on the right.

In this example, a query without indexing takes 0.23 seconds.

In this example, utilizing the GIN index, the query takes 0.02 seconds.

How to Apply an Index in the Database View

In the database view, click on the table that you want to index. Choose "Indexes" from the top bar.

Click "Create Index" to add a new index, or click on an existing index to manage it.

Choose the fields, sort, and index type. When done, click 'Save'.

Note: Creating or updating an index can take several minutes depending on the complexity and the size of the database table.

Note: Indexes will significantly increase the storage your databse table requires. Please ensure you have enough free space (we recommend trying to stay around ~50% free space) before indexing your tables.

Types of Indexes

  • Primary

    • Automatically applied and maintained

    • Indexes the primary key (ID) of each record and enforces uniqueness

  • GIN

    • Automatically applied and maintained

    • Most suitable for complex data types (JSON, lists, objects) and full-text search

  • Index

    • The most common index type

    • Used when indexing for standard queries

  • Unique

    • A special type of index to enforce unique values in a column’

  • Spatial

    • A special type of index designed to optimize queries involving spatial data, such as geography fields.

  • Search

    • A special type of index to be used in conjunction with Xano fuzzy search

When should you not use an index?

  • Do not use an index on a table containing only a few records. They are most valuable when your record count approaches >5,000 records.

  • Indexes should not be used on fields that have or will have a high number of null values, because that essentially means there is nothing to index on.

  • You can not apply a normal index to an array or object field, so keep that in mind when designing your database structure. You can use the automatically maintained GIN index, detailed later on this page.

  • If your field / column names are frequently changing, you should not index that field.

  • If a table is frequently used to add / edit data, it may be best practice to not index this table. While your query speeds can still benefit, they can also slow the performance of adding to or editing data on this table given the nature of creating an index behind the scenes.

Common Problems and Solutions

ERROR: Program limit exceeded

You may see this error if you create an index that contains too many columns, or you're trying to index a field with an exceptionally large data set, such as full pages of text or base64 encoded file content.

It is recommended that depending on your specific scenario, you review the number of fields you're applying to your index, or leveraging Fuzzy Search for large data columns.

Last updated