Reputation: 85
I want to test 400 Concurrency Users Which allow us to pass our load testing scenario as I am using below configuration setting in Apache JMeter which will through us lots of errors.
Number of Thread (Users): 400 Ramp-Up Time: 1 Loop Count: Forever Until ( Period of 1 minutes )
Upvotes: 0
Views: 908
Reputation: 168207
We are not telepathic enough to tell what's wrong with your setup without seeing the configuration and the nature of errors.
Several generic hints:
It is better to increase and decrease the load gradually so consider using longer ramp-up time and increase test duration accordingly. I.e.
This way you will be able to tell what was the load when the errors started occurring, what is the maximum number of users your application can support, where is the saturation point, does it recover when the load gets back to normal, etc. See JMeter Ramp-Up - The Ultimate Guide article for more details.
It might be the case you found the bottleneck, i.e. your application fails to support 400 concurrent users, now you need to find the reason which may be in:
Upvotes: 1