I am having a problem with truncating all tables in the database on my local machine running Ubuntu 10.09 and Postgresql 9.0 on ext4 fs.

Truncating empty database with 56 tables require about 7 seconds while all my coworkers have a performance about 1 second.

I am truncating all tables with one command. Tables is fully covered with foreign keys.

Does any one know this issue?

link|improve this question

74% accept rate
How do you truncate the DB - table by table or all tables in one command? How often your tables have foreign keys? – Milen A. Radev May 27 '11 at 14:12
Do your coworkers and you use exactly the same database? – Mr47 May 27 '11 at 14:30
Are you using TRUNCATE TABLE command or running a DELETE statement? Do you have any active queries running against these tables you are running TRUNCATE on? – JustBob May 27 '11 at 14:33
My coworkers have the same database created from same dump with foreign keys. Database is empty. No queries running in parallel. – Bogdan Gusiev May 27 '11 at 14:35
Are you all using the same version of Ubuntu, the same version of PostgreSQL, and the same kind of filesystem? – Catcall May 27 '11 at 14:55
show 1 more comment
feedback

1 Answer

up vote 2 down vote accepted

I'm guessing than your co-workers have write cache enabled on their disks or fsync disabled in Postgres configuration.

link|improve this answer
Or wrapped in a transaction. 56 tables in 7 seconds ~= 8 fsync's per second if outside of a single transaction, which seems believable for a dying hard drive (or one that's very busy). – Sean May 27 '11 at 23:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.