Top 5+ Microservices Architecture & Design Best Practices

microservices-styled architecture

The Microservices-based application architecture represents a collection of small, autonomous and self-contained services which are built to serve a single business functionality/capability. The following represents a sample microservices-styled application landscape representing a set of microservices. Pay attention to different micro-services accessed through API gateway.

microservices-styled architecture

Microservices-based architecture (Image courtesyCloud Application Architecture Guide)

In this post, you will learn about some of the best practices related to microservices-styled architecture (MSA) which can be adopted when creating the microservices-based application. The following are some of the best practices related to microservices which you may consider following while doing application implementation based on Microservices-styled architecture:

  • Model Services based on Domain-driven Design (DDD): Services should be modeled around the business domain. Check out some of the following great reads in relation to domain-driven design.
  • Consider separating data storage: Data should be made private to each of the microservices. Microservice becomes the owner of its data. Any access to data owned by a specific service should only happen through APIs. Failing to do so would allow multiple services to access the database owned by a specific service leading to coupling between services. The architecture pattern such as CQRS (Command and Query Responsibility Segregation) comes handy in taking care of data which required to be read by different kinds of users.
  • Build separate teams for different microservices: Teams should be divided based on microservices with one team working on one microservice. This consists of product manager, and DevOps staff (development, QA, and Ops staff). Recall that microservices shine when they could help organizations in building cloud-native applications which could be released to cloud frequently with very less lead time.
  • Design domain-driven APIs: APIs should be designed keeping the business domain in mind. Also, implementation details should not be made part of API design.
  • Design cohesive services: Consider grouping the functions requiring to change together as a single unit rather than separate services. Not doing so would lead to a lot of inter-service communications representing the hard-coupling.
  • Consider separating services for cross-cutting concerns: One should consider designing separate services for cross-cutting concerns such as authentication and authorization.
  • Automate enough for independent deployment: Nicely designed micro-services should be able to be deployed independently. And, build and release automation would enhance the deployment process thereby leading to quicker releases and shorter overall lead time. This would help build micro-services truly cloud-native in nature with micro-services wrapped within containers and deployed to any environment including cloud in easy manner. Good DevOps practice followed organization-wide would help achieve this objective.
  • Failure isolation: Microservices-based architecture should consider adopting isolation of failure with independent micro-services. Architecture principles and design patterns such as some of the following would help achieve the same:
    • Circuit-breaker design pattern
    • Asynchronous communication
    • Loose coupling
    • Event-driven architecture
    • Stateless design
    • Self-contained services
    • Timeouts

Related Interview Questions

The following are some of the related questions which can be asked in microservices related interviews.

  • How is domain-driven design related to Microservices design?
  • How is CQRS design pattern related to microservices?
  • What are some of the best practices related to microservices design and development?
  • Name some design patterns for isolating failures when working with microservices?

Summary

In this post, you learned about microservices design best practices. Did you find this article useful? Do you have any questions or suggestions about this article? Leave a comment and ask your questions and I shall do my best to address your queries.

Ajitesh Kumar
Follow me

Ajitesh Kumar

I have been recently working in the area of Data analytics including Data Science and Machine Learning / Deep Learning. I am also passionate about different technologies including programming languages such as Java/JEE, Javascript, Python, R, Julia, etc, and technologies such as Blockchain, mobile computing, cloud-native technologies, application security, cloud computing platforms, big data, etc. For latest updates and blogs, follow us on Twitter. I would love to connect with you on Linkedin. Check out my latest book titled as First Principles Thinking: Building winning products using first principles thinking. Check out my other blog, Revive-n-Thrive.com
Posted in Architecture, Microservices. Tagged with .

Leave a Reply

Your email address will not be published. Required fields are marked *