Microservices Best Practices: Why Build a Vertical Slice?
In this article, we look at what a vertical slice is, why we build it, some best practices involved in building vertical slices.
Join the DZone community and get the full member experience.
Join For FreeIn this article, we look at what a vertical slice is and why we build it. We also discuss the best practices involved in building vertical slices.
What You Will Learn
- What is a vertical slice?
- When do you build a vertical slice?
- What are the advantages of building a vertical slice?
- What are the best practices for building a vertical slice?
Best Practices With Cloud and Microservices
This is the third article in a series of six articles on best practices with cloud and microservices. The first two articles can be found here:
Need for a Vertical Slice
Let's say you want to start off writing a new microservice, or developing any new application. There are several technical risks that need to be addressed, such as deciding what framework to use, identifying the layers of the architecture, figuring out communication with other systems, and so on.
You want to make sure you have great unit tests in place, and also have a good continuous integration and deployment system to process the builds.
How do we address these challenges?
What Is a Vertical Slice?
A vertical slice involves selecting one or more of the complex or risky use cases of the system(s), and implementing them first.
Typically, this involves addressing all the risks listed above — selecting the right framework, organizing it into layers, handling communication properly, having great tests in place, and following a CI/CD process.
You should also deploy and test it to make sure all requirements are met.
Benefits of a Vertical Slice
A vertical slice will help you identify and solve technology risks faster. Once a vertical slice is built well, adhering to quality coding and other standards, it could also act as a reference point for other developers on your team.
Best Practices
Lets quickly look at a few best practices around building vertical slices.
Ensure Static Analysis
Make sure that a tool to perform static analysis of your code is in place during the development of the vertical slice. Also make sure development adheres to all relevant best practices.
Ensure Continuous Integration
It is very important that you have a continuous integration process in place, to take the vertical slice build through development, QA, staging, and deployment.
Address Technical Training Issues
If the vertical slice is well implemented, it acts as a good reference point. This means that the development team can be trained using the vertical slice as a case study.
Challenges
It is very important that care be shown in selecting the use case for your vertical slice. Make sure that you choose a sufficiently complex use case, because you need to explore how the various technical risks will be addressed.
Summary
In this article, we had a look at the technical risks involved in starting application development. We then saw how creating a vertical slice, using a complex use case, helps in exploring solutions to these risks, and acts as a reference point for the development team. We explored the best practices for creating a vertical slice, and looked at the challenges involved.
Published at DZone with permission of Ranga Karanam, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments