Reputation: 1
I'm performing load test in my application which is registration application for schools. So I'm performing load test for the registration scenario and when I perform load test with JMeter for 350 concurrent users using Thread group with 1 ramp up secs , I'm facing the below issue's ,
Timeout performing EVAL
500 - The request timed out.
502 - Internal server error.
Can any one suggest on this whether it is issue from JMeter tool or the issues is from the application side.
Upvotes: 0
Views: 442
Reputation: 168082
Normally HTTP Status Codes 500 and above indicate server-side error so most probably your application under test is not capable of handling 350 concurrent users, so basically you've found the bottleneck.
Next actions would be identifying
The cause of the bottleneck which might be in:
Upvotes: 0