Hi Guys
I start 2 runnable background jobs within a GAE task to fetch external data via https.
Is there any limitation on this approach? This application intermittently throws 500 errors like
com.google.apphosting.runtime.jetty9.JettyLogger warn: http://{app}.
appspot.com/task/person/{personId}/update (
JettyLogger.java:30)
javax.servlet.ServletException: java.lang.ClassCastException: Stack trace intentionally empty, disable using -XX:-OmitStackTraceInFastThrow
at com.google.apphosting.runtime.jetty9.AppVersionHandlerMap.handle(AppVersionHandlerMap.java:297)
at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:134)
at org.eclipse.jetty.server.Server.handle(Server.java:539)
Not sure whether this kinds of error is caused by the approach above. It is running in GAE standard env. with java8 enabled.
thanks
Jerry