DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • Design and Implementation of Cloud-Native Microservice Architectures for Scalable Insurance Analytics Platforms
  • Design Patterns for Microservices: Ambassador, Anti-Corruption Layer, and Backends for Frontends
  • Evolutionary Architecture: A Solution to the Lost Art of Software Design
  • Popular Design Patterns for Microservices Architectures

Trending

  • From Indicators to Insights: Automating IOC Enrichment Using Python and Threat Feeds
  • The Hidden Cost of Overprivileged Tokens: Designing Messaging Platforms That Assume Compromise
  • LLM Agents and Getting Started with Them
  • Designing API-First EMR Architectures in .NET: Enabling Modular Growth in Compliance-Driven Systems
  1. DZone
  2. Software Design and Architecture
  3. Microservices
  4. Top 5+ Microservices Architecture and Design Best Practices

Top 5+ Microservices Architecture and Design Best Practices

This list of best practices will help new and experienced microservices developers make sure that their application is designed effectively.

By 
Ajitesh Kumar user avatar
Ajitesh Kumar
·
Mar. 28, 18 · Tutorial
Likes (67)
Comment
Save
Tweet
Share
115.2K Views

Join the DZone community and get the full member experience.

Join For Free

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 is a sample microservices-styled application landscape representing a set of microservices. Pay attention to different microservices accessed through the API gateway.

Image title

Microservices architecture (Image courtesy: Cloud 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.
    • Bounded context (Martin Fowler)
    • Domain-driven design for services architecture
    • This video on dDomain-driven design by Eric Evans:


  • 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 microservices truly cloud-native in nature with microservices wrapped in containers and deployed to any environment including cloud in an 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 microservices. 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.



microservice Design Architecture

Published at DZone with permission of Ajitesh Kumar. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • Design and Implementation of Cloud-Native Microservice Architectures for Scalable Insurance Analytics Platforms
  • Design Patterns for Microservices: Ambassador, Anti-Corruption Layer, and Backends for Frontends
  • Evolutionary Architecture: A Solution to the Lost Art of Software Design
  • Popular Design Patterns for Microservices Architectures

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook