I noticed that when my cron job request hits cold start my next task queue 
request always hits some strange CPU ms usage.

My cron job only starts task queue job.

Usually cron job request has 51ms 73cpu_ms 0kb latency, and task queue 
request 76ms 66cpu_ms 12api_cpu_ms latency. 

But if cron job request starts with cold start my task queue request has  
2514ms 
1515cpu_ms 12api_cpu_ms latency (with pending_ms=385). Also why 385 ms 
waiting for cron job request to finish?

public class CronOdgodjeni extends HttpServlet { @Override protected void 
doGet(HttpServletRequest req, HttpServletResponse resp) throws 
ServletException, IOException { Deferred.defer(new TaskOdgodjeni()); } }

Should I ignore this ?

-- 
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.

Reply via email to