How do threads and number of iterations impact test and what is JMeter’s max. thread limit

  1. The max number of threads is determined by a lot of factors, see this answer https://stackoverflow.com/a/11922239/460802

  2. There is a big difference in what you are proposing.

    • “500 threads, Loop 1 ” Means 500 threads AT THE SAME TIME doing the loop ONCE.
    • “50 threads, loop 10” Means only 50 threads AT THE SAME TIME doing the loop TEN TIMES.

In theory you get the same number of results (500), but you are hitting the server in a very different manner.

Leave a Comment