Been running into a strange warning with ingress-nginx on a K8S deployment.
Basically, the error is
2023/02/16 15:56:03 [warn] 34#34: *7840048 a client request body is buffered to a temporary file /tmp/nginx/client-body/0000009342, client: <client ip>, server: <hostname>, request: "POST /next HTTP/2.0", host: "<hostname>", referrer: "<hostname>"
The deployment was made with helm, using default values; the helm chart version is ingress-nginx-4.3.0 and app version is 1.4.0 What's even more annoying is that I get this warning for requests having the body as small as 500 bytes.
The gist of it all is, I'm not sure if this warning causes the following scenario: the upstream gets the request, but the client gets no reply (not even a 4xx/5xx Error). Been going over logs like crazy, but there's nothing conclusive to figure out if I can safely ignore this warning.
Thanks!
Deployed Helm chart in a different K8S cluster, using all default values with same result. Increased the timeout on the upstream side to 60s.