Re: [haproxy/haproxy] OPTIM/MINOR: h2_settings_initial_window_size default 64k (PR #1732)

2022-06-07 Thread Willy Tarreau
Hello Glenn, On Tue, Jun 07, 2022 at 05:24:09PM -0400, Glenn Strauss wrote: > On Tue, Jun 07, 2022 at 09:27:43AM -0700, Willy Tarreau wrote: > > Hello Glenn, > > > > Thanks for your report, I understand the problem, that's very interesting. > > I would say it's not even an optim, rather an approa

Re: [haproxy/haproxy] OPTIM/MINOR: h2_settings_initial_window_size default 64k (PR #1732)

2022-06-07 Thread Glenn Strauss
On Tue, Jun 07, 2022 at 09:27:43AM -0700, Willy Tarreau wrote: > Hello Glenn, > > Thanks for your report, I understand the problem, that's very interesting. I > would say it's not even an optim, rather an approach trying to help the whole > ecosystem at a very low cost by preventing known degene

INVITATION TO ATTEND A WORKSHOP ON RESEARCH DESIGN, MOBILE DATA COLLECTION AND MAPPING AND DATA ANALYSIS USING NVIVO AND R ON 4TH to 15TH JULY 2022

2022-06-07 Thread Skills for Africa Training Institute
WORKSHOP ON RESEARCH DESIGN, MOBILE DATA COLLECTION AND MAPPING AND DATA ANALYSIS USING N

[PR] OPTIM/MINOR: h2_settings_initial_window_size default 64k

2022-06-07 Thread PR Bot
Dear list! Author: Glenn Strauss Number of patches: 1 This is an automated relay of the Github pull request: OPTIM/MINOR: h2_settings_initial_window_size default 64k Patch title(s): OPTIM/MINOR: h2_settings_initial_window_size default 64k Link: https://github.com/haproxy/haproxy/pull

Re: Rate Limiting with token/leaky bucket algorithm

2022-06-07 Thread Seena Fallah
Got it! Thanks. Works like a charm =) On Tue, 7 Jun 2022 at 17:50, Willy Tarreau wrote: > On Tue, Jun 07, 2022 at 01:51:06PM +0200, Seena Fallah wrote: > > I also tried with this one but this will give me 20req/s 200 OK and the > > rest of it 429 too many requests > > ``` > > listen test > >

Re: Rate Limiting with token/leaky bucket algorithm

2022-06-07 Thread Willy Tarreau
On Tue, Jun 07, 2022 at 01:51:06PM +0200, Seena Fallah wrote: > I also tried with this one but this will give me 20req/s 200 OK and the > rest of it 429 too many requests > ``` > listen test > bind :8000 > stick-table type ip size 100k expire 30s store http_req_rate(1s) > acl exceeds_

Re: [PATCH] DOC/MINOR: Suggestions for percent encoding in param()

2022-06-07 Thread Tim Düsterhus
Thayne, this patch should be squashed with the previous 2/2 patch. On 6/4/22 06:46, astrotha...@gmail.com wrote: + Note that this converter doesn't do anything special with url encoded characters. If + you want to decode the value, you can use the url_dec converter on the output. If + the

Re: Rate Limiting with token/leaky bucket algorithm

2022-06-07 Thread Seena Fallah
I also tried with this one but this will give me 20req/s 200 OK and the rest of it 429 too many requests ``` listen test bind :8000 stick-table type ip size 100k expire 30s store http_req_rate(1s) acl exceeds_limit src_http_req_rate gt 100 http-request track-sc0 src unless exceeds