Re: same plan, add 1 condition, 1900x slower - Mailing list pgsql-performance

From Tom Lane
Subject Re: same plan, add 1 condition, 1900x slower
Date
Msg-id 10164.1131643400@sss.pgh.pa.us
Whole thread Raw
In response to same plan, add 1 condition, 1900x slower  (Mitch Skinner <mitch@egcrc.net>)
Responses Re: same plan, add 1 condition, 1900x slower
List pgsql-performance
Mitch Skinner <mitch@egcrc.net> writes:
> This is with Postgres 8.0.3.  Any advice is appreciated.

These are exactly the same plan, except for the addition of the extra
filter condition ...

>    ->  Index Scan using external_id_map_primary_key on external_id_map
> eim  (cost=0.00..2345747.01 rows=15560708 width=26) (actual
> time=0.061..2.944 rows=2175 loops=1)

>    ->  Index Scan using external_id_map_primary_key on external_id_map
> eim  (cost=0.00..2384648.78 rows=4150 width=26) (actual
> time=0.020..21068.508 rows=1186 loops=1)
>          Filter: (source = 'SCH'::bpchar)

Apparently, you are using a platform and/or locale in which strcoll() is
spectacularly, god-awfully slow --- on the order of 10 msec per comparison.
This is a bit hard to believe but I can't make sense of those numbers
any other way.  What is the platform exactly, and what database locale
and encoding are you using?

            regards, tom lane

pgsql-performance by date:

Previous
From: mark@mark.mielke.cc
Date:
Subject: Re: WAL sync behaviour
Next
From: Tom Lane
Date:
Subject: Re: WAL sync behaviour