Some tech specifications:
- CentOS 6.0
- uWSGI 0.9.9.2
- Nginx 1.0.5
- Django 1.3.1
uWSGI:
[uwsgi]
socket = 127.0.0.1:3031
master = true
processes = 5
uid = xx
gid = xx
env = DJANGO_SETTINGS_MODULE=xx.settings
module = django.core.handlers.wsgi:WSGIHandler()
post-buffering = 8192
harakiri = 30
harakiri-verbose = true
disable-logging = true
logto = /var/log/xx.log
vacuum = true
optimize = 2
JSON serializer:
class LazyEncoder(simplejson.JSONEncoder, json.Serializer):
def default(self, obj):
if isinstance(obj, Promise):
return force_unicode(obj)
if isinstance(obj, Decimal):
u_value = force_unicode(obj)
if u'.' in u_value:
return float(u_value)
return int(u_value)
return super(lazy_encoder, self).default(obj)
JSON HttpResponse:
class JsonResponse(HttpResponse):
status_code = 200
json_status_code = 200
message = _('OK')
def __init__(self, json={}, *args, **kwargs):
mimetype = kwargs.pop('mimetype', 'application/json')
if not 'status' in json:
json['status'] = {'code': self.json_status_code, 'message': self.message}
super(JsonResponse, self).__init__(LazyEncoder(indent=settings.DEBUG and 4 or None, separators=settings.DEBUG and (', ', ': ') or (',', ':')).encode(json), mimetype=mimetype, *args, **kwargs)
I have a few subclasses of JsonResponse with other json_status_code and message.
View:
....
if application.status == Application.STATUS_REMOVED:
return JsonApplicationSuspendedResponse()
....
return JsonResponse()
PROBLEM:
Even when the application status is changing it happens that I receives old json lest say for 3 - 4 seconds and then it returning JsonApplicationSuspendedResponse() correctly.
I checked the database application status update takes place immediately, also noticed that if I reboot uWSGI and send request response is correct and the opposite situation happens. Second request after status change can have old json.
It looks as if they write the response for few sencods and had a problem with her refresh (Cache is disabled).
Any ideas where it might be the problem ?
The same code works fine on Apache2 and mod_wsgi
fixed
This was a really stupid bug, in JsonResponse I had:
def __init__(self, json={}, *args, **kwargs):
part json={} is quite important here, JsonResponse and each subclass of JsonResponse after init shared initial dict and its contents, so the answer looked like a did not change.
def __init__(self, json=None, *args, **kwargs):
mimetype = kwargs.pop('mimetype', 'application/json')
if not json:
json = {}
if not 'status' in json:
json['status'] = {'code': self.json_status_code, 'message': self.message}
Thanks for your time