Re: [PERFORM] Question about disk IO an index use and seeking advice

2008-04-24 Thread PFC
An index scan looks through the index and pulls in each pages as it sees it. A bitmap index scan looks through the index and makes a sorted list of all the pages it needs and then the bitmap heap scan reads all the pages. If your data is scattered then you may as well do the index scan, but

Re: [PERFORM] Question about disk IO an index use and seeking advice

2008-04-24 Thread Nikolas Everett
On Thu, Apr 24, 2008 at 12:56 PM, PFC <[EMAIL PROTECTED]> wrote: > > Our ~600,000,000 >> row table is changed very infrequently and is on a 12 disk software raid-6 >> for historical reasons using an LSI Logic / Symbios Logic SAS1068 PCI-X >> Fusion-MPT SAS Our ~50,000,000 row staging table is o

Re: [PERFORM] Question about disk IO an index use and seeking advice

2008-04-24 Thread PFC
Our ~600,000,000 row table is changed very infrequently and is on a 12 disk software raid-6 for historical reasons using an LSI Logic / Symbios Logic SAS1068 PCI-X Fusion-MPT SAS Our ~50,000,000 row staging table is on a 12 disk hardware raid-10 using a Dell PowerEdge Expandable RAID con

Re: [PERFORM] Question about disk IO an index use and seeking advice

2008-04-24 Thread Matthew Wakeling
On Thu, 24 Apr 2008, Nikolas Everett wrote: The setup is kind of a beast. No kidding. When I run dstat I see only around 2M/sec and it is not consistent at all. Well, it is having to seek over the disc a little. Firstly, your table may not be wonderfully ordered for index scans, but goodne