I have a problem that I don't really know where to begin solving. Maybe it'll ring someone's bell.
TLDR: a Django app crashes and upon restart it runs but fails to import some modules. Upon another restart, all is fine again.
The whole story:
Different applications (we're up to three right now) on different Python (2.5.x, 2.6.x and 2.6.x) and Django versions (1.1.0, 1.2.5 and 1.3.0, respectively) occasionally exhibit spurious ImportErrors. For example, one of these apps started to fail every request by throwing an ImportError inside:
from django.contrib.gis.maps.google import GMarker, GEvent
We collected strace output and the relevant chunk is below (absolute path replaced with DIR for brevity and protecting the guilty).
stat64("DIR/django/contrib/gis/maps/google/GMarker", 0xf699ce3c) = -1 ENOENT (No such file or directory)
open("DIR/django/contrib/gis/maps/google/GMarker.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
open("DIR/django/contrib/gis/maps/google/GMarkermodule.so", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
open("DIR/django/contrib/gis/maps/google/GMarker.py", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
open("DIR/django/contrib/gis/maps/google/GMarker.pyc", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory)
(and once again the same thing s/GMarker/GEvent/)
After restarting the process everything runs smoothly, also running:
python -c 'from django.contrib.gis.maps.google import GMarker'
produces no errors.
The GMarker and GEvent classes are actually defined in django.contrib.gis.maps.google.overlays and imported in ...maps/google/__init__.py:
from django.contrib.gis.maps.google.gmap import GoogleMap, GoogleMapSet
from django.contrib.gis.maps.google.overlays import GEvent, GIcon, GMarker, GPolygon, GPolyline
from django.contrib.gis.maps.google.zoom import GoogleZoom
so it's fully expected that loading GMarker.py et al. will fail. It seems that Python has somehow forgotten about __init__.py and its namespace.
The apps are relatively high-traffic and it is conceivable (though not certain) that they might have exceeded their VM limits and recovered almost-gracefully. Also, at least in two cases the app had earlier problems leading to a crash -- SIGSEGV in one case, and err... something else in the other). A single app restart caused it to throw ImportErrors around, and another one made it behave again. Corrupted .py[c]? Timestamps are ancient.
All these apps are running on flup the wsgi-to-fastcgi server.
Each of these apps failed once so far (in completely different modules, two cases of __init__.py "forgotten" but I cannot find the third error ATM) so I cannot tell whether the modules are somehow meaningful.
Any and all pointers and ideas appreciated!
'wsgi.multithread': Falsein your reports? Otherwise the server configuration (used apache?, module, options, flup version etc.) can more important than your applications. Try also to think about two FAQs: I have problem with flup... and Calling WSGIServer.run from an... – hynekcer May 4 '12 at 7:59