API with NestJS #155. Offset and keyset pagination with the Drizzle ORM

NestJS

This entry is part 155 of 177 in the API with NestJS

As our database grows, maintaining good performance becomes more important. Returning large amounts of data at once through our API can negatively affect efficiency. A common solution is to divide data into smaller chunks, presenting it to the user as infinite scrolling or multiple pages. In this article, we implement this approach using PostgreSQL and the Drizzle ORM. We also compare different pagination methods and their impact on performance.

Offset and limit

Let’s start by looking at a simple select query that returns all entries from a particular table.

articles.service.ts

The important thing about the results above is that the order of the returned records is not guaranteed. However, when implementing pagination, we need the order to be predictable. Therefore, we should sort the results.

The initial step in implementing pagination is to restrict the number of rows in the result. We can achieve this using the  function.

 

With this approach, we fetch only five elements instead of the entire table. This gives us the first page of the results.

To access the second page, we need to skip a specific number of rows. We can do this using the function.

By combining the and functions, we skip the first five rows and retrieve the next five rows. In this case, it returns rows with IDs from 6 to 10. Maintaining a consistent order of rows when navigating through different pages of data is essential to avoid skipping some rows or displaying them more than once.

Counting the number of rows

A typical feature is to show the user the total number of data pages. For example, if there are one hundred rows and we display twenty per page, we end up with five pages of data.

To figure this out, we need to know the total number of rows in the table. To do this, we must use the function.

articles.service.ts

Counting the rows in the database within the same transaction as the query that fetches the data is crucial. Thanks to that, we ensure that our results remain consistent.

If you want to know more about transactions with the Drizzle ORM, check out API with NestJS #153. SQL transactions with the Drizzle ORM

Offset pagination with NestJS

When setting up offset pagination in a REST API, users typically supply the offset and limit through query parameters. Let’s create a class to handle them.

pagination-params.dto.ts

We can set the default offset to be because it won’t affect the result of the query.

The class we created can now be used in our controller to validate the user-provided offset and limit parameters.

articles.controller.ts

The last step is to add offset and limit pagination to our service.

articles.service.ts

With this approach, we achieve fully functional offset-based pagination.

Advantages

Offset-based pagination is a widely used method because it is simple to implement. It allows users to easily skip multiple data pages and change the columns we sort by. As a result, it is a suitable solution for many situations.

Disadvantages

However, offset-based pagination has significant drawbacks. The primary issue is that the database needs to process all the rows skipped by the offset, which can impact performance:

  • the database sorts all rows based on the specified order,
  • then, it discards the number of rows defined by the offset.

Additionally, there can be consistency issues:

  1. user one fetches the first page of articles,
  2. user two creates a new article that appears on the first page,
  3. user one then fetches the second page.

In this scenario, user one misses the new article added to the first page and sees the last item from the first page again on the second page.

Keyset pagination

A different way to handle pagination is using the function to filter data instead of relying on . To illustrate that, let’s start with the following query:

In the results shown, the last row has an ID of 5. We can use this to fetch articles with IDs greater than 5.

It’s important to use the same column for both sorting and filtering when using the function.

To fetch the next set of results, we need to notice that the ID of the last row is 10 and use this information when calling the  function.

However, this reveals the biggest drawback of keyset pagination. To retrieve the following data page, we must know the ID of the last item on the previous page. This limitation prevents us from skipping multiple pages at once.

Keyset pagination with NestJS

To set up keyset pagination in NestJS, we need to begin by adding an extra query parameter.

pagination-params.dto.ts

Now, we need to adjust our service and use the new parameter.

articles.service.ts

Advantages

Keyset pagination can provide a significant performance boost compared to offset-based pagination, especially with large datasets. It also addresses the data inconsistency issues that can occur with offset pagination. When users add or remove rows, keyset pagination prevents elements from being skipped or duplicated as pages are fetched.

Disadvantages

The biggest drawback of keyset pagination is that users need to know the row ID from which to start. Fortunately, we can address this issue by combining keyset pagination with the offset-based approach.

The column used for filtering should have an index for better performance. Thankfully, PostgreSQL automatically creates an index for every primary key, so keyset pagination works efficiently with IDs.

However, sorting results by text columns can be challenging when natural sorting is required. If you want to know more, check out this question on StackOverflow.

Summary

In this article, we explored two different pagination methods that can be used with the Drizzle ORM and PostgreSQL. By examining their pros and cons, it’s clear that each approach is suitable for different scenarios. Keyset pagination, though more restrictive, offers better performance. Fortunately, mixing keyset and offset pagination allows us to handle various cases, leveraging the benefits of both methods.

Series Navigation<< API with NestJS #154. Many-to-many relationships with Drizzle ORM and PostgreSQLAPI with NestJS #156. Arrays with PostgreSQL and the Drizzle ORM >>
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments