Search code examples
pythontestingload-testingperformance-testing

How to send concurrent 10,000 post request using python?


I developed REST server. I hosted that one my virtual machine nginx server. Now i want to do bench marking by sending 10,000 concurrent request per second. So any solution for this ?


Solution

  • 10,000 per second? You'll need lots of machines to do this.

    Write a client that can POST requests serially and then replicate it on several machines.