gregors
Bandit keep alives not working in apache bench
Question y’all,
When I play with apache bench (ab) and I use the -k flag the output for the runs have this
Keep-Alive requests: 0
However if I try Cowboy for example it seems to report correctly
Keep-Alive requests: 15000
as well as being a bit faster (due to reused connections no doubt). I tried this with a few other languages, golang etc and they seemed to handled keep alives with ab.
Now I did an initial search through Bandit docs but I’m not seeing any settings pertaining to this. I did see a small blurb saying it was supported in http/1.1. Ok hmmmmmmmmmm.
What exactly is ab pushing out? Let’s spin up tcdump
sudo tcpdump -i any -A 'port 4000'
GET /health-check HTTP/1.0
Connection: Keep-Alive
Host: 127.0.0.1:4000
User-Agent: ApacheBench/2.3
Accept: */*
huh http/1.0 so I’m guessing Bandit just doesn’t support keep alives in that version. I don’t know exactly what the difference is, I should probably read the http spec at some point, but I am asking if there’s an easy way I can configure Bandit to support that. No problem if there isn’t an easy way. I’m just having fun. But it does look like other servers do support this…probably for ab use cases ![]()
Marked As Solved
mtrudel
Thanks for the PR; it’s merged!
I’ll echo what others have said here; ab is in general a pretty outdated program that does a lot of oddball stuff like this (IIRC, this was actually strictly out of spec prior to the RFC911x series).
Also Liked
LostKobrakai
A quick google suggests keep-alive wasn’t officially supported before http 1.1, but was added as a response to people using it with http 1.0 without a spec for it existing. So it’s a question of how spec compliant bandit wants to be. A toggle might be a reasonable middleground.
gregors
Update after some weekend time to dig into this…
Popular in Questions
Other popular topics
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #websockets
- #supervisor
- #advent-of-code
- #elixirconf-us
- #distillery
- #processes
- #forms
- #api
- #metaprogramming
- #security
- #performance










