logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git
commit: 6708f154a4f7ad46b4637d4d566b8cf81e3ebb7b
parent a50c657427a2dfe9d48c25529a179fe634d30e48
Author: Mark Felder <feld@feld.me>
Date:   Mon, 27 May 2024 11:18:58 -0400

Rework Gun connection pool sizes to make better use of the default 250 connections

Diffstat:

Mconfig/config.exs14+++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/config/config.exs b/config/config.exs @@ -818,27 +818,27 @@ config :pleroma, :connections_pool, config :pleroma, :pools, federation: [ - size: 50, - max_waiting: 10, + size: 75, + max_waiting: 20, recv_timeout: 10_000 ], media: [ - size: 50, + size: 75, max_waiting: 20, recv_timeout: 15_000 ], rich_media: [ size: 25, max_waiting: 20, - recv_timeout: 15_000 - ], + recv_timeout: 15_000 + ], upload: [ size: 25, - max_waiting: 5, + max_waiting: 20, recv_timeout: 15_000 ], default: [ - size: 10, + size: 50, max_waiting: 2, recv_timeout: 5_000 ]