July 2018
Intermediate to advanced
506 pages
16h 2m
English
App Engine provides a powerful mechanism for splitting traffic between different versions of a service. This makes it possible to easily implement canary testing, where traffic is gradually rolled over to a new version of a service. For example, a team may decide to allocate 5% of the total network traffic to a new version of a service, and gradually increase traffic allocation to 100%, assuming the service operates as expected. If at any time the service begins to display issues, traffic can be reduced or entirely removed.
To begin splitting network traffic, let's first deploy our Java implementation of the color service. Because our Java service uses the Maven App Engine plugin, we'll leverage that plugin for the ...