Modular Monolith Communication Patterns

Modular Monolith Communication Patterns

5 min read ·

Thank you to our sponsors who keep this newsletter free to the reader:

Workshop: How to migrate a legacy app to Blazor: Join Ed Charbeneau for a live application-building workshop, where you'll migrate an existing .NET Web Forms application to Blazor in real time. Learn how to avoid potential roadblocks and master the basic concepts behind .NET 7 and Blazor. Join the workshop here.

Treblle is a lightweight SDK that helps engineering and product teams build, ship & maintain REST-based APIs faster. Simple integration for all popular languages & frameworks, including .NET 6. Check it out here.

Modular monoliths are becoming more popular in the software engineering community.

The allure of Microservices is becoming less compelling. We also have seasoned veterans of our industry saying you should reconsider:

You shouldn't start a new project with microservices, even if you're sure your application will be big enough to make it worthwhile.

Martin Fowler

Modular monoliths give you the logical architecture of Microservices without the operational complexity. You can safely determine the boundaries between modules. And refactoring is straightforward and less risky. They can also be easily migrated into Microservices if you decide to do so.

I've built and maintained several large Modular monolith systems in the past years.

In this week's newsletter, I want to focus on the communication patterns in the Modular monolith architecture.

But first, let me explain what is a Modular monolith.

What Is a Modular Monolith?

Here's one definition of what a Modular monolith is:

A Modular Monolith is a software design approach in which a monolith is designed with an emphasis on interchangeable (and potentially reusable) modules.

The problem with most monolith systems is that they become tightly coupled over time. Components are deeply intertwined. Making a change in one component impacts many others. Introducing new features is difficult and error-prone.

Modular monoliths aim to solve these problems.

A Modular monolith consists of many loosely coupled modules. Modules represent cohesive sets of functionalities. Modules are also independent of each other.

Here are a few examples:

  • Payments module
  • Shipping module
  • Booking module
  • Reviews module

If this concept reminds you of Microservices, that's because it should.

Microservices represent self-contained services encapsulating a set of functionalities of the larger system, much like modules in a Modular monolith.

For a Modular monolith to be loosely coupled, you need to solve how modules will communicate.

Modules cannot reference each other directly except through their public APIs.

There are two widely used communication patterns. Both have pros and cons and a set of tradeoffs that you need to understand.

Synchronous Communication With Method Calls

The first and easiest communication pattern is simple method calls between modules. Method calls are synchronous and very fast because they're in memory.

Module A calls a method declared on the public API of Module B and waits until it receives a result.

Each module exposes a public API, which can be an interface in .NET.

The module will implement this interface internally and hide any implementation details. You can use the internal keyword to make the implementation inaccessible outside the module.

Modules depend on the interfaces at compile-time. At runtime, dependency injection will provide the respective implementation.

The benefits of this approach are:

  • Speed of in-memory calls
  • Easy to implement
  • No indirection

But, the drawback of this approach is strong coupling.

Synchronous communication means that the modules will be tightly coupled. If one of the modules is unavailable, it will affect any dependent modules. You can introduce a retry mechanism, but this only goes so far.

Asynchronous Communication With Messaging

The second communication pattern is asynchronous messaging between modules.

Module A sends a message to the message broker in a fire-and-forget fashion. Module B subscribes to relevant messages and handles them accordingly.

Modules don't need to know about each other, but they do need to know about the message contracts.

Message contracts are the public API of a module in this scenario.

The benefits of this approach are:

  • High availability
  • Loose coupling

Asynchronous communication gives us loose coupling because modules communicate using messages. Module B doesn't need to be available for Module A to send a message.

The obvious drawback of this approach is increased complexity.

We're introducing a message broker to the system. This is another infrastructure component we have to manage. It's also a single point of failure. If the message broker fails, so does communication between the modules.

You can prevent message loss by storing messages in an Outbox before publishing them. We can always send the messages again from the database in case of a message broker failure.

Takeaway

Synchronous communication between modules is easy to implement, and it's performant. But it comes at the cost of tight coupling between modules.

Asynchronous communication using a message broker is loosely coupled. But it's more complex to implement.

So which communication pattern should you be using?

It depends.

Asynchronous communication can help you build loosely coupled and independent modules. Migrating a Modular monolith using messaging into a distributed system is much easier.

You extract a module into its own deployment unit. And the communication between modules remains the same. Because you are using messaging, you don't need to reimplement anything.

Synchronous method calls are an excellent choice to increase development velocity and reduce operational complexity.

I'll let the software architect in you decide.

Thanks for reading.

And stay awesome!


Whenever you're ready, there are 4 ways I can help you:

  1. Modular Monolith Architecture (NEW): This in-depth course will transform the way you build modern systems. You will learn the best practices for applying the Modular Monolith architecture in a real-world scenario. Join 2,800+ students here.
  2. Pragmatic Clean Architecture: This comprehensive course will teach you the system I use to ship production-ready applications using Clean Architecture. Learn how to apply the best practices of modern software architecture. Join 2,800+ students here.
  3. Patreon Community: Join a community of 1,050+ engineers and gain access to the source code I use in my YouTube videos, early access to future videos, and exclusive discounts for my courses. Join 1,050+ engineers here.
  4. Promote yourself to 48,000+ subscribers by sponsoring this newsletter.

Become a Better .NET Software Engineer

Join 48,000+ engineers who are improving their skills every Saturday morning.