And here is the dockerfile: (In addition to the one mentioned in the
transition doc, we also install openjdk8 in this, and ofcourse add
requestlog in the startup command).

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

On Sat, Mar 4, 2017 at 10:25 AM, Vinay Chitlangia <[email protected]>
wrote:

> Thanks for the response.
> Yes, I have followed the steps in the document
> <https://cloud.google.com/appengine/docs/flexible/java/dev-jetty9> 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
>
> On Fri, Mar 3, 2017 at 11:23 PM, 'George (Cloud Platform Support)' via
> Google App Engine <[email protected]> wrote:
>
>> 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
>> <https://cloud.google.com/appengine/docs/flexible/java/dev-jetty9>.
>>
>> More details, such that you deem relevant, may prove of help as well.
>>
>> --
>> 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/to
>> pic/google-appengine/FfR1B38yUEo/unsubscribe.
>> To unsubscribe from this group and all its topics, send an email to
>> [email protected].
>> To post to this group, send email to [email protected].
>> Visit this group at https://groups.google.com/group/google-appengine.
>> To view this discussion on the web visit https://groups.google.com/d/ms
>> gid/google-appengine/64b6afe7-6f43-4123-9bb5-5bc13e1511b6%
>> 40googlegroups.com
>> <https://groups.google.com/d/msgid/google-appengine/64b6afe7-6f43-4123-9bb5-5bc13e1511b6%40googlegroups.com?utm_medium=email&utm_source=footer>
>> .
>>
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
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/CADt9hj89ss%2BsjeuFd8G8u2c0S_d_ZDruXFo9PCOz96NU1G9JPw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to