The very simple Java code inside the doGet () servlet takes more than a second of processor time in GAE. I have read some documentation related to quotas and obviously I am not doing anything wrong.
I wanted to know what the processor uses the most, I use Google help recommendations.
The only thing the code above tells me is that when checking the header, more than a second (1000 ms) of processor time will be used, which for Google is a warning in the log panel. This seems like a very simple request and still uses more than a second of the processor.
What am I missing?
Below is an image of magazines for all entertainment. 
I post the full code, for the benefit of all.
@SuppressWarnings("serial") public class R2CComingSoonSiteServlet extends HttpServlet { private static final Logger log = Logger.getLogger(R2CComingSoonSiteServlet.class.getName()); public void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException {
java google-app-engine quota
Geo
source share