How to best partition table

From: "Danny Lo" <lo(dot)dannyk(at)gmail(dot)com>
To: <pgsql-novice(at)postgresql(dot)org>
Subject: How to best partition table
Date: 2010-04-14 01:10:24
Message-ID: 4bc51602.e22be50a.6e9a.7044@mx.google.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

Thanks Jasen for your response to my previous question on table
partitioning on query performance.

A related question is how I should actually setup the table partition to
best optimize performance.

Unfortunately, my table of 20 columns will be about 1-1.5TB, much larger
than 20GB.

Specifically, should I be using a range partition or list partition or maybe
both (ie further partitioning a child table?) and how many partitions should
I actually use.

The table contains data for two years on a list of stocks and their stock
attributes (eg prices etc) at a particular date and time.

The majority of the queries run on this table will include the stock code &
date in the where clause.

For eg:

select * from tablename

where stock_code = 'IBM'

and date = '17-Oct-2009'

If I were to partition by month (24 tables over 2 years), I would still have
tables around 45GB. However, I assume there is a balance between performance
and administrative overhead.

Thanks again.

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message Daniel Hutchison 2010-04-14 02:18:07 PLPerl not installed correctly?
Previous Message Andrej 2010-04-13 19:30:46 Re: AWK script