From: | Jenish <jenishvyas(at)gmail(dot)com> |
---|---|
To: | pgsql-performance(at)postgresql(dot)org |
Cc: | jenish vyas <jenishvyas(at)gmail(dot)com> |
Subject: | Strange behavior of child table. |
Date: | 2011-05-31 07:20:59 |
Message-ID: | BANLkTimZ4iGaJoxX9e5A_sFQVkwV5Muycw@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-performance |
Hi All,
I have created partition on table Round_Action , which has 3 child partition
tables.
When I am firing a simple select query with limit on parent table it is
taking huge time to execute. But when I am firing this query directly on
child table it is taking few milliseconds.
EXP.
select * from Round_Action where action_id =50000 limit 100 → execution time
80 sec
select * from Round_Action_CH1 action_id =50000 limit 100 → execution time
0.1 sec
Round_Action is the parent table and has no record in the tables, all the
records are lying in child tables.
Table is having index on action_id.
Partition is trigger based.
Postgres Version : (PostgreSQL) 8.4.6
Why there is difference in execution time? What I am doing wrong?
--
Thanks & regards,
JENISH
From | Date | Subject | |
---|---|---|---|
Next Message | Grzegorz Jaśkiewicz | 2011-05-31 09:26:59 | Re: Delete performance |
Previous Message | Jarrod Chesney | 2011-05-31 00:08:28 | Delete performance |