Re: 8.4.1 ubuntu karmic slow createdb

From: Andres Freund <andres(at)anarazel(dot)de>
To: pgsql-performance(at)postgresql(dot)org
Cc: Michael Clemmons <glassresistor(at)gmail(dot)com>
Subject: Re: 8.4.1 ubuntu karmic slow createdb
Date: 2009-12-10 22:09:03
Message-ID: 200912102309.04057.andres@anarazel.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers pgsql-performance

Hi,

On Thursday 10 December 2009 23:01:08 Michael Clemmons wrote:
> Im not sure what that means ppl in my office with slower hd speeds using
> 8.4 can create a db in 2s vs my 8-12s.
- Possibly their config is different - they could have disabled the "fsync"
parameter which turns the database to be not crashsafe anymore but much faster
in some circumstances.

- Possibly you have much data in your template1 database?
You could check whether

CREATE DATABASE speedtest TEMPLATE template1; takes more time than
CREATE DATABASE speedtest TEMPLATE template0;.

You should issue both multiple times to ensure caching on the template
database doesnt play a role.

> Could using md5 instead of ident do it?
Seems unlikely.
Is starting psql near-instantaneus? Are you using "createdb" or are you
issuing "CREATE DATABASE ..."?

Andres

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message David P. Quigley 2009-12-10 22:13:18 Re: Adding support for SE-Linux security
Previous Message Tom Lane 2009-12-10 22:08:17 Re: Adding support for SE-Linux security

Browse pgsql-performance by date

  From Date Subject
Next Message Scott Carey 2009-12-10 23:29:59 Re: Load experimentation
Previous Message Michael Clemmons 2009-12-10 22:01:08 Re: 8.4.1 ubuntu karmic slow createdb