How to best partition table - Mailing list pgsql-novice

From Danny Lo
Subject How to best partition table
Date
Msg-id 4bc51602.e22be50a.6e9a.7044@mx.google.com
Whole thread Raw
List 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.

pgsql-novice by date:

Previous
From: Andrej
Date:
Subject: Re: AWK script
Next
From: Donn Washburn
Date:
Subject: first steps