'Apache JMeter not getting response
I'm testing several functions and in some I'm having problems increasing the number of requests. For example, I was testing the factors function with 32 requests in 30 seconds and I had no problem, but when increasing to 64 requests I had the following problem:
Requests open normally
but after they finish their execution i don't get any response in jmeter. It seems that the connection was lost and it is waiting for the timeout .
I'm testing a weak VM, only 1 vCPU and 2Gb.
Solution 1:[1]
If you're using HTTP Request sampler by default it will wait for response "forever" (unless the TCP timeout is set somewhere in underlying JDK or OS)
So if your application gets overloaded and fails to respond JMeter will wait for the response infinitely, in order to avoid the situation with "hanging" test consider setting reasonable connect and response timeouts, the setting live under "Advanced" tab of the HTTP Request sampler (or HTTP Request Defaults if you have more than one HTTP Request sampler in your Test Plan)
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Dmitri T |

