what is a good way to horizontal shard in postgresql - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T19:55:11Z http://stackoverflow.com/feeds/question/994882 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/994882/what-is-a-good-way-to-horizontal-shard-in-postgresql 2 what is a good way to horizontal shard in postgresql pylabs 2009-06-15T07:33:42Z 2009-06-18T07:48:31Z <p>Hey guys</p> <h1>what is a good way to horizontal shard in postgresql</h1> <pre><code>1. pgpool 2 2. gridsql </code></pre> <p>which is a better way to use sharding</p> <p>also is it possible to paritition without changing client code</p> <p>It would be great if some one can share a simple tutorial or cookbook example of how to setup and use sharding</p> http://stackoverflow.com/questions/994882/what-is-a-good-way-to-horizontal-shard-in-postgresql/995291#995291 1 Answer by Magnus Hagander for what is a good way to horizontal shard in postgresql Magnus Hagander 2009-06-15T09:58:46Z 2009-06-15T09:58:46Z <p>pl/proxy (by Skype) is a good solution for this. It requires your access to be through a function API, but once you have that it can make it pretty transparent.</p> http://stackoverflow.com/questions/994882/what-is-a-good-way-to-horizontal-shard-in-postgresql/1011329#1011329 0 Answer by WolfmanDragon for what is a good way to horizontal shard in postgresql WolfmanDragon 2009-06-18T07:48:31Z 2009-06-18T07:48:31Z <p>PostgreSQL allows partitioning in two different ways. One is by range and the other is by list. Both use table inheritance to do partition.<br /> Partitioning by range, usually a date range, is the most common, but partitioning by list can be useful if the variables that is the partition are static and not skewed.</p> <p>Partitioning is done with table inheritance so the first thing to do is set up new child tables.</p> <pre><code>CREATE TABLE measurement ( x int not null, y date not null, z int ); CREATE TABLE measurement_y2006 ( CHECK ( logdate &gt;= DATE '2006-01-01' AND logdate &lt; DATE '2007-01-01' ) ) INHERITS (measurement); CREATE TABLE measurement_y2007 ( CHECK ( logdate &gt;= DATE '2007-01-01' AND logdate &lt; DATE '2008-01-01' ) ) INHERITS (measurement); </code></pre> <p>Then either rules or triggers need to be used to drop the data in the correct tables. Rules are faster on bulk updates, triggers on single updates as well as being easier to maintain. Here is a sample trigger. </p> <pre><code>CREATE TRIGGER insert_measurement_trigger BEFORE INSERT ON measurement FOR EACH ROW EXECUTE PROCEDURE measurement_insert_trigger(); </code></pre> <p>and the trigger function to do the insert</p> <pre><code>CREATE OR REPLACE FUNCTION measurement_insert_trigger() RETURNS TRIGGER AS $$ BEGIN IF ( NEW.logdate &gt;= DATE '2006-01-01' AND NEW.logdate &lt; DATE '2007-01-01' ) THEN INSERT INTO measurement_y2006 VALUES (NEW.*); ELSIF ( NEW.logdate &gt;= DATE '2007-01-01' AND NEW.logdate &lt; DATE '2008-01-01' ) THEN INSERT INTO measurement_y2006m03 VALUES (NEW.*); ELSE RAISE EXCEPTION 'Date out of range.'; END IF; RETURN NULL; END; $$ LANGUAGE plpgsql; </code></pre> <p>These examples are simplified versions of the postgresql documentation for easier reading.</p> <p>I am not familiar with pgpool2, but gridsql is a commercial product designed for EnterpriseDB, a commercial database that is built on top of postgresql. Their products are very good, but I do not think that it will work on standard postgresl.</p>