Antoni
Antoni

Reputation: 49

Simulating 100k request on jmeter

i want to try simulating 100k request to my API using JMeter, i tried to used the setting like this

enter image description here

but the graph on my cloud run, it's like the request not processed.

this is the JMeter result : enter image description here

this the chart graph : enter image description here

or is that something on my JMeter set up that i set wrong?

Thank you for your help!

Upvotes: -1

Views: 30

Answers (1)

Ivan G
Ivan G

Reputation: 2707

  1. Well, first of all I don't think you can run 100000 requests at once from one machine because you only have 65535 maximum TCP ports plus operating system and other software consumes internally some of them
  2. Moreover you need to properly tune your operating system TCP/IP parameters as by default only subset of ephemeral ports is available to the user
  3. Also you need to properly tune JMeter, at least follow JMeter Best Practices
  4. It's not very clear what is your desired load pattern, like shoot 100000 users running 1 request at once, gradually increase the load and keep 100000 users online for some time, several spikes, etc.

In order to have 100000 online concurrent users you will definitely need to go for Distributed Testing, the remaining configuration depends on the point 4.

Upvotes: 1

Related Questions