I'm surprised this hasn't been posted yet. Any interesting tricks that you know about in Postgres? Obscure config options and scaling/perf tricks are particularly welcome.
I'm sure we can beat the 9 comments on the corresponding MySQL thread :)
|
I'm surprised this hasn't been posted yet. Any interesting tricks that you know about in Postgres? Obscure config options and scaling/perf tricks are particularly welcome. I'm sure we can beat the 9 comments on the corresponding MySQL thread :)
| ||||
|
feedback
|
|
Since postgres is a lot more sane than MySQL, there are not that many "tricks" to report on ;-) The manual has some nice performance tips. A few other performance related things to keep in mind:
Here's a few things I've found useful that aren't config or performance related per se. To see what's currently happening:
Search misc functions:
Find size of database:
Find size of all databases:
Find size of tables and indexes:
Or, to list all tables and indexes (probably easier to make a view of this):
Oh, and you can nest transactions, rollback partial transactions++
| |||||||||||
feedback
|
|
The easiest trick to let postgresql perform a lot better (apart from setting and using proper indexes of course) is just to give it more RAM to work with (if you have not done so already). On most default installations the value for shared_buffers is way too low (in my opinion). You can set
in postgresql.conf. Divide this number by 128 to get an approximation of the amount of memory (in MB) postgres can claim. If you up it enough this will make postgresql fly. Don't forget to restart postgresql. On Linux systems, when postgresql won't start again you will probably have hit the kernel.shmmax limit. Set it higher with
To make this persist between boots, add a kernel.shmmax entry to /etc/sysctl.conf. A whole bunch of Postgresql tricks can be found here: | |||
|
feedback
|
|
COPY I'll start. Whenever I switch to Postgres from SQLite, I usually have some really big datasets. The key is to load your tables with COPY FROM rather than doing INSERTS. See documentation: http://www.postgresql.org/docs/8.1/static/sql-copy.html The following example copies a table to the client using the vertical bar (|) as the field delimiter:
To copy data from a file into the country table:
See also here: http://stackoverflow.com/questions/364017/faster-bulk-inserts-in-sqlite3/759866#759866 | |||||
feedback
|
|
Postgres has a very powerful datetime handling facility thanks to its INTERVAL support. For example:
You can cast many strings to an INTERVAL type. | |||
|
feedback
|
|
One of the things I really like about postgre is some of the data types supported in columns. For example, there are column types made for storing Network Addresses and Arrays. The corresponding functions (Network Addresses / Arrays) for these column types let you do a lot of complex operations inside queries that you'd have to do by processing results through code in MySQL or other database engines. | |||||
feedback
|
| ||||
feedback
|
|
Arrays are really cool once you get to know 'em. Lets say you would like to store some hyper links between pages. You might start by thinking about creating a Table kinda like this:
If you needed to index the tail column, and you had, say 200,000,000 links-rows (like wikipedia would give you), you would find yourself with a huge Table and a huge Index. However, with PostgreSQL, you could use this Table format instead:
To get all heads for a link you could send a command like this (unnest() is standard since 8.4):
This query is surprisingly fast when it is compared with the first option (unnest() is fast and the Index is way way smaller). Furthermore, your Table and Index will take up much less RAM-memory and HD-space, especially when your Arrays are so long that they are compressed to a Toast Table. Arrays are really powerful. Note: while unnest() will generate rows out of an Array, array_agg() will aggregate rows into an Array. | ||||
|
feedback
|
|
Materialized Views are pretty easy to setup:
That creates a new table, my_matview, with the columns and values of my_view. Triggers or a cron script can then be setup to keep the data up to date, or if you're lazy:
| ||||
|
feedback
|
|
pgcrypto: more cryptographic functions than many programming languages' crypto modules provide, all accessible direct from the database. It makes cryptographic stuff incredibly easy to Just Get Right. | |||
|
feedback
|
| |||
|
feedback
|
|
Memory storage for throw-away data/global variables You can create a tablespace that lives in the RAM, and tables (possibly unlogged, in 9.1) in that tablespace to store throw-away data/global variables that you'd like to share across sessions. http://magazine.redhat.com/2007/12/12/tip-from-an-rhce-memory-storage-on-postgresql/ Advisory locks These are documented in an obscure area of the manual: http://www.postgresql.org/docs/9.0/interactive/functions-admin.html It's occasionally faster than acquiring multitudes of row-level locks, and they can be used to work around cases where FOR UPDATE isn't implemented (such as recursive CTE queries). | |||
|
feedback
|
|
A database can be copied with:
The documentation says:
but it works well for me and is much faster than
| |||
|
feedback
|