Re: minconn, maxconn and fullconn (again, sigh!)

2021-02-10 Thread Victor Sudakov
Lukas Tribus wrote: > > On Wed, 10 Feb 2021 at 16:55, Victor Sudakov wrote: > > > > I can even phrase my question in simpler terms. What happens if the sum > > total of all servers' maxconns in a backend is less than the maxconn > > value in the frontend pointing to the said backend? > > Queuein

Re: minconn, maxconn and fullconn (again, sigh!)

2021-02-10 Thread Lukas Tribus
Hello Victor, On Wed, 10 Feb 2021 at 16:55, Victor Sudakov wrote: > > I can even phrase my question in simpler terms. What happens if the sum > total of all servers' maxconns in a backend is less than the maxconn > value in the frontend pointing to the said backend? Queueing for "timeout queue"

Segfault in liblua-5.3.so

2021-02-10 Thread Sachin Shetty
Hi, We have a lua block that connects to memcache when a request arrives """ function get_from_gds(host, port, key)local sock = core.tcp() sock:settimeout(20)local result = DOMAIN_NOT_FOUNDlocal status, error = sock:connect(host, port)if not status then core.Alert(GDS_LOG_PREFIX .

Re: [PATCH v2 0/6] cli commands for checks and agent

2021-02-10 Thread William Dauchy
On Wed, Feb 10, 2021 at 4:21 PM Christopher Faulet wrote: > To conclude, I may merge the first 4 patches if you want, but I guess you > will have to adapt the first ones to produce better warnings. So I will > wait your confirmation to proceed. However, I will merge the bug fix. > There is no reas

Re: Issues with d13afbcce5e664f9cfe797eee8c527e5fa947f1b (haproxy-2.2) "mux-h1: Don't set CS_FL_EOI too early for protocol upgrade requests"

2021-02-10 Thread Christian Ruppert
On 2021-02-10 18:15, Christopher Faulet wrote: Le 08/02/2021 à 14:31, Christian Ruppert a écrit : Hi list, Christopher, we're having issues with the mentioned commit / patch: d13afbcce5e664f9cfe797eee8c527e5fa947f1b https://git.haproxy.org/?p=haproxy-2.2.git;a=commit;h=d13afbcce5e664f9cfe797eee

Re: Issues with d13afbcce5e664f9cfe797eee8c527e5fa947f1b (haproxy-2.2) "mux-h1: Don't set CS_FL_EOI too early for protocol upgrade requests"

2021-02-10 Thread Christopher Faulet
Le 08/02/2021 à 14:31, Christian Ruppert a écrit : Hi list, Christopher, we're having issues with the mentioned commit / patch: d13afbcce5e664f9cfe797eee8c527e5fa947f1b https://git.haproxy.org/?p=haproxy-2.2.git;a=commit;h=d13afbcce5e664f9cfe797eee8c527e5fa947f1b I can also reproduce it with 2.

Re: minconn, maxconn and fullconn (again, sigh!)

2021-02-10 Thread Victor Sudakov
I can even phrase my question in simpler terms. What happens if the sum total of all servers' maxconns in a backend is less than the maxconn value in the frontend pointing to the said backend? Victor Sudakov wrote: > Dear Colleagues, > > The dynamic limit is probably one of the darker sides of Ha

Re: [PATCH v2 0/6] cli commands for checks and agent

2021-02-10 Thread Christopher Faulet
Le 08/02/2021 à 23:53, William Dauchy a écrit : Hello Christopher, Here is the v2 addressing the points raised yesterday. The patch 4/6 clearly looks scary but I made sure to not change anything crazy apart from adding support for a version 2. I will probably start to dream about a server-state-

[PATCH] cleanup: remove unused variable assignment

2021-02-10 Thread Илья Шипицин
Hello, this is pure cleanup. should fix #1048 Ilya From 350c37117369607928ddb232cf8f86b1c218bd47 Mon Sep 17 00:00:00 2001 From: Ilya Shipitsin Date: Wed, 10 Feb 2021 13:03:30 +0500 Subject: [PATCH] CLEANUP: remove unused variable assigned found by Coverity this is pure cleanup, no need to backp