I have an HTTP GET request. I need to send the request to the application server for more than 4000 times exactly in 1 second.
HTTP GET request
4000
I\'m sending
Do you want to stick with JMeter? Otherwise Httperf is a decent tool and easy to use:
httperf --server=www.example.com --rate=4000 --num-conns=4000
for instance.
Hope this helps a bit, although not entirely what you asked for.