Canary deployments, A/B testing, and microservices with Edge Stack
What is Canary Deployment?
Reverse proxies and Layer 7
Canary deployment with Ambassador Edge Stack
Testing the canary
Rollback
Next Steps
What is Canary Deployment?
Canary deployments are a popular technique for incrementally testing changes on real-world traffic. In a traditional application, canary deployments occur on the granularity of the entire application. This limits the utility of canary deployments, as a single feature cannot be tested against real-world traffic.
With a microservices architecture, this is no longer the case. A single service team is able to test their updates with real-world users.
Unlike a monolith, a microservices team is able to:
- test multiple versions of their service simultaneously
- control which versions of their service are being tested and when
With these capabilities, a service team can conduct canary deployments, and run multiple different versions of their service for A/B testing, validating specific fixes, and so forth. The key to enabling these use cases is a Layer 7 reverse proxy.
Reverse proxies and Layer 7
A reverse proxy capable of managing Layer 7 traffic is necessary to support these capabilities. Incoming traffic is routed through the reverse proxy, which then routes traffic to different versions of a service.
In this example, we’ll use the Envoy Proxy. Envoy is a very lightweight, high-performance proxy designed for modern microservices architectures. Configuring Envoy, however, is a complicated exercise given the breadth of its features. Thus we’ll use Edge Stack, which is an open source API Gateway built around Envoy. Ambassador integrates Kubernetes-native functionality (e.g., annotations) into Envoy.
The picture below illustrates how an end-user sends traffic to a L7 reverse proxy, which can then route traffic to different service versions depending on criteria. For example, the proxy could route between a stable 1.1 version and a canary 1.2 version based on a weighted round robin policy, while sending only authenticated developer requests to the development 1.3 version.
Canary deployment with Ambassador Edge Stack
Ambassador Edge Stack is configured using Kubernetes annotations. We’ve already seen this dynamic configuration at work when we deployed a service that dynamically registered a URL with Ambassador. Now, we’ll use that same workflow to configure Ambassador to route different percentages of traffic to two different versions of the service.
- We’ll start by deploying the same example service as we’ve done previously. This deploys a service. Note: if you'd prefer to use Java, clone the Spring Boot Java template instead of the Python template.
hello-world-stable
git clone https://github.com/datawire/hello-world-pythoncd hello-world-pythonforge deploy
2. Now, let’s make a change to the
app.py
def root(): return "Hello World Canary! (up %s)\n" % elapsed()
3. We’re going to deploy this change as a canary. We do this by specifying using the
canary
service.yaml
weight: 10.0
forge --profile canary deploy
Testing the canary
- You’ll see a new service, be deployed. Now, let's test this out. Get the external IP address of Ambassador:
hello-world-canary
kubectl get services ambassadorNAME CLUSTER-IP EXTERNAL-IP PORT(S) AGEambassador 10.11.250.208 35.190.189.139 80:31622/TCP 4d
2. In order to see the results of this canary deployment, we need to simulate some real traffic. We’ll run a loop to issue a stream of GET requests to the service, and see how Ambassador routes between the
stable
canary
while true; do curl http://$AMBASSADOR_URL/hello/; done
Rollback
Sometimes your canary isn’t working, and you want to roll back so that all your production traffic goes to the stable version. Rolling back is as simple as deleting the canary deployment.
- Let’s delete the canary deployment and service.
kubectl delete svc,deploy hello-world-canary
2. If we rerun our loop, we’ll see that traffic goes straight to the
stable
while true; do curl http://$AMBASSADOR_URL/hello/; done
Next Steps
- Check out the Code Faster Guides for more tutorials on how to optimize your development workflow on Kubernetes.
- Get started with Ambassador Labs
- Check out our Comprehensive Guide to Canary Releases