Re: Oddball data distribution giving me planner headaches

Поиск
Список
Период
Сортировка
От David Johnston
Тема Re: Oddball data distribution giving me planner headaches
Дата
Msg-id 037c01ccb135$ef99d140$cecd73c0$@yahoo.com
обсуждение исходный текст
Ответ на Re: Oddball data distribution giving me planner headaches  (Jeff Amiel <becauseimjeff@yahoo.com>)
Ответы Re: Oddball data distribution giving me planner headaches
Список pgsql-general
-----Original Message-----
From: Jeff Amiel [mailto:becauseimjeff@yahoo.com]
Sent: Friday, December 02, 2011 3:52 PM
To: pgsql-general@postgresql.org; David Johnston
Subject: RE: [GENERAL] Oddball data distribution giving me planner headaches


--- On Fri, 12/2/11, David Johnston <polobo@yahoo.com> wrote:

> From: David Johnston <polobo@yahoo.com> What kind of plan does the
> following give?
>
> EXPLAIN ANALYZE
> SELECT *
> FROM customer_rel p
> JOIN customer c ON (p.parent_customer = c.customer_id) WHERE
> c.customer_type = 'DISTRIBUTOR'

Nearly identical output

"Nested Loop  (cost=0.00..29624.69 rows=931 width=97) (actual
time=0.032..1330.208 rows=1025401 loops=1)"
"  ->  Seq Scan on customer c  (cost=0.00..25429.10 rows=136 width=71)
(actual time=0.017..212.059 rows=68 loops=1)"
"        Filter: (customer_type = 'DISTRIBUTOR'::bpchar)"
"  ->  Index Scan using rel_parent on customer_rel p  (cost=0.00..30.76
rows=7 width=26) (actual time=0.006..7.732 rows=15079 loops=68)"
"        Index Cond: (parent_customer = c.customer_id)"
"Total runtime: 1544.281 ms"

-----------------------------------------------------

What happens if you disable, say, nested loops and/or index scans?

David J.



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

Предыдущее
От: Pavel Stehule
Дата:
Сообщение: Re: How to convert HEX to ASCII?
Следующее
От: Jeff Amiel
Дата:
Сообщение: Re: Oddball data distribution giving me planner headaches