sqlpostgresqlpaginationsql-order-bykeyset-pagination

Optimize query with OFFSET on large table


I have table

create table big_table (
id serial primary key,
-- other columns here
vote int
); 

This table is very big, approximately 70 million rows, I need to query:

SELECT * FROM big_table
ORDER BY vote [ASC|DESC], id [ASC|DESC]
OFFSET x LIMIT n  -- I need this for pagination

As you may know, when x is a large number, queries like this are very slow.

For performance optimization I added indexes:

create index vote_order_asc on big_table (vote asc, id asc);

and

create index vote_order_desc on big_table (vote desc, id desc);

EXPLAIN shows that the above SELECT query uses these indexes, but it's very slow anyway with a large offset.

What can I do to optimize queries with OFFSET in big tables? Maybe PostgreSQL 9.5 or even newer versions have some features? I've searched but didn't find anything.


Solution

  • A large OFFSET is always going to be slow. Postgres has to order all rows and count the visible ones up to your offset. To skip all previous rows directly you could add an indexed row_number to the table (or create a MATERIALIZED VIEW including said row_number) and work with WHERE row_number > x instead of OFFSET x.

    However, this approach is only sensible for read-only (or mostly) data. Implementing the same for table data that can change concurrently is more challenging. You need to start by defining desired behavior exactly.

    I suggest a different approach:

    Row value comparison for "keyset pagination"

    See:

    SELECT *
    FROM   big_table
    WHERE  (vote, id) > (vote_x, id_x)  -- ROW values
    ORDER  BY vote, id                  -- match ROW value comparison
    LIMIT  n;
    

    Where vote_x and id_x are from the last row of the previous page (for both DESC and ASC). Or from the first if navigating backwards.

    (vote, id) needs to be UNIQUE to get deterministic results.

    Comparing row values is supported by the index you already have - a standard SQL feature, but not every RDBMS supports it.

    CREATE INDEX vote_order_asc ON big_table (vote, id);
    

    Or for descending order:

    SELECT *
    FROM   big_table
    WHERE  (vote, id) < (vote_x, id_x)  -- ROW values
    ORDER  BY vote DESC, id DESC
    LIMIT  n;
    

    Can use the same index.
    I suggest you declare your columns NOT NULL or acquaint yourself with the NULLS FIRST|LAST construct:

    Note two things in particular:

    ROW values

    The ROW values in the WHERE clause cannot be replaced with separated member fields.
    WHERE (vote, id) > (vote_x, id_x) cannot be replaced with:

    WHERE  vote >= vote_x
    AND    id   > id_x

    That would rule out all rows with id <= id_x, while we only want to do that for the same vote and not for the next. A correct equivalent would be:

    WHERE (vote = vote_x AND id > id_x) OR vote > vote_x
    

    ... which doesn't play along with indexes as nicely, and gets increasingly complicated for more columns.

    Would be simple for a single column, obviously. That's the special case I mentioned at the outset.

    Aligned direction

    The technique does not work for mixed / opposing directions in ORDER BY like:

    ORDER  BY vote ASC, id DESC

    You may be able to invert the value in a multicolumn expression index on:

    (vote, (id * -1))
    

    And use the same expression in ORDER BY:

    ORDER  BY vote ASC, (id * -1) ASC
    

    Related:

    Blog post by Markus Winand: