Hi, I'm having performance issues with a simple table containing 'Nodes' (points) from OpenStreetMap: CREATE TABLE nodes ( id bigint PRIMARY KEY, user_name text NOT NULL, tstamp timestamp without time zone NOT NULL, geom GEOMETRY(POINT, 4326) ); CREATE INDEX idx_nodes_geom ON nodes USING gist (geom); The number of rows grows steadily and soon reaches one billion (1'000'000'000), therefore the bigint id. Now, hourly inserts (update and deletes) are slowing down the database (PostgreSQL 9.1) constantly. Before I'm looking at non-durable settings [1] I'd like to know what choices I have to tune it while keeping the database productive: cluster index? partition table? use tablespaces? reduce physical block size? Stefan [1] http://www.postgresql.org/docs/9.1/static/non-durability.html -- Sent via pgsql-performance mailing list (pgsql-performance@xxxxxxxxxxxxxx) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-performance