SlideShare a Scribd company logo
Pro PostgreSQL Robert Treat omniti.com brighterlamp.org
Who Am I?  (Why Listen To Me) O-0 PostgreSQL User Since 6.5.x DBA of High Traffic / Large PostgreSQL Instances Long Time Contributor to PostgreSQL Project Contribute / Maintain Several Open Source Projects Co-Author Beginning PHP & PostgreSQL 8 (Apress)
Outline O-1 What you need to know about the project Getting started Upgrading Configuring your server Hardware Availability Scalability Query tuning Tablespaces Partitioning Stuff you should know about
K-0 Know Your Way Around The Project
Know Your Way Around The Project K-1 www.postgresql.org downloads documentation bug reports security alerts wiki support companies rss –> news – events - versions
Know Your Way Around The Project K-2 www.pgfoundry.org projects.postgresql.org Modules Programs Resources URI Type CIText SkyTools  Npgsql Pl/Proxy pg_bulkload plpgsql-debugger sample databases
Know Your Way Around The Project K-3 www.planetpostgresql.org Project News  Community News Helpful Tips / Examples
Know Your Way Around The Project K-4 archives.postgresql.org mailing list archives back to 1997 full text search via postgtresql 8.3 keyword search suggestions lists for users, developers, regional, user groups
Know Your Way Around The Project K-5 #postgresql irc.freenode.net real time help rtfm_please - ??help
Know Your Way Around The Project K-6 project management core team committers -hackers roadmap  web team
S-0 Get Off To A Good Start
S-1 Get Off To A Good Start Use package management Consistent Standardized Simple
Different across systems Upgrades are an issue Trust your packager? S-2 Get Off To A Good Start Use package management
Different across systems Upgrades are an issue Trust your packager? S-2 Get Off To A Good Start Use package management Don't Be Afraid To Roll Your Own
S-4 Get Off To A Good Start $PGDATA/pg_log /var/log/pgsql when in doubt... (postgresql.conf) separate disk  Configure Logging Logging is often overlooked,  but is the first step toward troubleshooting!
S-5 Get Off To A Good Start most systems have different defaults firewalls/ selinux (FATAL) rtfm (pg_hba.conf, grant, revoke) Configure Authentication
S-6 Get Off To A Good Start TRUST md5 IDENT Authentication Methods
S-7 Get Off To A Good Start trust these more than your own code package dependent use different schemas (when able) pgcrypto pgstatstuple, pg_buffercache, pg_freespacemap /contrib
S-8 Get Off To A Good Start package dependent some are non-core  (plruby, plr, plphp) varying functionality varying levels of trust don't be afraid, test! procedural languages
U-0 Let's Talk About Upgrades
U-1 Let's Talk About Upgrades Versioning First Digit ( 7 .4.16 ->  8 .2.0) Second Digit (8.2.4 -> 8.3.0) Third Digit (8.3.0 -> 8.3.1)
U-2 Let's Talk About Upgrades Versioning First Digit (7.4.16 -> 8.2.0) Second Digit (8. 2 .4 -> 8. 3 .0) Third Digit (8.3.0 -> 8.3.1)
U-3 Let's Talk About Upgrades Versioning First Digit (7.4.16 -> 8.2.0) Second Digit (8.2.4 -> 8.3.0) Third Digit (8.3. 0  -> 8.3. 1 )
U-4 Let's Talk About Upgrades Achtung!! Make Backups! Read the Release Notes!
U-5 Let's Talk About Upgrades pg_dump/pg_restore simple  -Fc is your friend dump with new version of pg_dump pitfalls (time, hdd)
U-6 Let's Talk About Upgrades the slony method not simple create slave on new version switchover (switch back?) pitfalls (initial synch, compatibility)
U-7 Let's Talk About Upgrades pg_migrator in place upgrades rewrites system catalog info no way to go back (fs snapshots) still new, under-flux 8.1 -> 8.2 only (for now)
U-8 Let's Talk About Upgrades upgrading older db <= 7.3 is no longer supported (upgrade now!) pg_dump 8.2 has issues with <= 7.2  you can upgrade to 7.3 first use adddepends on 7.3 install  slony requires 7.3 (or 7.4) (or 8.3) or newer pg_migrator (lol)
C-0 Figure Your Configure
C-1 Figure Your Configure the basics : performance effective_cache_size shared_buffers default_statistics_target work_mem checkpoint_segments
C-2 Figure Your Configure the basics : logging stderr/pg_log vs. syslog/eventlog log_min_error_statement (error!) log_min_duration_statement log_line_prefix (%d, %p, %t)
C-3 Figure Your Configure other stuff worth looking at maintenance_work_mem max_prepared_transactions update_process_title max_fsm_pages synchronous_commit
M-0 Routine Maintenance
M-1 Routine Maintenance a word about vacuum reclaim usable space update table stats avoid xid wraparound
M-2 Routine Maintenance autovacuum : just do it! autovacuum track_activities track_counts autovacuum_max_freeze_age pg_autovacuum ?
M-3 Routine Maintenance other stuff worth looking at reindexing logfiles backups failover
P-0 Hardware For Software People
P-1 Hardware For Software People you can be cheap on the licensing,  don't be cheap on the hardware Cram the (ecc) RAM Redundant Disks  (Software|Hardware) RAID Prefer SCSI, Accept SATA RAID Z (JBOD)
P-2 Hardware For Software People cpu and you Multiple CPU's work wonders,  up to 8 processors (16 OK) Opteron, Xeon, Core 2 Duo  http://tweakers.net/
P-3 Hardware For Software People disk do's Put WAL on it's own disk (RAID 1) Put DATA directory on it's own disk (RAID 10) More Spindles is Good  More Controllers Even Gooder (tablespaces!) Battery Backed Controllers, Write cache enabled
P-4 Hardware For Software People disk dont's NFS == Not Fully Safe!  RAID 5 Beware disks / controllers that Lie
A-0 Availability (Not Scalability)
A-1 Availability what do we mean by availability? not backups (exactly) not replication (necessarily) not clustering (even less so)
A-2 Availability what do we mean by availability? if (kablooy) then  (ok) not backups (exactly) not replication (necessarily) not clustering (even less so)
A-3 Availability pg_dump traditionally used for backups  send dump to another server constantly run restore process large time, i/o constraints
A-4 Availability filesystem snapshots zfs, lvm built on top of pitr backup commands traditionally used for backups  copy snapshot to another server cumbersome time, i/o constraints
A-5 Availability pitr create second, standby server ship wal logs to new server less time/io than pg_dump 8.1 -> cold standby 8.2 -> warm standby 8.4 -> hot standby ?
A-6 Availability slony asynchronous, master-slave replication controlled switchover, failover low i/o, time constraints other benefits (upgrades, scaling)
A-7 Availability bucardo asynchronous, multi-master replication also does master-slave low i/o, time constraints other benefits (upgrades, scaling)
A-8 Availability shared disk one copy of PGDATA on shared storage standby takes over akin to db crash shared disk is point of failure (raid) STONITH
A-9 Availability filesystem replication drbd filesystem mirrored between servers synchronized, ordered writes single disk system?
A-10 Availability pgpool dual-master, statement based little caveats (random(),now(),sequences) bigger caveats (security, password, pg_hba) pgpool becomes failure point
A-11 Availability postgres-r multi-master, synchronous just open sourced this month!  small community  not proven
H-0 Scalability
H-1 Scalability what is scaling? “ How well a solution to some  problem will work when the  relative size of the problem  increases” - Theo Schlossnagle
H-2 Scalability bigger, better, faster, more! postgresql scales up pretty well more disks (tablespaces) more cpu's, more ram connection pooling  1000+ connections, TB+ data
H-3 Scalability pgpool dual-master, statement based little caveats (random(),now(),sequences) bigger caveats (security, password, pg_hba) pgpool becomes failure point
H-4 Scalability pg_bouncer simple connection pooler 10/1 -> 40/1  caveats (prepared statements, temp tables) skype, myyearbook.com
H-5 Scalability slony asynchronous, master-slave replication multiple, cascading slaves scales read operations other benefits (upgrades, scaling) solid user base
H-6 Scalability bucardo asynchronous, multi-master replication also does master-slave low i/o, time constraints other benefits (upgrades, scaling)
H-7 Scalability pgpool-II single db over multiple machines scales read operations replication, load balance, parallel query green technology
H-8 Scalability pgcluster synchronous multi-master replication significant complexity scales read operations other uses (failover abilities) green technology
H-9 Scalability postgres-r multi-master, synchronous just open source this month! small community other uses (failover abilities) not proven
H-10 Scalability pitr read-only slaves based on pitr, warm standby operation core team officially supporting development 8.4 -> synchronous wal shipping 8.? -> read only slaves
J-0 Query Your Queries
J-1 Query Your Queries finding slow queries: log_min_duration_statement -1, 0 , n  superuser only alter user LOG:  duration: 5005.273 ms  statement: select pg_sleep(5);
J-2 Query Your Queries finding slow queries: pgfouine / pqa log analyzers command line, generate reports i/o load http://pgfouine.projects.postgresql.org/reports.html http://pqa.projects.postgresql.org/example.html
J-3 Query Your Queries finding slow queries: pg_stat_all_tables pagila=# \d pg_stat_all_tables View &quot;pg_catalog.pg_stat_all_tables&quot; Column  |  Type  | ------------------+-------------+ relid  | oid  | schemaname  | name  | relname  | name  | seq_scan  | bigint  | seq_tup_read  | bigint  | idx_scan  | bigint  | idx_tup_fetch  | bigint  | n_tup_ins  | bigint  | n_tup_upd  | bigint  | n_tup_del  | bigint  | n_tup_hot_upd  | bigint  | n_live_tup  | bigint  | n_dead_tup  | bigint  | last_vacuum  | timestamptz | last_autovacuum  | timestamptz | last_analyze  | timestamptz | last_autoanalyze | timestamptz |
J-4 Query Your Queries finding slow queries: pg_stat_all_tables pagila=# \d pg_stat_all_tables View &quot;pg_catalog.pg_stat_all_tables&quot; Column  |  Type  | ------------------+-------------+ relid  | oid  | schemaname  | name  | relname  | name  | seq_scan  | bigint  | seq_tup_read  | bigint  | idx_scan  | bigint  | idx_tup_fetch  | bigint  | n_tup_ins  | bigint  | n_tup_upd  | bigint  | n_tup_del  | bigint  | n_tup_hot_upd  | bigint  | n_live_tup  | bigint  | n_dead_tup  | bigint  | last_vacuum  | timestamptz | last_autovacuum  | timestamptz | last_analyze  | timestamptz | last_autoanalyze | timestamptz |
J-5 Query Your Queries finding slow queries: pg_stat_all_tables pagila=# \d pg_stat_all_tables View &quot;pg_catalog.pg_stat_all_tables&quot; Column  |  Type  | ------------------+-------------+ relid  | oid  | schemaname  | name  | relname  | name  | seq_scan  | bigint  | seq_tup_read  | bigint  | idx_scan  | bigint  | idx_tup_fetch  | bigint  | n_tup_ins  | bigint  | n_tup_upd  | bigint  | n_tup_del  | bigint  | n_tup_hot_upd  | bigint  | n_live_tup  | bigint  | n_dead_tup  | bigint  | last_vacuum  | timestamptz | last_autovacuum  | timestamptz | last_analyze  | timestamptz | last_autoanalyze | timestamptz |
J-6 Query Your Queries finding slow queries: pg_stat_all_tables pagila=# \d pg_stat_all_tables View &quot;pg_catalog.pg_stat_all_tables&quot; Column  |  Type  | ------------------+-------------+ relid  | oid  | schemaname  | name  | relname  | name  | seq_scan  | bigint  | seq_tup_read  | bigint  | idx_scan  | bigint  | idx_tup_fetch  | bigint  | n_tup_ins  | bigint  | n_tup_upd  | bigint  | n_tup_del  | bigint  | n_tup_hot_upd  | bigint  | n_live_tup  | bigint  | n_dead_tup  | bigint  | last_vacuum  | timestamptz | last_autovacuum  | timestamptz | last_analyze  | timestamptz | last_autoanalyze | timestamptz |
J-7 Query Your Queries finding slow queries: pg_stat_all_tables pagila=# \d pg_stat_all_tables View &quot;pg_catalog.pg_stat_all_tables&quot; Column  |  Type  | ------------------+-------------+ relid  | oid  | schemaname  | name  | relname  | name  | seq_scan  | bigint  | seq_tup_read  | bigint  | idx_scan  | bigint  | idx_tup_fetch  | bigint  | n_tup_ins  | bigint  | n_tup_upd  | bigint  | n_tup_del  | bigint  | n_tup_hot_upd  | bigint  | n_live_tup  | bigint  | n_dead_tup  | bigint  | last_vacuum  | timestamptz | last_autovacuum  | timestamptz | last_analyze  | timestamptz | last_autoanalyze | timestamptz |
J-8 Query Your Queries finding slow queries: pg_stat_all_tables pagila=# \d pg_stat_all_tables View &quot;pg_catalog.pg_stat_all_tables&quot; Column  |  Type  | ------------------+-------------+ relid  | oid  | schemaname  | name  | relname  | name  | seq_scan  | bigint  | seq_tup_read  | bigint  | idx_scan  | bigint  | idx_tup_fetch  | bigint  | n_tup_ins  | bigint  | n_tup_upd  | bigint  | n_tup_del  | bigint  | n_tup_hot_upd  | bigint  | n_live_tup  | bigint  | n_dead_tup  | bigint  | last_vacuum  | timestamptz | last_autovacuum  | timestamptz | last_analyze  | timestamptz | last_autoanalyze | timestamptz |
J-9 Query Your Queries finding slow queries: pg_stat_all_indexes pagila=# \d pg_stat_all_indexes View &quot;pg_catalog.pg_stat_all_indexes&quot; Column  |  Type  | ---------------+--------+ relid  | oid  | indexrelid  | oid  | schemaname  | name  | relname  | name  | indexrelname  | name  | idx_scan  | bigint | idx_tup_read  | bigint | idx_tup_fetch | bigint |
J-10 Query Your Queries finding slow queries: pg_stat_all_indexes pagila=# \d pg_stat_all_indexes View &quot;pg_catalog.pg_stat_all_indexes&quot; Column  |  Type  | ---------------+--------+ relid  | oid  | indexrelid  | oid  | schemaname  | name  | relname  | name  | indexrelname  | name  | idx_scan  | bigint | idx_tup_read  | bigint | idx_tup_fetch | bigint |
J-11 Query Your Queries finding slow queries: pg_statio_all_tables pagila=# \d pg_statio_all_tables View &quot;pg_catalog.pg_statio_all_tables&quot; Column  |  Type  | -----------------+--------+ relid  | oid  | schemaname  | name  | relname  | name  | heap_blks_read  | bigint | heap_blks_hit  | bigint | idx_blks_read  | bigint | idx_blks_hit  | bigint | toast_blks_read | bigint | toast_blks_hit  | bigint | tidx_blks_read  | bigint | tidx_blks_hit  | bigint |
J-12 Query Your Queries finding slow queries: pg_statio_all_tables pagila=# \d pg_statio_all_tables View &quot;pg_catalog.pg_statio_all_tables&quot; Column  |  Type  | -----------------+--------+ relid  | oid  | schemaname  | name  | relname  | name  | heap_blks_read  | bigint | heap_blks_hit  | bigint | idx_blks_read  | bigint | idx_blks_hit  | bigint | toast_blks_read | bigint | toast_blks_hit  | bigint | tidx_blks_read  | bigint | tidx_blks_hit  | bigint |
J-13 Query Your Queries fixing slow queries: explain analyze universal tool good for specific queries “ explain” for large queries could be it's own talk
J-14 Query Your Queries fixing slow queries: explain analyze universal tool good for specific queries “ explain” for large queries could be it's own talk http://wiki.postgresql.org/Using_EXPLAIN
J-15 Query Your Queries fixing slow queries: indexing (basic) use explain to find large sequential reads use pg_stat_* tables to find numerous reads btree – (gist/gin) enable_indexscan, enable_bitmapscan dual column vs. single column
J-16 Query Your Queries fixing slow queries: indexing (partial) create index address_ba_part_idx  on address (district)  where district = 'Buenos Aires'; restrain index to rows that matter can give significant speed improvements where clause of index should match  where clause of query
J-17 Query Your Queries fixing slow queries: indexing (partial) create index customer_active_part_idx  on customer (customer_id)  where activebool is true; restrain index to rows that matter can give significant speed improvements where clause of index should match  where clause of query
J-18 Query Your Queries fixing slow queries: indexing (functional) some people prefer to call these expressional indexes
J-19 Query Your Queries fixing slow queries: indexing (expressional) create unique index one_true_email_xidx on customer (lower(email)); push expensive functions into your index system sees  just WHERE indexedcolumn = 'constant' expression of index should match expression of queries narrow scope, but nice gains
J-20 Query Your Queries fixing slow queries: indexing (expressional) create index fullname_xidx on customer ((first_name||' '||last_name)); push expensive functions into your index system sees  just WHERE indexedcolumn = 'constant' expression of index should match expression of queries narrow scope, but nice gains
J-21 Query Your Queries fixing slow queries: full text search uses lexmes and word stemming to find common words replacement for LIKE '%x%', ~* 'x'; supports multiple languages, custom dictionaries special indexing options
J-22 Indexing Options full text indexing gist vs. gin “ old school” slower for queries faster insert / update mature new in 8.2 faster for queries slower insert / update stable
N-0 PostgreSQL Tablespaces
N-1 PostgreSQL Tablespaces tablespaces? define logical locations for object placement point to locations on disk (uses symlinks) size determined by disk size (not pre-ordained) dedicate per db, split db across multiple tblspc
N-2 PostgreSQL Tablespaces tablespaces! split database over separate disks use stat, statio tables to gauge disk access create dedicated storage for workloads disk for read / write disk for read only large, slow disk for archiving disk for indexes
Q-0 PostgreSQL Partitioning
Q-1 PostgreSQL Partitioning partitioning? as table size grows, it becomes unmanageable use inheritance, rules, constraints to split data queries ignore non-relevant partitions could be it's own talk
Q-2 PostgreSQL Partitioning partitioning! as table size grows, it becomes unmanageable use inheritance, rules, constraints to split data queries ignore non-relevant partitions could be it's own talk http://www.pgcon.org/2007/schedule/events/41.en.html
Q-3 PostgreSQL Partitioning partitioning : key points determine list vs. range use triggers rather than rules partition creation vs. data population  automate maintenance
I-0 Other Stuff I Should Mention
I-1 Other Stuff I Should Mention pgcrypto cryptography type functions /contrib (export issues)  md5, sha1, blowfish, many more
I-2 Other Stuff I Should Mention dblink pg -> pg connections /contrib (still under development?) can have performance issues on large queries make it live in it's own schema
I-3 Other Stuff I Should Mention *-link heterogenous connections for postgresql db specific and db independent options any pl/u language can implement this  similar performance issues to dblink dblink-tds, dbi-link, oralink, odbclink http://www.pgfoundry.org/   (db link)
I-4 Other Stuff I Should Mention autonomous logging tool persistent logging for postgresql functions built on top of dblink  make it live in it's own schema https://labs.omniti.com/trac/pgsoltools
I-5 Other Stuff I Should Mention snapshot pitr clones full read/write copy of pitr slave static snapshot need solaris (zfs zone mojo) could re-implement on other systems https://labs.omniti.com/trac/pgsoltools
I-6 Other Stuff I Should Mention check_postgres nagios based monitoring script common items for warnings and alerts can be adapted to other uses http://bucardo.org/check_postgres
I-7 Other Stuff I Should Mention reconnoiter monitoring / graphing tool postgres based still pretty green https://labs.omniti.com/trac/reconnoiter
I-8 Other Stuff I Should Mention phpPgAdmin web based gui for postgresql remote administration of multiple servers implements much of postgresql functionality support back to 7.2? http://phppgadmin.sourceforge.net/
I-9 Other Stuff I Should Mention  ;-) my book?
I-10 Other Stuff I Should Mention  ;-) we're hiring Ops Ninjas Perl Kung-Fu Artists PHP Ninjas Database Samurai http://omniti.com/is/hiring
L-0 El Fin

More Related Content

PDF
Inside PostgreSQL Shared Memory
 
PDF
PostgreSQL Performance Tuning
PDF
Mastering PostgreSQL Administration
 
PDF
Streaming replication in practice
PDF
PostgreSQL Extensions: A deeper look
PDF
PDF
High Availability PostgreSQL with Zalando Patroni
ODP
PostgreSQL Administration for System Administrators
Inside PostgreSQL Shared Memory
 
PostgreSQL Performance Tuning
Mastering PostgreSQL Administration
 
Streaming replication in practice
PostgreSQL Extensions: A deeper look
High Availability PostgreSQL with Zalando Patroni
PostgreSQL Administration for System Administrators

What's hot (19)

PPT
A brief introduction to PostgreSQL
PDF
PostgreSQL High Availability in a Containerized World
PDF
PostgreSQL Streaming Replication Cheatsheet
PDF
Problems with PostgreSQL on Multi-core Systems with MultiTerabyte Data
PDF
Out of the box replication in postgres 9.4
PDF
Introduction to PostgreSQL for System Administrators
PPTX
Postgres-BDR with Google Cloud Platform
PDF
pgDay Asia 2016 - Swapping Pacemaker-Corosync for repmgr (1)
PDF
pgpool-II demonstration
PDF
plProxy, pgBouncer, pgBalancer
PDF
GitLab PostgresMortem: Lessons Learned
PDF
pgpool: Features and Development
PDF
Out of the box replication in postgres 9.4(pg confus)
PDF
Percona Toolkit for Effective MySQL Administration
PPTX
Automating Disaster Recovery PostgreSQL
PDF
PostgreSQL High Availability in a Containerized World
KEY
PostgreSQL
PPTX
Postgresql Database Administration Basic - Day2
PPTX
HADOOP 실제 구성 사례, Multi-Node 구성
A brief introduction to PostgreSQL
PostgreSQL High Availability in a Containerized World
PostgreSQL Streaming Replication Cheatsheet
Problems with PostgreSQL on Multi-core Systems with MultiTerabyte Data
Out of the box replication in postgres 9.4
Introduction to PostgreSQL for System Administrators
Postgres-BDR with Google Cloud Platform
pgDay Asia 2016 - Swapping Pacemaker-Corosync for repmgr (1)
pgpool-II demonstration
plProxy, pgBouncer, pgBalancer
GitLab PostgresMortem: Lessons Learned
pgpool: Features and Development
Out of the box replication in postgres 9.4(pg confus)
Percona Toolkit for Effective MySQL Administration
Automating Disaster Recovery PostgreSQL
PostgreSQL High Availability in a Containerized World
PostgreSQL
Postgresql Database Administration Basic - Day2
HADOOP 실제 구성 사례, Multi-Node 구성
Ad

Viewers also liked (19)

PPT
Building a Spatial Database in PostgreSQL
PDF
PostgreSQL Scaling And Failover
PDF
My experience with embedding PostgreSQL
PDF
Why use PostgreSQL?
PDF
Android & PostgreSQL
PDF
PostgreSQL Hooks for Fun and Profit
PDF
PostgreSQL and RAM usage
PDF
Get to know PostgreSQL!
PDF
Data Processing Inside PostgreSQL
 
PDF
Really Big Elephants: PostgreSQL DW
PDF
Howdah - An Application using Pylons, PostgreSQL, Simpycity and Exceptable
PDF
PostgreSQL Deep Internal
ODP
PostgreSQL Replication in 10 Minutes - SCALE
PDF
Full Text Search In PostgreSQL
PDF
alphorm.com - Formation PostgreSQL administration
PDF
A couple of things about PostgreSQL...
PDF
Postgresql database administration volume 1
PDF
5 Steps to PostgreSQL Performance
Building a Spatial Database in PostgreSQL
PostgreSQL Scaling And Failover
My experience with embedding PostgreSQL
Why use PostgreSQL?
Android & PostgreSQL
PostgreSQL Hooks for Fun and Profit
PostgreSQL and RAM usage
Get to know PostgreSQL!
Data Processing Inside PostgreSQL
 
Really Big Elephants: PostgreSQL DW
Howdah - An Application using Pylons, PostgreSQL, Simpycity and Exceptable
PostgreSQL Deep Internal
PostgreSQL Replication in 10 Minutes - SCALE
Full Text Search In PostgreSQL
alphorm.com - Formation PostgreSQL administration
A couple of things about PostgreSQL...
Postgresql database administration volume 1
5 Steps to PostgreSQL Performance
Ad

Similar to Pro PostgreSQL, OSCon 2008 (20)

PPT
Planning for-high-performance-web-application
PPT
Building tungsten-clusters-with-postgre sql-hot-standby-and-streaming-replica...
PDF
Linux Desktop Automation
PDF
Creating customized openSUSE versions with SUSE Studio
ODP
Nagios Conference 2012 - Dan Wittenberg - Case Study: Scaling Nagios Core at ...
PDF
The Accidental DBA
ODP
Extending OpenShift Origin: Build Your Own Cartridge with Bill DeCoste of Red...
PPT
Planning For High Performance Web Application
PDF
PGConf.ASIA 2019 Bali - AppOS: PostgreSQL Extension for Scalable File I/O - K...
PDF
Out of the Box Replication in Postgres 9.4(pgconfsf)
PDF
configuring a warm standby, the easy way
PDF
Out of the Box Replication in Postgres 9.4(PgCon)
PDF
Out of the Box Replication in Postgres 9.4(PgCon)
PDF
Linux Common Command
PDF
Hadoop Summit San Jose 2013: Compression Options in Hadoop - A Tale of Tradeo...
PDF
Bundling Packages and Deploying Applications with RPM
PDF
2009-03-13 Atlanda System z Council Meeting
PDF
DrupalCampLA 2011: Drupal backend-performance
PDF
Cómo se diseña una base de datos que pueda ingerir más de cuatro millones de ...
PDF
An Introduction To Linux
Planning for-high-performance-web-application
Building tungsten-clusters-with-postgre sql-hot-standby-and-streaming-replica...
Linux Desktop Automation
Creating customized openSUSE versions with SUSE Studio
Nagios Conference 2012 - Dan Wittenberg - Case Study: Scaling Nagios Core at ...
The Accidental DBA
Extending OpenShift Origin: Build Your Own Cartridge with Bill DeCoste of Red...
Planning For High Performance Web Application
PGConf.ASIA 2019 Bali - AppOS: PostgreSQL Extension for Scalable File I/O - K...
Out of the Box Replication in Postgres 9.4(pgconfsf)
configuring a warm standby, the easy way
Out of the Box Replication in Postgres 9.4(PgCon)
Out of the Box Replication in Postgres 9.4(PgCon)
Linux Common Command
Hadoop Summit San Jose 2013: Compression Options in Hadoop - A Tale of Tradeo...
Bundling Packages and Deploying Applications with RPM
2009-03-13 Atlanda System z Council Meeting
DrupalCampLA 2011: Drupal backend-performance
Cómo se diseña una base de datos que pueda ingerir más de cuatro millones de ...
An Introduction To Linux

More from Robert Treat (20)

PDF
Advanced Int->Bigint Conversions
PDF
Explaining Explain
PDF
the-lost-art-of-plpgsql
PDF
Managing Chaos In Production: Testing vs Monitoring
PDF
Managing Databases In A DevOps Environment 2016
PDF
Less Alarming Alerts - SRECon 2016
PDF
What Ops Can Learn From Design
PDF
Postgres 9.4 First Look
PDF
Less Alarming Alerts!
PDF
Past, Present, and Pachyderm - All Things Open - 2013
PDF
Big Bad "Upgraded" Postgres
PDF
Managing Databases In A DevOps Environment
PDF
The Essential PostgreSQL.conf
PDF
Pro Postgres 9
PDF
Advanced WAL File Management With OmniPITR
PDF
Scaling with Postgres (Highload++ 2010)
PDF
Intro to Postgres 9 Tutorial
PDF
Check Please!
PDF
Database Scalability Patterns
PDF
A Guide To PostgreSQL 9.0
Advanced Int->Bigint Conversions
Explaining Explain
the-lost-art-of-plpgsql
Managing Chaos In Production: Testing vs Monitoring
Managing Databases In A DevOps Environment 2016
Less Alarming Alerts - SRECon 2016
What Ops Can Learn From Design
Postgres 9.4 First Look
Less Alarming Alerts!
Past, Present, and Pachyderm - All Things Open - 2013
Big Bad "Upgraded" Postgres
Managing Databases In A DevOps Environment
The Essential PostgreSQL.conf
Pro Postgres 9
Advanced WAL File Management With OmniPITR
Scaling with Postgres (Highload++ 2010)
Intro to Postgres 9 Tutorial
Check Please!
Database Scalability Patterns
A Guide To PostgreSQL 9.0

Recently uploaded (20)

PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
cuic standard and advanced reporting.pdf
PPTX
Cloud computing and distributed systems.
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Review of recent advances in non-invasive hemoglobin estimation
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PDF
Empathic Computing: Creating Shared Understanding
PDF
Encapsulation theory and applications.pdf
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PPT
Teaching material agriculture food technology
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Dropbox Q2 2025 Financial Results & Investor Presentation
cuic standard and advanced reporting.pdf
Cloud computing and distributed systems.
Mobile App Security Testing_ A Comprehensive Guide.pdf
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Encapsulation_ Review paper, used for researhc scholars
Review of recent advances in non-invasive hemoglobin estimation
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
20250228 LYD VKU AI Blended-Learning.pptx
“AI and Expert System Decision Support & Business Intelligence Systems”
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Reach Out and Touch Someone: Haptics and Empathic Computing
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
Empathic Computing: Creating Shared Understanding
Encapsulation theory and applications.pdf
Advanced methodologies resolving dimensionality complications for autism neur...
Teaching material agriculture food technology

Pro PostgreSQL, OSCon 2008

  • 1. Pro PostgreSQL Robert Treat omniti.com brighterlamp.org
  • 2. Who Am I? (Why Listen To Me) O-0 PostgreSQL User Since 6.5.x DBA of High Traffic / Large PostgreSQL Instances Long Time Contributor to PostgreSQL Project Contribute / Maintain Several Open Source Projects Co-Author Beginning PHP & PostgreSQL 8 (Apress)
  • 3. Outline O-1 What you need to know about the project Getting started Upgrading Configuring your server Hardware Availability Scalability Query tuning Tablespaces Partitioning Stuff you should know about
  • 4. K-0 Know Your Way Around The Project
  • 5. Know Your Way Around The Project K-1 www.postgresql.org downloads documentation bug reports security alerts wiki support companies rss –> news – events - versions
  • 6. Know Your Way Around The Project K-2 www.pgfoundry.org projects.postgresql.org Modules Programs Resources URI Type CIText SkyTools Npgsql Pl/Proxy pg_bulkload plpgsql-debugger sample databases
  • 7. Know Your Way Around The Project K-3 www.planetpostgresql.org Project News Community News Helpful Tips / Examples
  • 8. Know Your Way Around The Project K-4 archives.postgresql.org mailing list archives back to 1997 full text search via postgtresql 8.3 keyword search suggestions lists for users, developers, regional, user groups
  • 9. Know Your Way Around The Project K-5 #postgresql irc.freenode.net real time help rtfm_please - ??help
  • 10. Know Your Way Around The Project K-6 project management core team committers -hackers roadmap web team
  • 11. S-0 Get Off To A Good Start
  • 12. S-1 Get Off To A Good Start Use package management Consistent Standardized Simple
  • 13. Different across systems Upgrades are an issue Trust your packager? S-2 Get Off To A Good Start Use package management
  • 14. Different across systems Upgrades are an issue Trust your packager? S-2 Get Off To A Good Start Use package management Don't Be Afraid To Roll Your Own
  • 15. S-4 Get Off To A Good Start $PGDATA/pg_log /var/log/pgsql when in doubt... (postgresql.conf) separate disk Configure Logging Logging is often overlooked, but is the first step toward troubleshooting!
  • 16. S-5 Get Off To A Good Start most systems have different defaults firewalls/ selinux (FATAL) rtfm (pg_hba.conf, grant, revoke) Configure Authentication
  • 17. S-6 Get Off To A Good Start TRUST md5 IDENT Authentication Methods
  • 18. S-7 Get Off To A Good Start trust these more than your own code package dependent use different schemas (when able) pgcrypto pgstatstuple, pg_buffercache, pg_freespacemap /contrib
  • 19. S-8 Get Off To A Good Start package dependent some are non-core (plruby, plr, plphp) varying functionality varying levels of trust don't be afraid, test! procedural languages
  • 20. U-0 Let's Talk About Upgrades
  • 21. U-1 Let's Talk About Upgrades Versioning First Digit ( 7 .4.16 -> 8 .2.0) Second Digit (8.2.4 -> 8.3.0) Third Digit (8.3.0 -> 8.3.1)
  • 22. U-2 Let's Talk About Upgrades Versioning First Digit (7.4.16 -> 8.2.0) Second Digit (8. 2 .4 -> 8. 3 .0) Third Digit (8.3.0 -> 8.3.1)
  • 23. U-3 Let's Talk About Upgrades Versioning First Digit (7.4.16 -> 8.2.0) Second Digit (8.2.4 -> 8.3.0) Third Digit (8.3. 0 -> 8.3. 1 )
  • 24. U-4 Let's Talk About Upgrades Achtung!! Make Backups! Read the Release Notes!
  • 25. U-5 Let's Talk About Upgrades pg_dump/pg_restore simple -Fc is your friend dump with new version of pg_dump pitfalls (time, hdd)
  • 26. U-6 Let's Talk About Upgrades the slony method not simple create slave on new version switchover (switch back?) pitfalls (initial synch, compatibility)
  • 27. U-7 Let's Talk About Upgrades pg_migrator in place upgrades rewrites system catalog info no way to go back (fs snapshots) still new, under-flux 8.1 -> 8.2 only (for now)
  • 28. U-8 Let's Talk About Upgrades upgrading older db <= 7.3 is no longer supported (upgrade now!) pg_dump 8.2 has issues with <= 7.2 you can upgrade to 7.3 first use adddepends on 7.3 install slony requires 7.3 (or 7.4) (or 8.3) or newer pg_migrator (lol)
  • 29. C-0 Figure Your Configure
  • 30. C-1 Figure Your Configure the basics : performance effective_cache_size shared_buffers default_statistics_target work_mem checkpoint_segments
  • 31. C-2 Figure Your Configure the basics : logging stderr/pg_log vs. syslog/eventlog log_min_error_statement (error!) log_min_duration_statement log_line_prefix (%d, %p, %t)
  • 32. C-3 Figure Your Configure other stuff worth looking at maintenance_work_mem max_prepared_transactions update_process_title max_fsm_pages synchronous_commit
  • 34. M-1 Routine Maintenance a word about vacuum reclaim usable space update table stats avoid xid wraparound
  • 35. M-2 Routine Maintenance autovacuum : just do it! autovacuum track_activities track_counts autovacuum_max_freeze_age pg_autovacuum ?
  • 36. M-3 Routine Maintenance other stuff worth looking at reindexing logfiles backups failover
  • 37. P-0 Hardware For Software People
  • 38. P-1 Hardware For Software People you can be cheap on the licensing, don't be cheap on the hardware Cram the (ecc) RAM Redundant Disks (Software|Hardware) RAID Prefer SCSI, Accept SATA RAID Z (JBOD)
  • 39. P-2 Hardware For Software People cpu and you Multiple CPU's work wonders, up to 8 processors (16 OK) Opteron, Xeon, Core 2 Duo http://tweakers.net/
  • 40. P-3 Hardware For Software People disk do's Put WAL on it's own disk (RAID 1) Put DATA directory on it's own disk (RAID 10) More Spindles is Good More Controllers Even Gooder (tablespaces!) Battery Backed Controllers, Write cache enabled
  • 41. P-4 Hardware For Software People disk dont's NFS == Not Fully Safe! RAID 5 Beware disks / controllers that Lie
  • 42. A-0 Availability (Not Scalability)
  • 43. A-1 Availability what do we mean by availability? not backups (exactly) not replication (necessarily) not clustering (even less so)
  • 44. A-2 Availability what do we mean by availability? if (kablooy) then (ok) not backups (exactly) not replication (necessarily) not clustering (even less so)
  • 45. A-3 Availability pg_dump traditionally used for backups send dump to another server constantly run restore process large time, i/o constraints
  • 46. A-4 Availability filesystem snapshots zfs, lvm built on top of pitr backup commands traditionally used for backups copy snapshot to another server cumbersome time, i/o constraints
  • 47. A-5 Availability pitr create second, standby server ship wal logs to new server less time/io than pg_dump 8.1 -> cold standby 8.2 -> warm standby 8.4 -> hot standby ?
  • 48. A-6 Availability slony asynchronous, master-slave replication controlled switchover, failover low i/o, time constraints other benefits (upgrades, scaling)
  • 49. A-7 Availability bucardo asynchronous, multi-master replication also does master-slave low i/o, time constraints other benefits (upgrades, scaling)
  • 50. A-8 Availability shared disk one copy of PGDATA on shared storage standby takes over akin to db crash shared disk is point of failure (raid) STONITH
  • 51. A-9 Availability filesystem replication drbd filesystem mirrored between servers synchronized, ordered writes single disk system?
  • 52. A-10 Availability pgpool dual-master, statement based little caveats (random(),now(),sequences) bigger caveats (security, password, pg_hba) pgpool becomes failure point
  • 53. A-11 Availability postgres-r multi-master, synchronous just open sourced this month! small community not proven
  • 55. H-1 Scalability what is scaling? “ How well a solution to some problem will work when the relative size of the problem increases” - Theo Schlossnagle
  • 56. H-2 Scalability bigger, better, faster, more! postgresql scales up pretty well more disks (tablespaces) more cpu's, more ram connection pooling 1000+ connections, TB+ data
  • 57. H-3 Scalability pgpool dual-master, statement based little caveats (random(),now(),sequences) bigger caveats (security, password, pg_hba) pgpool becomes failure point
  • 58. H-4 Scalability pg_bouncer simple connection pooler 10/1 -> 40/1 caveats (prepared statements, temp tables) skype, myyearbook.com
  • 59. H-5 Scalability slony asynchronous, master-slave replication multiple, cascading slaves scales read operations other benefits (upgrades, scaling) solid user base
  • 60. H-6 Scalability bucardo asynchronous, multi-master replication also does master-slave low i/o, time constraints other benefits (upgrades, scaling)
  • 61. H-7 Scalability pgpool-II single db over multiple machines scales read operations replication, load balance, parallel query green technology
  • 62. H-8 Scalability pgcluster synchronous multi-master replication significant complexity scales read operations other uses (failover abilities) green technology
  • 63. H-9 Scalability postgres-r multi-master, synchronous just open source this month! small community other uses (failover abilities) not proven
  • 64. H-10 Scalability pitr read-only slaves based on pitr, warm standby operation core team officially supporting development 8.4 -> synchronous wal shipping 8.? -> read only slaves
  • 65. J-0 Query Your Queries
  • 66. J-1 Query Your Queries finding slow queries: log_min_duration_statement -1, 0 , n superuser only alter user LOG: duration: 5005.273 ms statement: select pg_sleep(5);
  • 67. J-2 Query Your Queries finding slow queries: pgfouine / pqa log analyzers command line, generate reports i/o load http://pgfouine.projects.postgresql.org/reports.html http://pqa.projects.postgresql.org/example.html
  • 68. J-3 Query Your Queries finding slow queries: pg_stat_all_tables pagila=# \d pg_stat_all_tables View &quot;pg_catalog.pg_stat_all_tables&quot; Column | Type | ------------------+-------------+ relid | oid | schemaname | name | relname | name | seq_scan | bigint | seq_tup_read | bigint | idx_scan | bigint | idx_tup_fetch | bigint | n_tup_ins | bigint | n_tup_upd | bigint | n_tup_del | bigint | n_tup_hot_upd | bigint | n_live_tup | bigint | n_dead_tup | bigint | last_vacuum | timestamptz | last_autovacuum | timestamptz | last_analyze | timestamptz | last_autoanalyze | timestamptz |
  • 69. J-4 Query Your Queries finding slow queries: pg_stat_all_tables pagila=# \d pg_stat_all_tables View &quot;pg_catalog.pg_stat_all_tables&quot; Column | Type | ------------------+-------------+ relid | oid | schemaname | name | relname | name | seq_scan | bigint | seq_tup_read | bigint | idx_scan | bigint | idx_tup_fetch | bigint | n_tup_ins | bigint | n_tup_upd | bigint | n_tup_del | bigint | n_tup_hot_upd | bigint | n_live_tup | bigint | n_dead_tup | bigint | last_vacuum | timestamptz | last_autovacuum | timestamptz | last_analyze | timestamptz | last_autoanalyze | timestamptz |
  • 70. J-5 Query Your Queries finding slow queries: pg_stat_all_tables pagila=# \d pg_stat_all_tables View &quot;pg_catalog.pg_stat_all_tables&quot; Column | Type | ------------------+-------------+ relid | oid | schemaname | name | relname | name | seq_scan | bigint | seq_tup_read | bigint | idx_scan | bigint | idx_tup_fetch | bigint | n_tup_ins | bigint | n_tup_upd | bigint | n_tup_del | bigint | n_tup_hot_upd | bigint | n_live_tup | bigint | n_dead_tup | bigint | last_vacuum | timestamptz | last_autovacuum | timestamptz | last_analyze | timestamptz | last_autoanalyze | timestamptz |
  • 71. J-6 Query Your Queries finding slow queries: pg_stat_all_tables pagila=# \d pg_stat_all_tables View &quot;pg_catalog.pg_stat_all_tables&quot; Column | Type | ------------------+-------------+ relid | oid | schemaname | name | relname | name | seq_scan | bigint | seq_tup_read | bigint | idx_scan | bigint | idx_tup_fetch | bigint | n_tup_ins | bigint | n_tup_upd | bigint | n_tup_del | bigint | n_tup_hot_upd | bigint | n_live_tup | bigint | n_dead_tup | bigint | last_vacuum | timestamptz | last_autovacuum | timestamptz | last_analyze | timestamptz | last_autoanalyze | timestamptz |
  • 72. J-7 Query Your Queries finding slow queries: pg_stat_all_tables pagila=# \d pg_stat_all_tables View &quot;pg_catalog.pg_stat_all_tables&quot; Column | Type | ------------------+-------------+ relid | oid | schemaname | name | relname | name | seq_scan | bigint | seq_tup_read | bigint | idx_scan | bigint | idx_tup_fetch | bigint | n_tup_ins | bigint | n_tup_upd | bigint | n_tup_del | bigint | n_tup_hot_upd | bigint | n_live_tup | bigint | n_dead_tup | bigint | last_vacuum | timestamptz | last_autovacuum | timestamptz | last_analyze | timestamptz | last_autoanalyze | timestamptz |
  • 73. J-8 Query Your Queries finding slow queries: pg_stat_all_tables pagila=# \d pg_stat_all_tables View &quot;pg_catalog.pg_stat_all_tables&quot; Column | Type | ------------------+-------------+ relid | oid | schemaname | name | relname | name | seq_scan | bigint | seq_tup_read | bigint | idx_scan | bigint | idx_tup_fetch | bigint | n_tup_ins | bigint | n_tup_upd | bigint | n_tup_del | bigint | n_tup_hot_upd | bigint | n_live_tup | bigint | n_dead_tup | bigint | last_vacuum | timestamptz | last_autovacuum | timestamptz | last_analyze | timestamptz | last_autoanalyze | timestamptz |
  • 74. J-9 Query Your Queries finding slow queries: pg_stat_all_indexes pagila=# \d pg_stat_all_indexes View &quot;pg_catalog.pg_stat_all_indexes&quot; Column | Type | ---------------+--------+ relid | oid | indexrelid | oid | schemaname | name | relname | name | indexrelname | name | idx_scan | bigint | idx_tup_read | bigint | idx_tup_fetch | bigint |
  • 75. J-10 Query Your Queries finding slow queries: pg_stat_all_indexes pagila=# \d pg_stat_all_indexes View &quot;pg_catalog.pg_stat_all_indexes&quot; Column | Type | ---------------+--------+ relid | oid | indexrelid | oid | schemaname | name | relname | name | indexrelname | name | idx_scan | bigint | idx_tup_read | bigint | idx_tup_fetch | bigint |
  • 76. J-11 Query Your Queries finding slow queries: pg_statio_all_tables pagila=# \d pg_statio_all_tables View &quot;pg_catalog.pg_statio_all_tables&quot; Column | Type | -----------------+--------+ relid | oid | schemaname | name | relname | name | heap_blks_read | bigint | heap_blks_hit | bigint | idx_blks_read | bigint | idx_blks_hit | bigint | toast_blks_read | bigint | toast_blks_hit | bigint | tidx_blks_read | bigint | tidx_blks_hit | bigint |
  • 77. J-12 Query Your Queries finding slow queries: pg_statio_all_tables pagila=# \d pg_statio_all_tables View &quot;pg_catalog.pg_statio_all_tables&quot; Column | Type | -----------------+--------+ relid | oid | schemaname | name | relname | name | heap_blks_read | bigint | heap_blks_hit | bigint | idx_blks_read | bigint | idx_blks_hit | bigint | toast_blks_read | bigint | toast_blks_hit | bigint | tidx_blks_read | bigint | tidx_blks_hit | bigint |
  • 78. J-13 Query Your Queries fixing slow queries: explain analyze universal tool good for specific queries “ explain” for large queries could be it's own talk
  • 79. J-14 Query Your Queries fixing slow queries: explain analyze universal tool good for specific queries “ explain” for large queries could be it's own talk http://wiki.postgresql.org/Using_EXPLAIN
  • 80. J-15 Query Your Queries fixing slow queries: indexing (basic) use explain to find large sequential reads use pg_stat_* tables to find numerous reads btree – (gist/gin) enable_indexscan, enable_bitmapscan dual column vs. single column
  • 81. J-16 Query Your Queries fixing slow queries: indexing (partial) create index address_ba_part_idx on address (district) where district = 'Buenos Aires'; restrain index to rows that matter can give significant speed improvements where clause of index should match where clause of query
  • 82. J-17 Query Your Queries fixing slow queries: indexing (partial) create index customer_active_part_idx on customer (customer_id) where activebool is true; restrain index to rows that matter can give significant speed improvements where clause of index should match where clause of query
  • 83. J-18 Query Your Queries fixing slow queries: indexing (functional) some people prefer to call these expressional indexes
  • 84. J-19 Query Your Queries fixing slow queries: indexing (expressional) create unique index one_true_email_xidx on customer (lower(email)); push expensive functions into your index system sees just WHERE indexedcolumn = 'constant' expression of index should match expression of queries narrow scope, but nice gains
  • 85. J-20 Query Your Queries fixing slow queries: indexing (expressional) create index fullname_xidx on customer ((first_name||' '||last_name)); push expensive functions into your index system sees just WHERE indexedcolumn = 'constant' expression of index should match expression of queries narrow scope, but nice gains
  • 86. J-21 Query Your Queries fixing slow queries: full text search uses lexmes and word stemming to find common words replacement for LIKE '%x%', ~* 'x'; supports multiple languages, custom dictionaries special indexing options
  • 87. J-22 Indexing Options full text indexing gist vs. gin “ old school” slower for queries faster insert / update mature new in 8.2 faster for queries slower insert / update stable
  • 89. N-1 PostgreSQL Tablespaces tablespaces? define logical locations for object placement point to locations on disk (uses symlinks) size determined by disk size (not pre-ordained) dedicate per db, split db across multiple tblspc
  • 90. N-2 PostgreSQL Tablespaces tablespaces! split database over separate disks use stat, statio tables to gauge disk access create dedicated storage for workloads disk for read / write disk for read only large, slow disk for archiving disk for indexes
  • 92. Q-1 PostgreSQL Partitioning partitioning? as table size grows, it becomes unmanageable use inheritance, rules, constraints to split data queries ignore non-relevant partitions could be it's own talk
  • 93. Q-2 PostgreSQL Partitioning partitioning! as table size grows, it becomes unmanageable use inheritance, rules, constraints to split data queries ignore non-relevant partitions could be it's own talk http://www.pgcon.org/2007/schedule/events/41.en.html
  • 94. Q-3 PostgreSQL Partitioning partitioning : key points determine list vs. range use triggers rather than rules partition creation vs. data population automate maintenance
  • 95. I-0 Other Stuff I Should Mention
  • 96. I-1 Other Stuff I Should Mention pgcrypto cryptography type functions /contrib (export issues) md5, sha1, blowfish, many more
  • 97. I-2 Other Stuff I Should Mention dblink pg -> pg connections /contrib (still under development?) can have performance issues on large queries make it live in it's own schema
  • 98. I-3 Other Stuff I Should Mention *-link heterogenous connections for postgresql db specific and db independent options any pl/u language can implement this similar performance issues to dblink dblink-tds, dbi-link, oralink, odbclink http://www.pgfoundry.org/ (db link)
  • 99. I-4 Other Stuff I Should Mention autonomous logging tool persistent logging for postgresql functions built on top of dblink make it live in it's own schema https://labs.omniti.com/trac/pgsoltools
  • 100. I-5 Other Stuff I Should Mention snapshot pitr clones full read/write copy of pitr slave static snapshot need solaris (zfs zone mojo) could re-implement on other systems https://labs.omniti.com/trac/pgsoltools
  • 101. I-6 Other Stuff I Should Mention check_postgres nagios based monitoring script common items for warnings and alerts can be adapted to other uses http://bucardo.org/check_postgres
  • 102. I-7 Other Stuff I Should Mention reconnoiter monitoring / graphing tool postgres based still pretty green https://labs.omniti.com/trac/reconnoiter
  • 103. I-8 Other Stuff I Should Mention phpPgAdmin web based gui for postgresql remote administration of multiple servers implements much of postgresql functionality support back to 7.2? http://phppgadmin.sourceforge.net/
  • 104. I-9 Other Stuff I Should Mention ;-) my book?
  • 105. I-10 Other Stuff I Should Mention ;-) we're hiring Ops Ninjas Perl Kung-Fu Artists PHP Ninjas Database Samurai http://omniti.com/is/hiring