Re: Performance issues when the number of records are around 10 Million - Mailing list pgsql-performance

From Josh Berkus
Subject Re: Performance issues when the number of records are around 10 Million
Date
Msg-id 4BE9FEB5.7080107@agliodbs.com
Whole thread Raw
In response to Performance issues when the number of records are around 10 Million  (venu madhav <venutaurus539@gmail.com>)
List pgsql-performance
> * select e.cid, timestamp, s.sig_class, s.sig_priority, s.sig_name,
> e.sniff_ip, e.sniff_channel, s.sig_config, e.wifi_addr_1,
> e.wifi_addr_2, e.view_status, bssid  FROM event e, signature s WHERE
> s.sig_id = e.signature   AND e.timestamp >= '1270449180' AND e.timestamp
> < '1273473180'  ORDER BY e.cid DESC,  e.cid DESC limit 21 offset 10539780;

Anything with an offset that high is going to result in a sequential
scan of most of the table.

--
                                  -- Josh Berkus
                                     PostgreSQL Experts Inc.
                                     http://www.pgexperts.com

pgsql-performance by date:

Previous
From: Josh Berkus
Date:
Subject: Re: 8K recordsize bad on ZFS?
Next
From: "Kevin Grittner"
Date:
Subject: Re: Performance issues when the number of records are around 10 Million