> Hi,
>
> I'm using Nginx/1.0.14 and uWSGI/1.2 run a django/1.3 project.
>
> I got numbers of error in my uwsgi log every minute:
> $ grep parsing uwsgi.log | tail
> Mon Jun 18 07:33:13 2012 - error parsing request
> Mon Jun 18 07:34:13 2012 - error parsing request
> Mon Jun 18 07:35:13 2012 - error parsing request
> Mon Jun 18 07:36:13 2012 - error parsing request
> Mon Jun 18 07:37:13 2012 - error parsing request
> Mon Jun 18 07:38:13 2012 - error parsing request
> Mon Jun 18 07:39:13 2012 - error parsing request
> Mon Jun 18 07:40:13 2012 - error parsing request
> Mon Jun 18 07:41:13 2012 - error parsing request
> Mon Jun 18 07:42:13 2012 - error parsing request
>
> I'm not sure if it's critical or not.
>
> my uwsgi configuration file:
> [uwsgi]
> socket = :14000
> master = true
> module = django_wsgi
> processes = 32
> harakiri = 30
> daemonize = /path/to/uwsgi.log
> pidfile = /var/run/uwsgi/uwsgi.pid
> home = /path/to/virtualenv
> pythonpath = /path1
> pythonpath = /path2
> pythonpath = /path3
> buffer-size = 32768
> reload-mercy = 8
> max-requests = 5000
> socket-timeout = 16
> auto-procname = true
> procname-prefix-spaced = a_prefix
> no-orphans = true
>
> and my nginx conf:
> location / {
> client_max_body_size 1024m;
> uwsgi_pass 127.0.0.1:14000;
> include uwsgi_params;
> uwsgi_connect_timeout 300;
> uwsgi_read_timeout 300;
> uwsgi_send_timeout 300;
> uwsgi_buffers 4 4k;
> uwsgi_buffer_size 4k;
> uwsgi_busy_buffers_size 8k;
> track_uploads looqiloo 30s;
> }
Can you check if it happens only during uploads ?
Eventually can you try removing the track_uploads option ?
--
Roberto De Ioris
http://unbit.it
_______________________________________________
uWSGI mailing list
[email protected]
http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi