Django + FastCGI - randomly raising OperationalError - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T13:06:09Zhttp://stackoverflow.com/feeds/question/393637http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/393637/django-fastcgi-randomly-raising-operationalerror4Django + FastCGI - randomly raising OperationalErroribz2008-12-26T09:04:03Z2009-11-16T18:46:07Z
<p>I'm running a Django application. Had it under Apache + mod_python before, and it was all OK. Switched to Lighttpd + FastCGI. Now I randomly get the following exception (neither the place nor the time where it appears seem to be predictable). Since it's random, and it appears only after switching to FastCGI, I assume it has something to do with some settings.</p>
<p>Found a few results when googleing, but they seem to be related to setting maxrequests=1. However, I use the default, which is 0.</p>
<p>Any ideas where to look for?</p>
<p>PS. I'm using PostgreSQL. Might be related to that as well, since the exception appears when making a database query.</p>
<p>Thanks.</p>
<pre><code> File "/usr/lib/python2.6/site-packages/django/core/handlers/base.py", line 86, in get_response
response = callback(request, *callback_args, **callback_kwargs)
File "/usr/lib/python2.6/site-packages/django/contrib/admin/sites.py", line 140, in root
if not self.has_permission(request):
File "/usr/lib/python2.6/site-packages/django/contrib/admin/sites.py", line 99, in has_permission
return request.user.is_authenticated() and request.user.is_staff
File "/usr/lib/python2.6/site-packages/django/contrib/auth/middleware.py", line 5, in __get__
request._cached_user = get_user(request)
File "/usr/lib/python2.6/site-packages/django/contrib/auth/__init__.py", line 83, in get_user
user_id = request.session[SESSION_KEY]
File "/usr/lib/python2.6/site-packages/django/contrib/sessions/backends/base.py", line 46, in __getitem__
return self._session[key]
File "/usr/lib/python2.6/site-packages/django/contrib/sessions/backends/base.py", line 172, in _get_session
self._session_cache = self.load()
File "/usr/lib/python2.6/site-packages/django/contrib/sessions/backends/db.py", line 16, in load
expire_date__gt=datetime.datetime.now()
File "/usr/lib/python2.6/site-packages/django/db/models/manager.py", line 93, in get
return self.get_query_set().get(*args, **kwargs)
File "/usr/lib/python2.6/site-packages/django/db/models/query.py", line 304, in get
num = len(clone)
File "/usr/lib/python2.6/site-packages/django/db/models/query.py", line 160, in __len__
self._result_cache = list(self.iterator())
File "/usr/lib/python2.6/site-packages/django/db/models/query.py", line 275, in iterator
for row in self.query.results_iter():
File "/usr/lib/python2.6/site-packages/django/db/models/sql/query.py", line 206, in results_iter
for rows in self.execute_sql(MULTI):
File "/usr/lib/python2.6/site-packages/django/db/models/sql/query.py", line 1734, in execute_sql
cursor.execute(sql, params)
OperationalError: server closed the connection unexpectedly
This probably means the server terminated abnormally
before or while processing the request.
</code></pre>
http://stackoverflow.com/questions/393637/django-fastcgi-randomly-raising-operationalerror/393656#3936560Answer by diclophis for Django + FastCGI - randomly raising OperationalErrordiclophis2008-12-26T09:43:27Z2008-12-26T09:43:27Z<p>In the switch, did you change PostgreSQL client/server versions?</p>
<p>I have seen similar problems with php+mysql, and the culprit was an incompatibility between the client/server versions (even though they had the same major version!)</p>
http://stackoverflow.com/questions/393637/django-fastcgi-randomly-raising-operationalerror/394025#3940250Answer by Peter Rowell for Django + FastCGI - randomly raising OperationalErrorPeter Rowell2008-12-26T17:29:32Z2008-12-26T17:29:32Z<p>Smells like a possible threading problem. Django is <em>not</em> guaranteed thread-safe although the in-file docs seem to indicate that Django/FCGI can be run that way. Try running with prefork and then beat the crap out of the server. If the problem goes away ...</p>
http://stackoverflow.com/questions/393637/django-fastcgi-randomly-raising-operationalerror/523295#5232950Answer by Andrey for Django + FastCGI - randomly raising OperationalErrorAndrey2009-02-07T06:24:16Z2009-02-07T06:24:16Z<p>+1 I have the same problem. I am using postgresql too and the problem happens while session do some jobs. Probably this is the key?</p>
http://stackoverflow.com/questions/393637/django-fastcgi-randomly-raising-operationalerror/546865#5468650Answer by cheeming for Django + FastCGI - randomly raising OperationalErrorcheeming2009-02-13T17:29:29Z2009-02-13T17:29:29Z<p>Maybe the PYTHONPATH and PATH environment variable is different for both setups (Apache+mod_python and lighttpd + FastCGI).</p>
http://stackoverflow.com/questions/393637/django-fastcgi-randomly-raising-operationalerror/601989#6019891Answer by ibz for Django + FastCGI - randomly raising OperationalErroribz2009-03-02T11:23:49Z2009-03-02T11:23:49Z<p>In the end I switched back to Apache + mod_python (I was having other random errors with fcgi, besides this one) and everything is good and stable now.</p>
<p>The question still remains open. In case anybody has this problem in the future and solves it they can record the solution here for future reference. :)</p>
http://stackoverflow.com/questions/393637/django-fastcgi-randomly-raising-operationalerror/645020#6450201Answer by Matt for Django + FastCGI - randomly raising OperationalErrorMatt2009-03-13T23:56:27Z2009-03-13T23:56:27Z<p>I fixed a similar issue when using a geodjango model that was not using the default ORM for one of its functions. When I added a line to manually close the connection the error went away.</p>
<p><a href="http://code.djangoproject.com/ticket/9437" rel="nofollow">http://code.djangoproject.com/ticket/9437</a></p>
<p>I still see the error randomly (~50% of requests) when doing stuff with user login/sessions however.</p>
http://stackoverflow.com/questions/393637/django-fastcgi-randomly-raising-operationalerror/803664#8036640Answer by Adam Nelson for Django + FastCGI - randomly raising OperationalErrorAdam Nelson2009-04-29T18:35:06Z2009-04-29T18:35:06Z<p>Have you considered downgrading to Python 2.5.x (2.5.4 specifically)? I don't think Django would be considered mature on Python 2.6 since there are some backwards incompatible changes. However, I doubt this will fix your problem.</p>
<p>Also, Django 1.0.2 fixed some nefarious little bugs so make sure you're running that. This very well could fix your problem.</p>
http://stackoverflow.com/questions/393637/django-fastcgi-randomly-raising-operationalerror/1053436#10534360Answer by shanyu for Django + FastCGI - randomly raising OperationalErrorshanyu2009-06-27T19:17:03Z2009-06-27T19:17:03Z<p>I went through the same problem recently (lighttpd, fastcgi & postgre). Searched for a solution for days without success, and as a last resort switched to mysql. The problem is gone.</p>
http://stackoverflow.com/questions/393637/django-fastcgi-randomly-raising-operationalerror/1691350#16913500Answer by slav0nic for Django + FastCGI - randomly raising OperationalErrorslav0nic2009-11-07T00:07:35Z2009-11-07T00:13:21Z<p>Why not storing session in cache?
Set</p>
<pre><code>SESSION_ENGINE = "django.contrib.sessions.backends.cache"
</code></pre>
<p>Also you can try use postgres with <em>pgbouncer</em> (postgres - prefork server and don't like many connects/disconnects per time), but firstly check your postgresql.log.</p>
<p>Another version - you have many records in session tables and <em>django-admin.py cleanup</em> can help.</p>
http://stackoverflow.com/questions/393637/django-fastcgi-randomly-raising-operationalerror/1744068#17440680Answer by Maddy for Django + FastCGI - randomly raising OperationalErrorMaddy2009-11-16T18:46:07Z2009-11-16T18:46:07Z<p>The problem could be mainly with Imports. Atleast thats what happened to me.
I wrote my own solution after finding nothing from the web. Please check my blogpost here: <a href="http://nandakishore.posterous.com/simple-djangopython-utility-to-check-all-the" rel="nofollow">Simple Python Utility to check all Imports in your project</a></p>
<p>Ofcourse this will only help you to get to the solution of the original issue pretty quickly and not the actual solution for your problem by itself.</p>