Chaos Monkey
Inspired by Chaos Engineering at Netflix and Chaos Monkey for Spring Boot.
The Goal of Chaos Monkey
While helping my customers to build large scale distributed systems in light-4j, I constantly receive the following questions:
- Will the fallback work?
- How would the application behave with network latency?
- What will happen if one of the service instances is down?
- How does the service discovery help during service deployment?
As you can see, there are a lot of questions to be answered to make our customers comfortable to rollout distributed applications.
These questions led me to dive into Chaos Engineering and start this project to share my thoughts and experience.
How does it work?
As we know, the light-4j framework is using middleware handlers to address cross-cutting concerns in the request/response chain in the same service instance or at the network level with light-router or light-proxy.
To simulate some of the Chaos Monkey behaviours, we built several middleware handlers that can be injected into the request/response chain. These middleware handlers simulate network latency, out of memory, runtime exception and application shutdown etc.
Dynamic Configuration at runtime
Each middleware handler has its configuration file with a switch to enable or disable. So you can even deploy it to the production without any negative impact.
A configuration endpoint /chaosmonkey enables these handlers at runtime with different parameters. It allows controlled Chaos Engineering from the pipeline so that it can be rerun for every release. This also gives the team more opportunities to simulate random production behaviours.
Assault Handlers
Assault handlers are the heart of Chaos Monkey and the service makes use of them based on your configuration. The following assault handlers are actually provided.
If Latency Assault is enabled, latency is added to a request. You control the number of requests where this should occur via the level.
You can determine at runtime whether an exception should occur when the method is used.
When the configured methods are called in the application, the Chaos Monkey will shut down the application.
Memory Assaults attack the memory of the Java Virtual Machine.
Config Handlers
Get all the configurations for assault handlers.
Update one particular assault handler’s configuration.
Tutorial
To learn how to use these handlers, please visit the petstore tutorial.