Re: Why date index is not used

Поиск
Список
Период
Сортировка
От Dave Dutcher
Тема Re: Why date index is not used
Дата
Msg-id 01de01c68b37$33e22a80$8300a8c0@tridecap.com
обсуждение исходный текст
Ответ на Re: Why date index is not used  (Tomas Vondra <tv@fuzzy.cz>)
Список pgsql-performance
Actually It looks to me like the sorting is the slow part of this query.
Maybe if you did create an index on both kuupaev and kellaaeg it might
make the sorting faster.  Or maybe you could try increasing the server's
work mem.  The sort will be much slower if the server can't do the whole
thing in ram.



> -----Original Message-----
> From: pgsql-performance-owner@postgresql.org
> [mailto:pgsql-performance-owner@postgresql.org] On Behalf Of
> Tomas Vondra
> Sent: Thursday, June 08, 2006 2:20 PM
> To: Andrus
> Cc: pgsql-performance@postgresql.org
> Subject: Re: [PERFORM] Why date index is not used
>
>
> More precisely - the Postgres could use the index to speed up the
> sorting, but in this case the sorting is very fast (less than one
> second according to the output), so Postgres probably decided not
> to use the index because it would be slower.
>
> Btw. have you run ANALYZE on the table recently? What is the number
> of distinct values in the 'kuupaev' column?
>
> Tomas
>
> > Why Postgres 8.1 does not use makse_kuupaev_idx index in
> the following query
> > ?
> >
> > How to speed this query up ?
> >
> > explain analyze select * from makse order by kuupaev desc,
> kellaaeg desc
> > limit 100
> >
> > "Limit  (cost=62907.94..62908.19 rows=100 width=876) (actual
> > time=33699.551..33701.001 rows=100 loops=1)"
> > "  ->  Sort  (cost=62907.94..63040.49 rows=53022 width=876) (actual
> > time=33699.534..33700.129 rows=100 loops=1)"
> > "        Sort Key: kuupaev, kellaaeg"
> > "        ->  Seq Scan on makse  (cost=0.00..2717.22
> rows=53022 width=876)
> > (actual time=0.020..308.502 rows=53028 loops=1)"
> > "Total runtime: 37857.177 ms"
> >
> >
> > CREATE TABLE makse(
> >   kuupaev date,
> >   kellaaeg char(6) NOT NULL DEFAULT ''::bpchar,
> >   guid char(36) NOT NULL,
> >   CONSTRAINT makse_pkey PRIMARY KEY (guid) )
> >
> >
> > CREATE INDEX makse_kuupaev_idx  ON makse  USING btree  (kuupaev);
> >
> >
> > Andrus.
>
>
> ---------------------------(end of
> broadcast)---------------------------
> TIP 4: Have you searched our list archives?
>
               http://archives.postgresql.org


В списке pgsql-performance по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Why date index is not used
Следующее
От: "Jim C. Nasby"
Дата:
Сообщение: Re: Why date index is not used