Re: Sort and index

From: "Dave Held" <dave(dot)held(at)arrayservicesgrp(dot)com>
To: <pgsql-performance(at)postgresql(dot)org>
Subject: Re: Sort and index
Date: 2005-04-18 15:44:43
Message-ID: 49E94D0CFCD4DB43AFBA928DDD20C8F9026184B6@asg002.asg.local
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

> -----Original Message-----
> From: Andrei Gaspar [mailto:andi(at)softnrg(dot)dnttm(dot)ro]
> Sent: Monday, April 18, 2005 10:36 AM
> To: pgsql-performance(at)postgresql(dot)org
> Subject: [PERFORM] Sort and index
>
> I thought that an index can be used for sorting.
> I'm a little confused about the following result:
>
> create index OperationsName on Operations(cOperationName);
> explain SELECT * FROM Operations ORDER BY cOperationName;
> QUERY PLAN
> --------------------------------------------------------------
> ---------
> Sort (cost=185.37..189.20 rows=1532 width=498)
> Sort Key: coperationname
> -> Seq Scan on operations (cost=0.00..104.32 rows=1532 width=498)
> (3 rows)
>
> Is this supposed to be so?

Since you are fetching the entire table, you are touching all the rows.
If the query were to fetch the rows in index order, it would be seeking
all over the table's tracks. By fetching in sequence order, it has a
much better chance of fetching rows in a way that minimizes head seeks.
Since disk I/O is generally 10-100x slower than RAM, the in-memory sort
can be surprisingly slow and still beat indexed disk access. Of course,
this is only true if the table can fit and be sorted entirely in memory
(which, with 1500 rows, probably can).

__
David B. Held
Software Engineer/Array Services Group
200 14th Ave. East, Sartell, MN 56377
320.534.3637 320.253.7800 800.752.8129

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Tom Lane 2005-04-18 15:50:49 Re: immutable functions vs. join for lookups ?
Previous Message Greg Stark 2005-04-18 15:43:54 Re: How to improve db performance with $7K?