[google-appengine] service problems

2011-02-25 Thread dobee
as of the time of this writing, we encounter serios problems on two of our apps. we see arbitrary DeadlineExceededErrors in the logs is there any known issue right now? thx, bernd -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to

[google-appengine] again down

2010-05-11 Thread dobee
hi google team appengine seems to be down again, like yesterday. what is the status of these downtimes? thx, bernd -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to google-appeng...@googlegroups.com. To

[google-appengine] 500 status on apps, api changes?

2010-02-09 Thread dobee
hello we encounter failures on some apps since about 10 hours. we can find no log entry for those errors. are there some api changes? we know of at least one change on how db.Model gets constructed, they now get the key keyword argument, which is new and broke another app of us, which we were

[google-appengine] Re: 500 status on apps, api changes?

2010-02-09 Thread dobee
seems that i have found the problem, the signature of db.get has changed, but only on appengine, we have put a wrapper around this and this does not work anymore now 02-09 12:35AM 40.319 UNHANDLED_EXCEPTION: Traceback (most recent call last): File

[google-appengine] Re: 500 status on apps, api changes?

2010-02-09 Thread dobee
ok, we now fixed the compatibility issues on our apps, but the development sdk still does not match the api on appengine. it would be nice to get information about such internal changes up- front the next time. it is always hard to explain our customers why the site was offline for some technical

[google-appengine] new quota exception?

2009-09-16 Thread dobee
is anybody aware of a hidden quota limit, i get the exception below, but in the dashboard i cannot see any quotas exceeded, when this happens, the dataviewer is also non-functional any clues? thx Exception while handling service_name: remote_datastore method: RunQuery request

[google-appengine] Re: SDK version 1.1.9 Released

2009-02-09 Thread dobee
that's great news! especially the remote_api is great! you rock guys :-) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to google-appengine@googlegroups.com

[google-appengine] Re: remote api, when?

2009-01-22 Thread dobee
wow, nice to hear ... this feature really rocks! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to google-appengine@googlegroups.com To unsubscribe from

[google-appengine] remote api, when?

2009-01-21 Thread dobee
hi all there is an undocumented remote api client in the 1.1.8 sdk which i tried, but it seems the protocoll buffer implementation is not available on appengine, just in the sdk. this error is raised when calling the remote_api handler type 'exceptions.ImportError': cannot import name

[google-appengine] index status building since days

2008-11-17 Thread dobee
i have an index that is on status building since about a week, i don't need it anymore, but vacuum says that the index is already deleted: Deleting selected index definitions. 2008-11-18 07:12:46,146 WARNING appcfg.py:892 An index was not deleted. Most likely this is because it no longer

[google-appengine] indexes for and queries

2008-11-06 Thread dobee
if i do this to find any entities that match house and dog i do Searchable.all().filter('content_type =', 'something').filter('words =', 'house').filter('words =', 'dog'). order('c_time') is it right that i need an index for every number of words? so if i want to support searches for cats dogs

[google-appengine] Re: How to set a property is unique key in app engine?

2008-11-06 Thread dobee
On Nov 6, 10:37 am, mawei1981 [EMAIL PROTECTED] wrote: Hi, All As we know, the database provide a unique key not a primary key to support we store some content we do not like redundant, we query some content use distinct because we do not want to see redundant record. So, when I store

[google-appengine] Re: patterns for expiration settings for static files

2008-11-01 Thread dobee
thx a lot just for the records: you dont need default_expiration but the static_files directive, the specific url needs to be first - url: /static/admin/xy\.nocache\.js expiration: 60s static_files: static/admin/xy.nocache.js upload: static/admin/xy.nocache.js - url: /static

[google-appengine] patterns for expiration settings for static files

2008-10-31 Thread dobee
is it possible to serve a static directory with a given expiration time while serving a contained file with a different expiration. for example this does not work for me: - url: /static expiration: 1d static_dir: static - url: /static/admin/xy\.nocache\.js expiration: 60s static_dir:

[google-appengine] Re: check if in transaction?

2008-09-01 Thread dobee
On Sep 2, 1:17 am, ryan [EMAIL PROTECTED] wrote: having said that, the python API already detects and prohibits nested transactions. from the beginning of RunInTransaction() in datastore.py:   if _CurrentTransactionKey():     raise datastore_errors.BadRequestError(       'Nested