I'm executing the script for 1 hr but it is running for 10 min

59 Views Asked by At

I'm executing the script for 1 hour but it is running for 10 minutes , i also check loop forever, test data is also proper, all the script is running properly without any error , I run the script thrice validate all the things but im not getting why it is happening

How to overwrite the issues and how to run a the script for 1 hour

1

There are 1 best solutions below

0
Dmitri T On

Normally you can find the reason for termination of a thread or test in jmeter.log file. If it is not there or it's vague - you can increase JMeter logging level to something more verbose

The most common reasons for premature end of the test are:

  1. Not enough loops to cover the anticipated duration of the test in the Thread Group
  2. Not enough test data if CSV Data Set Config is configured to stop thread on EOF
  3. Thread group is configured to stop the thread/test on a sampler error
  4. There is Flow Control Action sampler somewhere configured to stop thread/test
  5. There is a runtime error like OutOfMemoryError or StackOverFlowError