How did you conduct the transition, step-by-step?
One of the necessary configuration steps might have a direct influence on the issues you mention, namely: “Customizing the Java 8 / Jetty 9.3 runtime” from the “The Java 8 / Jetty 9.3 Runtime” document.
runtime: custom
env: flex
handlers:
- url: /.*
script: this field is required, but ignored
secure: always
env_variables:
USE_GAE_MEMCACHE: 1
--
You received this message because you are subscribed to a topic in the Google Groups "Google App Engine" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-appengine/FfR1B38yUEo/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-appengine+unsubscribe@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/64b6afe7-6f43-4123-9bb5-5bc13e1511b6%40googlegroups.com.
FROM gcr.io/google-appengine/jetty9
RUN apt-get -q update && \
apt-get -y -q --no-install-recommends -t jessie-backports install openjdk-8-jdk && \
apt-get clean && \
rm /var/lib/apt/lists/*_*
ADD backend.war $JETTY_BASE/webapps/root.war
WORKDIR $JETTY_BASE
RUN java -jar $JETTY_HOME/start.jar --approve-all-licenses \
--add-to-startd=jmx,stats,hawtio,requestlog \
&& chown -R jetty:jetty $JETTY_BASE
Thanks for the response.Yes, I have followed the steps in the document you have mentioned. (You mentioned one of the step has a direct influence, which step is that)I modified the docker file to add requestlog. However that did not seem to have any impact. Attached is the screenshot of the log.The message about memcache host and port is written in the readhandler (and should have been part of the request log).The app.yaml is in src/main/appengine directory and fairly vanilla.runtime: custom
env: flex
handlers:
- url: /.*
script: this field is required, but ignored
secure: always
env_variables:
USE_GAE_MEMCACHE: 1