hdknr / annotated-django

Django for Study
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

gunicorn #42

Open hdknr opened 6 years ago

hdknr commented 6 years ago
hdknr commented 6 years ago
2017/02/01 02:23:50 [warn] 10934#10934: 
*636925 an upstream response is buffered to a temporary file 
 /var/cache/nginx/proxy_temp/7/18/0000003187 while reading upstream, 
 client: 192.31.23.87, 
 server: localhost, 
 request: "POST /api/users HTTP/1.1", 
 upstream: "http://unix:/home/system/logs/gunicorn.sock:/api/users", 
 host: "www.service.net"
この警告は、メモリバッファが一杯になったのでファイルに吐き出しているという内容です。
デフォルトのメモリバッファの大きさは実行している計算機/OSのページサイズと同じ値(4KBか8KB)となっており、これを大きくすることで解消できます(proxy_buffer_sizeパラメータ)。

proxy_buffer_sizeを変更するときは、proxy_buffersも整合を持たせて変更する必要があります。