I am Getting a lot of varnish 503 error un uncached pages , all these error have one thing in common , checking varnish logs it stats "FetchError overflow". Also error is not consistent , sometimes its error and other times page open Perfectly. My guess its some kind of memory buffer overflow, can any one ever witnessed same error , or can point me to some Place. Version of Varnish is 5.2
Varnish FetchError overflow
Asked Answered
There are several varnish parameters you can try to add/increase in /etc/default/varnish
to fix these issues. Adjust the sizes and see what works in your situation.
E.g.:
-p http_resp_hdr_len=32M -p http_resp_size=32M -p http_req_hdr_len=32M -p http_req_size=32M -p workspace_backend=32M -p workspace_client=32M
Make sure to reload Varnish after changing configs.
© 2022 - 2024 — McMap. All rights reserved.
/etc/default/varnish
parameterworkspace_backend
i.e. to131072
? try adding there i.e. following-p http_resp_hdr_len=65536 -p http_resp_size=98304 -p workspace_backend=131072
. Restart of Varnish-service is needed after those changes. – Griffiths