logo
Menu

Automating Chaos Engineering in Your Delivery Pipelines

We can add resilience testing to our suite of automated tests and continuously verify our system's output or behavior by combining the CI/CD practice and chaos engineering, by including AWS FIS experiments as part of our AWS CodePipeline delivery pipelines.

Gunnar Grosch
Amazon Employee
Published Sep 22, 2023
Last Modified May 21, 2024
Continuous Integration and Continuous Deployment (CI/CD) allow software teams to automate build, test, and release of software changes consistently and repeatedly. Chaos engineering is the process of stressing an application in testing or production environments by creating disruptive events, such as server outages or API throttling, and observing how the system responds to uncover the hidden issues, monitoring blind spots, and performance bottlenecks that are difficult to find in distributed systems. By combining the CI/CD practice and chaos engineering, we can add resilience testing to our suite of automated tests. Running automated fault injection experiments in our CI/CD pipelines helps us detect issues early and avoid outages in production, and repeating experiments on every deployment also verifies that our system continues to be resilient to failure after unknown parts of the system change.
In this post, we will look at how to use chaos engineering experiments in our CI/CD pipelines to run experiments on each deployment automatically. We will be using AWS Fault Injection Service (FIS) – a fully managed service for running fault injection experiments on AWS – and AWS CodePipeline – a fully managed continuous delivery service for fast and reliable application and infrastructure updates – but the same approach applies to other tools and services.
Our application is built using Amazon EC2 instances in an Amazon EC2 Auto Scaling group with Amazon RDS as a datastore and fronted by an Application Load Balancer (Figure 1). It makes use of the AWS Code services for CI/CD (Figure 2) as well as Amazon CloudWatch for monitoring and alarms. The application could as well use containers, serverless, or a mix of them all, and the same way of using chaos engineering in the pipeline as described in this post would apply.
Application architecture diagram
Figure 1. Application architecture diagram
Original pipeline in AWS CodePipeline
Figure 2. Original pipeline in AWS CodePipeline
Start with creating an AWS FIS experiment template by configuring one or more actions to run against the target resources of the application. Here we have created an action to add network latency to Amazon EC2 instances in our cluster identified by a tag (Figure 3). Resource IDs, filters, or tags can identify target resources. Additionally, we define Amazon CloudWatch alarms as Stop conditions to stop running the experiments if a particular threshold or boundary has been reached. These Stop conditions are particularly important when we run automated experiments.
AWS FIS experiment template
Figure 3. AWS FIS experiment template
Create a state machine using AWS Step Functions with the experiment template ID as an input parameter from AWS CodePipeline (Figure 4). The state machine will use the AWS SDK integration to initially start the experiment in AWS FIS and later wait for the experiment to finish. Based on the experiment's outcome – completed, stopped, or failed – it will pass either Succeed or Fail back to the pipeline.
AWS Step Functions state machine
Figure 4. AWS Step Functions state machine
We add a new stage at the point in the pipeline where we want to initiate our AWS Step Functions state machine, in this case, after deployment to staging (Figure 5). We pass the ID of the experiment template to the state machine as an input parameter, which launches our AWS FIS experiment and waits for the experiment to finish. Based on what Step Functions passes back to AWS CodePipeline, the pipeline will continue or fail.
New experiment stage added in AWS Step Functions state machine
Figure 5. New experiment stage added in AWS Step Functions state machine
When a pipeline execution is started through a source change, manually, or on a schedule, it will go through the pipeline's stages and actions. Once the pipeline reaches the experiment stage, it will initiate the AWS Step Functions action and execute the state machine (Figure 6). The state machine will start an AWS FIS experiment based on the experiment template ID provided, and the experiment will run the fault injection actions defined until the experiment finishes (Figure 7). With the experiment finished, the state machine will finish execution and pass back the output to the pipeline (Figure 8). The pipeline continues to the next stage with the experiment stage succeeded (Figure 9).
Experiment stage in pipeline in progress
Figure 6. Experiment stage in pipeline in progress
AWS FIS experiment completed
Figure 7. AWS FIS experiment completed
AWS Step Functions state machine succeeded
Figure 8. AWS Step Functions state machine succeeded
Experiment stage in pipeline succeeded and pipeline continues
Figure 9. Experiment stage in pipeline succeeded and pipeline continues
If a stop condition triggers (Figure 11), an error occurs, or we manually stop the experiment, the pipeline action and stage will fail and stop the pipeline (Figure 12). Your experiment uncovering a hidden issue in the system and reaching a defined threshold will prevent the release from moving from staging and being deployed to production.
AWS CloudWatch alarm in alarm state
Figure 10. AWS CloudWatch alarm in alarm state
AWS FIS experiment stopped due to stopped condition
Figure 11. AWS FIS experiment stopped due to stop condition
Experiment stage in pipeline failed and pipeline stopped
Figure 12. Experiment stage in pipeline failed and pipeline stopped
As your confidence in the system and its resilience to failure grows, you can expand the pipeline further and add an experiment stage after deployment to production. This allows you to run the same experiments automatically both in pre-production and production environments.

Summary

We can add resilience testing to our suite of automated tests and continuously verify our system's output or behavior by combining the CI/CD practice and chaos engineering, by including AWS FIS experiments as part of our AWS CodePipeline delivery pipelines. Doing so allows us to cover more experiments than we can run manually, helps us verify the system's resilience to failure over time, and helps us build confidence in the overall system and its ability to withstand turbulent conditions. There are different ways of running experiment in your pipelines, but the approach described in this post waits for the experiment to finish and based on the outcome of the experiment decides if it should continue with the pipeline or not.
If you want to deploy a sample pipeline with an experiment stage and a state machine to start experiments, check out our AWS Samples GitHub.
 

Any opinions in this post are those of the individual author and may not reflect the opinions of AWS.

Comments