Re: Too slow querying a table of 15 million records - Mailing list pgsql-performance

From PFC
Subject Re: Too slow querying a table of 15 million records
Date
Msg-id op.ss3ba3loth1vuj@localhost
Whole thread Raw
In response to Too slow querying a table of 15 million records  (kjelle@bingon.no)
Responses Re: Too slow querying a table of 15 million records
List pgsql-performance

> database=> explain select date_trunc('hour', time),count(*) as total from
> test where p1=53 and time > now() - interval '24 hours' group by
> date_trunc order by date_trunc ;

    1. Use CURRENT_TIMESTAMP (which is considered a constant by the planner)
instead of now()
    2. Create a multicolumn index on (p1,time) or (time,p1) whichever works
better

pgsql-performance by date:

Previous
From: John A Meinel
Date:
Subject: Re: read block size
Next
From: Michael Stone
Date:
Subject: Re: read block size