Uploaded image for project: 'Ignite'
  1. Ignite
  2. IGNITE-11891

Multi-column index - query out of memory

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Open
    • Major
    • Resolution: Unresolved
    • 2.7
    • None
    • sql

    Description

      My application uses a table for logging events. Something like:

       

          create table event (
             id bigint not null,
              level varchar(8) not null,
              timestamp bigint not null,
              message varchar(4096) not null,
              primary key (id)
          ) ;
      

      I have two indexes:

       

      create index index_event_timestamp on event (timestamp desc)
      create index index_event_level on event (level, timestamp desc) 
      

      The idea is to support both the following queries:

       

      select * from event order by timestamp desc limit 25
      select * from event where level = 'WARNING' order by timestamp desc limit 25
      

      Once the table size increases to several million records, the second query generates OOM on the server. From what I can see (from the explain results), the index_event_level is used to fetch records with WARNING level, but the timestamp column available with the index is not used in the "order by" clause. The server attempts to fetch all records and then sort them by timestamp, despite the index already doing this...

      I removed the second index as a work-around, and the query runs faster on the first index - it scans index_event_timestamp, and retrieves the records with level=WARNING. It's smart to realize that the scan results are already sorted correctly.

       

      Attachments

        Activity

          People

            Unassigned Unassigned
            joao_g_fonseca João Fonseca
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated: