1
votes

I recently moved my cloud endpoints project to java 8 .I am using objectify as my storage .I noticed some instabilities with the fetching of data from objectify . 1) The performance is ridiculously slow . 2) The loading of data with objectify from datastore throws 18:52:56.610 This request caused a new process to be started for your application, and thus caused your application code to be loaded for the first time. This request may thus take longer and use more CPU than a typical request for your application.

1
Try increasing your instance size and see if that helps. - saiyr
@saiyr. I don't see how that fits in logically. - I.Tyger

1 Answers

1
votes

Startup requests happen with GAE and have nothing to do with what libraries you are using; sometimes a request comes in and there are no instances ready to serve it. Thus GAE starts a new instance and serves the request.

Objectify works great with Java8.