Appengine creates deferred queue(/_ah/queue/deferred) for every hit or every request on Multitenant applications site, hence creating and running alot of queues which gives wrong results as well as excessive use of queue leading to exceeded quota.
this application sets namespace i.e. NamespaceManger.set(somenamespace)
before datastore operations as part of multitenant application. No queue related coding is done, default queue is automatically created by appengine with every operation multiple queues are generated which are causing issues.
thanks in advance.any help is appreciate.
In my current application we are using GAE Cloud Endpoint to connect to android and web module. In this application we have seperated the datastore and memcache based on namespace(Multitentant) application. The observation which i found is that for every invocation for android or web module there is a defered queue entry in the log file. This is causing my backend instance hours being consumed. What i am failing to understand is that since i am not using Taskqueue or have made no configuration for the same how/who is triggering the defered queue, and what is the possible approach to resolve this issue