Re: Scalability question - Mailing list pgsql-performance

From tv@fuzzy.cz
Subject Re: Scalability question
Date
Msg-id 13093.217.77.161.17.1213179341.squirrel@sq.gransy.com
Whole thread Raw
In response to Scalability question  (Zoltan Boszormenyi <zb@cybertec.at>)
Responses Re: Scalability question
List pgsql-performance
> Hi,
>
> I got a question about scalability in high volume insert situation
> where the table has a primary key and several non-unique indexes
> on other columns of the table. How does PostgreSQL behave
> in terms of scalability? The high volume of inserts comes from
> multiple transactions.
>
> Best regards,
> Zoltán Böszörményi

Well, that's a difficult question as it depends on hardware and software,
but with a proper tunning the results may be very good. Just do the basic
PostgreSQL tuning and then tune it for the INSERT performance if needed.
It's difficult to give any other recommendations without a more detailed
knowledge of the problem, but consider these hints:

1) move the pg_xlog to a separate drive (so it's linear)
2) move the table with large amount of inserts to a separate tablespace
3) minimize the amount of indexes etc.

The basic rule is that each index adds some overhead to the insert, but it
depends on datatype, etc. Just prepare some data to import, and run the
insert with and without the indexes and compare the time.

Tomas


pgsql-performance by date:

Previous
From: Zoltan Boszormenyi
Date:
Subject: Scalability question
Next
From: Zoltan Boszormenyi
Date:
Subject: Re: Scalability question