Ludovic Champenois
Ludovic Champenois
in a Cloud SDK App run, we need to set the com.google.appengine.runtime.environment=Development system prop in Java Managed VM. This is not the case.
See SO entry at http://stackoverflow.com/questions/34620186/failing-to-run-zk-spreadsheet-on-app-engine-managed-vm
From arie: In https://cloud.google.com/appengine/docs/java/runtime (Threads section) we describe how one could use ThreadManager.currentRequestThreadFactory() with ExecutorService. It is a common practice to keep a ThreadPool as a member variable (or even...
It seems that https://github.com/GoogleCloudPlatform/appengine-java-vm-runtime/pull/93/files did not take care of the logic for logging traceid. It got removed. There is a test showing how to do it in https://github.com/GoogleCloudPlatform/appengine-java-vm-runtime/blob/master/appengine-java-logging/src/test/java/com/google/apphosting/logging/JsonFormatterTest.java search for...
From a customer: I'm working on migrating my app from standard -> flex and am using the compat image (java 7) and have run into a small inconsistency I thought...
We do not want to fill the VM disk space with logs. The environment providing the local logs to the console supports log rotation. Just need to verify we do...
The GAE staging phase that precompiles the JSP using the jars in a jetty distro still emits: 2016-05-07 15:08:26.379:INFO::main: Logging initialized @555ms 2016-05-07 15:08:26.879:INFO:oajs.TldScanner:main: At least one JAR was scanned...
See https://github.com/GoogleCloudPlatform/appengine-guestbook-python/blob/master/Makefile#L23
Move the logic to read GCE_METADATA_TIMEOUT env variable so we can better control it in app_identity component. Related internal change is 607513254.