Re: Table partitioning

From: "Jim C(dot) Nasby" <jnasby(at)pervasive(dot)com>
To: Benjamin Krajmalnik <kraj(at)illumen(dot)com>
Cc: Chris Hoover <revoohc(at)gmail(dot)com>, pgsql-admin(at)postgresql(dot)org
Subject: Re: Table partitioning
Date: 2006-04-26 22:52:01
Message-ID: 20060426225201.GH97354@pervasive.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Can we see the output of \d tablename as well as EXPLAIN ANALYZE of the
select?

On Wed, Apr 26, 2006 at 02:48:50PM -0600, Benjamin Krajmalnik wrote:
> Actually, right now there is no data in those partitions.
>
> All of the data is currently in the parent table (I have not yet created
> the trigger which will route the data to the correct partition).
>
> I just found to items intriguing - first, that the indices and other
> properties other than the field definition were not inherited (is this
> how this is supposed to work?), and second, that PG first retrieves the
> entire result set and then limits it (or at least that appear to be how
> it is working).
>
> If the order by clause were an expression, I can understand where it
> would have to first retrieve the entire resultset and then limit it.
> However, when we are dealing with an order by clause running on an index
> or primary key, I would figure that it would only retrieve the number of
> rows limited, or if an offset is specified then go to the offset and
> only process the "limit" number of rows.
>
>
>
>
>
> ________________________________
>
> From: Chris Hoover [mailto:revoohc(at)gmail(dot)com]
> Sent: Wednesday, April 26, 2006 2:33 PM
> To: Benjamin Krajmalnik
> Cc: pgsql-admin(at)postgresql(dot)org
> Subject: Re: [ADMIN] Tale partitioning
>
>
>
> Each of the partition tables needs it's own set of indexes. Build them,
> and see if the does not fix your performance issues. Also, be sure you
> turned on the constraint_exclusion parameter, and each table (other than
> the "master") has an constraint on it that is unique.
>
> HTH,
>
> Chris
>
>
>
>

--
Jim C. Nasby, Sr. Engineering Consultant jnasby(at)pervasive(dot)com
Pervasive Software http://pervasive.com work: 512-231-6117
vcard: http://jim.nasby.net/pervasive.vcf cell: 512-569-9461

In response to

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message Tom Lane 2006-04-26 23:22:26 Re: need a bit of help
Previous Message Jim C. Nasby 2006-04-26 22:50:36 Re: Tale partitioning