Re: hint in determining effective_io_concurrency - Mailing list pgsql-performance

From Justin Pryzby
Subject Re: hint in determining effective_io_concurrency
Date
Msg-id 20210422201506.GF7256@telsasoft.com
Whole thread Raw
In response to Re: hint in determining effective_io_concurrency  (Bruce Momjian <bruce@momjian.us>)
Responses Re: hint in determining effective_io_concurrency  (Luca Ferrari <fluca1978@gmail.com>)
List pgsql-performance
On Thu, Apr 22, 2021 at 03:52:32PM -0400, Bruce Momjian wrote:
> On Thu, Apr 22, 2021 at 09:45:15PM +0200, Luca Ferrari wrote:
> > Hi all,
> > I'm unable to find (apparently) a way to find out a possible value to
> > start with for effective_io_concurrency.
> > I suspect that benchmarking, e.g., using bonnie++ or sysbench and
> > testing with different values of concurrency could help to determine
> > the max number of concurrent request, (tps, lower latency, ecc.).
> > Is thjs correct or is there another suggested way?
> 
> I recommend 256 for SSDs or other RAM-like fsync systems, and maybe
> maybe 16 for magnetic.

Note that the interpretation of this GUC changed in v13.
https://www.postgresql.org/docs/13/release-13.html
|Change the way non-default effective_io_concurrency values affect concurrency (Thomas Munro)
|Previously, this value was adjusted before setting the number of concurrent requests. The value is now used directly.
Conversionof old values to new ones can be done using:
 
|SELECT round(sum(OLDVALUE / n::float)) AS newvalue FROM generate_series(1, OLDVALUE) s(n);

-- 
Justin



pgsql-performance by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: hint in determining effective_io_concurrency
Next
From: Luca Ferrari
Date:
Subject: Re: hint in determining effective_io_concurrency