From: | Shaun Thomas <sthomas(at)optionshouse(dot)com> |
---|---|
To: | Vincenzo Melandri <vmelandri(at)imolinfo(dot)it> |
Cc: | <pgsql-performance(at)postgresql(dot)org> |
Subject: | Re: Seq scan on 10million record table.. why? |
Date: | 2012-10-30 13:53:00 |
Message-ID: | 508FDBBC.2010807@optionshouse.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-performance |
On 10/30/2012 07:15 AM, Vincenzo Melandri wrote:
> Merge Join (cost=2604203.98..2774528.51 rows=129904 width=20)
> Merge Cond: (((( big_table.key1)::numeric) =
> data_sequences_table.key1) AND ((( big_table.key2)::numeric) =
> data_sequences_table.key2))
> -> Sort (cost=2602495.47..2635975.81 rows=13392135 width=20)
> Sort Key: ((big_table.key1)::numeric), ((big_table.key2)::numeric)
> -> Seq Scan on big_table (cost=0.00..467919.35 rows=13392135 width=20)
> -> Sort (cost=1708.51..1709.48 rows=388 width=32)
> Sort Key: data_sequences_table.key1, data_sequences_table.key2
> -> Seq Scan on data_sequences_table (cost=0.00..1691.83
> rows=388 width=32)
> Filter: (import_id = 1351592072::numeric)
As always, we need to see an EXPLAIN ANALYZE, not just an EXPLAIN. We
also need to know the version of PostgreSQL and your server settings.
Please refer to this:
http://wiki.postgresql.org/wiki/Slow_Query_Questions
I see a lot of NUMERIC conversions in there, which suggests you're using
NUMERIC for your keys. That's not really recommended practice, but also
suggests the possibility that all your types are not the same. So it
would be very helpful to also see the actual CREATE TABLE, and CREATE
INDEX statements for those tables.
We can't help you with this limited information. Sorry.
--
Shaun Thomas
OptionsHouse | 141 W. Jackson Blvd. | Suite 500 | Chicago IL, 60604
312-444-8534
sthomas(at)optionshouse(dot)com
______________________________________________
See http://www.peak6.com/email_disclaimer/ for terms and conditions related to this email
From | Date | Subject | |
---|---|---|---|
Next Message | Shaun Thomas | 2012-10-30 14:02:28 | Re: How to keep queries low latency as concurrency increases |
Previous Message | Gabriele Bartolini | 2012-10-30 13:45:11 | Re: Seq scan on 10million record table.. why? |