I've noticed two types of mysterious errors occuring with my
application Go2.me (http://go2.me). Looking at my error log, I see a
spike in errors occurring every 2 hours - there is a definite
periodicity to the problem.
The first type of error is a DeadLineExceeded error. A request is
taking more than 8 seconds to respond and is getting killed. The
backtrace I'm getting doesn't yet seem to be within my own code. I
haven't deployed any new code in 26 days. These errors started on
January 10th (4 days ago).
--------------
Exception in request:
Traceback (most recent call last):
File "/base/python_lib/versions/1/django/core/handlers/base.py",
line 68, in get_response
callback, callback_args, callback_kwargs = resolver.resolve
(request.path)
File "/base/python_lib/versions/1/django/core/urlresolvers.py", line
160, in resolve
for pattern in self.urlconf_module.urlpatterns:
File "/base/python_lib/versions/1/django/core/urlresolvers.py", line
177, in _get_urlconf_module
self._urlconf_module = __import__(self.urlconf_name, {}, {}, [''])
File "/base/data/home/apps/g02me/10.330081388398854250/urls.py",
line 1, in <module>
from django.conf.urls.defaults import *
File "/base/python_lib/versions/1/django/conf/urls/defaults.py",
line 1, in <module>
from django.core.urlresolvers import RegexURLPattern,
RegexURLResolver
DeadlineExceededError
-------------
The matching URL in urls.py is:
(r'^user/([a-zA-Z0-9_\.\-]{1,20})/picture_(thumb|med|full)$',
UserPicture),
Can this be timing out trying to recompile this regex???
-------------------
The second error is:
01-14 10:14AM 31.122
Unknown exception: TemplateDoesNotExist('mapped.html',)
This is not reproducible - but seems to recur in a spurt, once each
morning between 10am and 11am for the last 3 days.
---------------------
I am at a loss as to how to debug these errors - I'm wondering if this
is due to an AppEngine service change or if anyone else is seeing
errors like this.
- Mike
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---