Migration study, step 1: bulk write performance optimization - Mailing list pgsql-performance

From Mikael Carneholm
Subject Migration study, step 1: bulk write performance optimization
Date
Msg-id 7F10D26ECFA1FB458B89C5B4B0D72C2B088286@sesrv12.wirelesscar.com
Whole thread Raw
Responses Re: Migration study, step 1: bulk write performance optimization  ("Craig A. James" <cjames@modgraph-usa.com>)
Re: Migration study, step 1: bulk write performance  (Csaba Nagy <nagy@ecircle-ag.com>)
Re: Migration study, step 1: bulk write performance optimization  (PFC <lists@peufeu.com>)
Re: Migration study, step 1: bulk write performance optimization  (Dave Cramer <pg@fastcrypt.com>)
Re: Migration study, step 1: bulk write performance  (Simon Riggs <simon@2ndquadrant.com>)
List pgsql-performance
Ok, here's the deal:

I am responisble for an exciting project of evaluating migration of a medium/large application for a well-known swedish
car&truckmanufacturer from a proprietary DB to Postgres. The size of the database is currently about 50Gb, annual
growthdepending on sales, but probably in the 30-50Gb range. 

Migrating the schema was easily done, mostly involving a search/replace of some vendor specific datatypes. The next
stepis to migrate the data itself, and for this we have written a Java app relying on JDBC metadata to map the tables
inthe source schema to the target schema. The goal right now is to find the set of parameters that gives as short bulk
inserttime as possible, minimizing downtime while the data itself is migrated. 

The machine used for the study is a Dell PE2850, 6GB memory, 1xXEON 3.0GHz/2MB cache, internal SCSI 0+1 raid (currently
4x36GB10000rpm striped+mirrored, two more 146GB 15000rpm disks will arrive later). Not sure about the brand/model of
theraid controller, so I'll leave that for now. File system is ext3(I know, maybe not the optimal choice but this is
howit was when I got it) with a 8k block size. The OS currently installed is CentOS4. 

Until the new disks arrive, both the OS itself, pg_xlog and the data reside on the same disks. When they arrive, I will
probablymove the data to the new disks (need two more to get raid 0+1, though) and leave the OS + pg_xlog on the
10000rpmdisks. Mounting the 15000rpm data disks with the noatime option (this is safe, right?) and using a 16kb block
size(for read performance) will probably be considered as well. 

NOTE: this machine/configuration is NOT what we will be using in production if the study turns out OK, it's just
supposedto work as a development machine in the first phase whose purpose more or less is to get familiar with
configuratingPostgres and see if we can get the application up and running (we will probably use a 64bit platform and
eithera FC SAN or internal raid with a battery backed cache for production use, if all goes well). 

The first thing I did when I got the machine was to do a raw dd write test:

# time bash -c "(dd if=/dev/zero of=/opt/bigfile count=1310720 bs=8k && sync)"
1310720+0 records in
1310720+0 records out

real    2m21.438s
user    0m0.998s
sys     0m51.347s

(10*1024)Mb/~141s => ~75.5Mb/s

As a simple benchmark, I created a simple table without PK/indexes with 1k wide rows:

create table iotest.one_kb_rows
(
        the_col char(1024) not null
);

To fill the table, I use this simple function:

create or replace function iotest.writestress(megs integer) returns void as $$
declare
    char_str char(1024) := repeat('x', 1024);
begin
     for i in 1..megs loop
          for j in 1..1024 loop
              insert into one_kb_rows(the_col) values (char_str);
          end loop;
     end loop;
end;
$$
language plpgsql;

Then, I tested how long it takes to write 10Gb of data to this table:

iotest=> \timing
Timing is on.

iotest=> select writestress((10*1024));
 writestress
-------------

(1 row)

Time: 379971.252 ms

This gives that 10Gb takes ~380s => ~27Mb/s (with fsync=off), compared to the raw dd result (~75.5Mb/s).

I assume this difference is due to:
- simultaneous WAL write activity (assumed: for each byte written to the table, at least one byte is also written to
WAL,in effect: 10Gb data inserted in the table equals 20Gb written to disk) 
- lousy test method (it is done using a function => the transaction size is 10Gb, and 10Gb will *not* fit in
wal_buffers:) ) 
- poor config
- something else?

I have tried to read up as much as possible on Postgres configuration (disk layout, buffer management, WAL sync
methods,etc) and found this post regarding bgwriter tweaking:
http://archives.postgresql.org/pgsql-performance/2006-03/msg00218.php- which explains the bgwriter config below. 

All params in postgresql.conf that are not commented out:
---------------------------------------------------------
max_connections = 100
superuser_reserved_connections = 2
shared_buffers = 16000
bgwriter_lru_percent = 20
bgwriter_lru_maxpages = 160
bgwriter_all_percent = 10
bgwriter_all_maxpages = 320
fsync = off
wal_sync_method = open_sync
wal_buffers = 128
checkpoint_segments = 3
log_filename = 'postgresql-%Y-%m-%d_%H%M%S.log'
log_rotation_age = 1440
log_line_prefix = '%m: (%u@%d) '
lc_messages = 'C'
lc_monetary = 'C'
lc_numeric = 'C'
lc_time = 'C'

fsync can safely be kept off during data migration as we are able to restart the procedure without losing data if
somethinggoes wrong. Increasing chekpoint_segments to 8/16/32 only increased the insert time, so I kept it at the
default.I will increase shared_buffers and effective_cache_size as soon as it's time to tweak read performance, but for
nowI'm just focusing on write performance. 


Postgres version used:

iotest=> select version();
                                              version
---------------------------------------------------------------------------------------------------
 PostgreSQL 8.1.3 on i686-pc-linux-gnu, compiled by GCC gcc (GCC) 3.4.4 20050721 (Red Hat 3.4.4-2)
(1 row)


I want to make sure I have made correct assumptions before I carry on, so comments are welcome.

- Mikael

pgsql-performance by date:

Previous
From: "Jim C. Nasby"
Date:
Subject: Re: Best OS & Configuration for Dual Xeon w/4GB &
Next
From: Marco Furetto
Date:
Subject: Query Feromance