I am seeing frequent errors Varnish FetchError "Timed out reusing backend connection". Checked couple of blogs, but not find any resolution. Could you please help?
The Timestamp Beresp: 1605444571.456893 45.000285 45.000183
tag in your VSL output indicates that your backend took 45.000183
seconds to generate its response, which triggered the first_byte_timeout
.
In reality, your backend probably needed more than 45 seconds to generate the output, but Varnish just gave up after it hit the timeout.
Here are your options:
first_byte_timeout
runtime parameter to a better numberAlthough option 1 is theoretically viable, you really want to go for option 2, and figure out why it is taking so long for the backend to respond.