I am trying to emphasize the test of my Spring boot application, but when I run the following command, what it does ab
is try to give the result to my maximum application. But I need to check if my application can accommodate a specific request per second.
ab -p req.json -T application/json -k -c 1000 -n 500000 http://myapp.com/customerTrack/v1/send
The query per second above is 4000, but in fact, in my application, a lot of records are buffered, which means that it cannot hold as many RPS. Can someone tell me how to set a specific query per second in ab
tools ? Thanks!
source
share