Re: Query Against a dblink View Takes Too Long to Return

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Dawn Hollingsworth <dmh(at)airdefense(dot)net>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Query Against a dblink View Takes Too Long to Return
Date: 2003-03-04 02:43:27
Message-ID: 19784.1046745807@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Dawn Hollingsworth <dmh(at)airdefense(dot)net> writes:
> Nested Loop (cost=0.00..466.51 rows=1 width=24) (actual
> time=226.39..1018072.99 rows=9353 loops=1)
> -> Subquery Scan t1 (cost=0.00..0.01 rows=1 width=0) (actual
> time=225.99..345.86 rows=9353 loops=1)
> -> Result (cost=0.00..0.01 rows=1 width=0) (actual
> time=225.98..303.29 rows=9353 loops=1)
> -> Seq Scan on allowed_station_view av (cost=0.00..162.53 rows=9353
> width=20) (actual time=0.01..31.77 rows=9353 loops=9353)
> Total runtime: 1018092.69 msec

The planner evidently thinks that dblink() will return only one row,
and consequently it chooses a plan that would be fast in that case
... but is dog-slow for 9000 rows.

Probably the easiest answer is to update to 7.3 and use the new
function-in-FROM syntax for invoking dblink. That should result
in more useful assumptions about the number of rows returned.

regards, tom lane

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Juan Fernández 2003-03-04 09:11:54 SQL books
Previous Message Tom Lane 2003-03-04 02:25:40 Re: SCHEMA's