How can we stimulate 10,000 concurrent requests?

Is there a way to stimulate 10,000 concurrent HTTP requests?

I am trying to use a siege tool but there is only a 2000 limit for my laptop How can I make a request for 10000?

+4
source share
4 answers

Jmeter allows distributed testing, which means that you can configure a set of computers (one of which acts as a master, and the rest as subordinates) to run as many threads as you need. Jmeter has a very good document explaining this here.,.

http://jmeter.apache.org/usermanual/jmeter_distributed_testing_step_by_step.pdf

and some more information.,.

http://digitalab.org/2013/06/distributed-testing-in-jmeter/

, , .

+3

, , Apache ab.

, ab -n 100 -c 10 http://www.example.com/ - 100 , concurrency 10 .

, . , TCP 65536 , , 1024 , 64500 .

. , Linux net.ipv4.*.

, , , HTTP- . Apache StartServers , nginx worker_processes worker_connections. , , - (, php-fpm), .

, , .

Btw. ab, . , (, " 2xx" - .)

+6

Apache JMeter? -, , . ThreadGroup, . . , UltimateThreadGroup JMeter.

JMeter . . SO . .

+2

TCP , , . , , , JavaScript, AJAX .

node.js JavaScript.

+1

All Articles