Re: How to achieve sustained disk performance of 1.25 GB write for 5 mins

From: Merlin Moncure <mmoncure(at)gmail(dot)com>
To: Eric Comeau <ecomeau(at)signiant(dot)com>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: How to achieve sustained disk performance of 1.25 GB write for 5 mins
Date: 2010-11-17 17:28:11
Message-ID: AANLkTiky7UGdCbpdrNMAiwo69WFgv0sEah=_ov0nCN0J@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

On Wed, Nov 17, 2010 at 9:26 AM, Eric Comeau <ecomeau(at)signiant(dot)com> wrote:
> This is not directly a PostgreSQL performance question but I'm hoping some
> of the chaps that build high IO PostgreSQL servers on here can help.
>
> We build file transfer acceleration s/w (and use PostgreSQL as our database)
> but we need to build a test server that can handle a sustained write
> throughput of 1,25 GB for 5 mins.
>
> Why this number, because we want to push a 10 Gbps network link for 5-8
> mins, 10Gbps = 1.25 GB write, and would like to drive it for 5-8 mins which
> would be 400-500 GB.
>
> Note this is just a "test" server therefore it does not need fault
> tolerance.

I really doubt you will see 1.25gb/sec over 10gige link. Even if you
do though, you will hit a number of bottlenecks if you want to see
anything close to those numbers. Even with really fast storage you
will probably become cpu bound, or bottlenecked in the WAL, or some
other place.

*) what kind of data do you expect to be writing out at this speed?
*) how many transactions per second will you expect to have?
*) what is the architecture of the client? how many connections will
be open to postgres writing?
*) how many cores are in this box? what kind?

merlin

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Josh Berkus 2010-11-17 17:37:56 Anyone seen this kind of lock pileup?
Previous Message Ivan Voras 2010-11-17 16:12:44 Re: How to achieve sustained disk performance of 1.25 GB write for 5 mins