partioning tips? - Mailing list pgsql-performance

From Richard Yen
Subject partioning tips?
Date
Msg-id 0E1248CD-551D-4F40-95AD-17336996ADAF@richyen.com
Whole thread Raw
Responses Re: partioning tips?  (Dave Crooke <dcrooke@gmail.com>)
Re: partioning tips?  (Josh Berkus <josh@agliodbs.com>)
List pgsql-performance
Hello,

I'm about to embark on a partitioning project to improve read performance on some of our tables:

db=# select relname,n_live_tup,pg_size_pretty(pg_relation_size(relid)) from pg_stat_all_tables where schemaname =
'public'order by n_live_tup desc limit 10; 
               relname               | n_live_tup | pg_size_pretty
-------------------------------------+------------+----------------
 objects                            |  125255895 | 11 GB
 papers                      |  124213085 | 14 GB
 stats                      |  124202261 | 9106 MB
 exclusions                      |   53090902 | 3050 MB
 marks                            |   42467477 | 4829 MB
 student_class                     |   31491181 | 1814 MB
 users                              |   19906017 | 3722 MB
 view_stats                   |   12031074 | 599 MB
 highlights                       |   10884380 | 629 MB

Problem is, I have foreign keys that link almost all of our tables together (as a business requirement/IT policy).
However,I know (er, I have a gut feeling) that many people out there have successfully deployed table partitioning, so
I'mhoping to solicit some advice with respect to this.  I've looked at documentation, tried creating a prototype,
etc...lookslike foreign keys have to go.  But do they?  What have other people out there done to get their tables
partitioned?

Any input would be much appreciated.

Thanks!
--Richard

pgsql-performance by date:

Previous
From: Robert Haas
Date:
Subject: Re: autovacuum strategy / parameters
Next
From: Dave Crooke
Date:
Subject: Re: partioning tips?