You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1.
start my server program. Program keeps http connection alive and waits for
5 sek then returns anything pushed into the queue. (this will become an
ajax push server in the future).
2.
Launch first 250 http instances to server to test load.
#!/bin/bash
for i in $(seq 1 250)
do
ab -n 10000 -t 100000000000 "http://localhost:12345/?fetch&;sess=$i" &
done
3.
This is okey until you launch another 250 http requests.
Then server dies with attached errors.
GOARCH=amd64
GOROOT=/home/jonaz/go
GOOS=linux
Which revision are you sync'ed to? (hg log -l 1)
changeset: 4052:b72ec78019b4
Please provide any additional information below.