Hi,
The architecture of microservices in App Engine is explained in this documentation <https://cloud.google.com/appengine/docs/standard/java/microservices-on-app-engine> and as a start you may migrate one of your existing monolithic applications to one with microservices by following this guide <https://cloud.google.com/appengine/docs/standard/java/microservice-migration>. All your microservices can be run independently either in your local environment or on cloud, however the only way to execute code in these services is through an HTTP invocation, like a user request or a RESTful API call. Furthermore, autoscaling, load balancing, and machine instance types are all managed independently for services. We Have provided different range of samples in java-docs-samples <https://github.com/GoogleCloudPlatform/java-docs-samples/tree/master/appengine> and getting-started-java <https://github.com/GoogleCloudPlatform/getting-started-java>, though we haven’t provided any particular sample for microservices in App Engine Standard. So, I recommend that you create a feature request on having a sample for microservices in App Engine Standard Env. in our Issue Tracker <https://cloud.google.com/support/docs/issue-trackers> since Google Groups are reserved for general Google Cloud Platform-end product discussions On Sunday, May 13, 2018 at 12:03:32 PM UTC-4, Mikael Hjalmarson wrote: > > Hi, > > I'm sorry if these questions have been answered in older threads, but I've > tried my best to search through the group. This week I took my first steps > in GAE, but it seems hard to get going with something other than simple > HelloWorld apps since the documentation is lacking. I guess what I'm > looking for is a guide on how to get started with microservices in a GAE > project in the Standard Environment. How do I structure my Java project? > How can I run these services (or modules in the older terminology) in my > local environment. How will scaling work with these services? > > Best regards > Mikael > -- 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/fa4b51a4-58aa-41d9-bcf1-4a2bcbe5c7b5%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
