Post

Designing Automated Microservice

Automated microservices are additional benefit to the team. Designing automated microservices is a real benefit to the team.

Another key design principle for microservices architecture is automation. The microservice architecture enables the teams to have frequent releases and a shorter time to production. But you certainly cannot ship your code into production without testing it. Whenever the code is released to production, it must be tested. So we need automated tools that can test our code every time we deploy it to production.

Designing Automated Microservice

There are two categories of automation tools available.

Continuous integration(CI) tools integrate well with the source control systems. The tools compile the code, run unit test cases and run integration test cases whenever they detect a change in the codebase. The tools provide immediate feedback on the change made to the code. The tools provide confidence to the team that recent code changes integrate well with the entire system. The tools are particularly helpful when many developers are working on the same code base, as the tools will alert the team if any breaking change is made. However, it is the onus of the team to write comprehensive test cases for the functionalities. These CI tools can also help to generate code quality reports. The tools fire the test cases and labels/version the code for the next step if all test cases are successful.

Another set of tools are Continuous Deployment(CD) tools. The team can configure CD tools to deploy the microservice to various environments such as Dev, QA or Production. These tools work along with CI tools to deploy the code. Once all the test cases are successful, CD tools pick up the CI build and deploy it to the targeted environment.

CI/CD tools help the teams to identify errors early by running automated tests and deployment pipelines. You can consider the tools such as Jenkins, Travis, MS Team foundation server etc. perform these jobs for your team.

This post is licensed under CC BY 4.0 by the author.

Comments powered by Disqus.