DEV Community

Cover image for Microservices and Enforced Modularity
Tony Hicks
Tony Hicks

Posted on • Updated on

Microservices and Enforced Modularity

What is modularity in your code?

Heard of the Single Responsibility principle? It's basically the same thing but instead of applying it to a single class, we apply it to an interconnected set of code - A bounded context (to borrow a term from Domain Driven Design).

Similarly to a class, as a module you want your code to be:

  • lowly coupled - be careful about how many and what kind of dependencies you create
  • highly cohesive - you want the code in your module to be closely related

Many programming languages by default have a mechanism of logically grouping code together.
In C# for example, we have namespaces. In Java, packages.

You isolate this portion of code and give it a name that represents the purpose of it, being very careful as to what you make it dependent on since any external dependency could be coupling your module to something else.

Red Green Class Diagram

If an external module needs to communicate, then you would define a public interface as a means of facilitating that need!

Correct Module Communication

Why would you want to do this?

Because it logically breaks your system into smaller, isolated chunks instead of having one big ball of spaghetti! If all your code is allowed to be referenced anywhere, regardless of the business context, it becomes extremely difficult to follow.

The difficulties in a single codebase

You can (and should!) create modular software in any application - but it can be challenging if you have a single codebase since there are no actual physical restrictions about where to put your code.

Someone can easily break the design principles of the module since you can simply reference other portions of the code and bring them in.

Like So:

Incorrect Module Communication

Watching You

Also, don't forget about the database! In a single codebase, generally, there's also a single database - which means that even though your code can be pristinely separated, your queries can now create dependencies across modules since you can join across different contexts!

How do the microservices come in?

Microservices helps this scenario by creating a physical restriction since the code and the database becomes divided up into smaller, isolated portions.

You can take a module (or a few!), turn this into a microservice and now it's not so easy to add a piece of code from somewhere else in the system from where it doesn't belong. Still possible, but not as simple as joining a table or importing a new namespace!

Not only that but since each microservice must have its own database, you cannot query across different domains either.

Thumbs Up

Oldest comments (6)

Collapse
 
htissink profile image
Henrick Tissink

create dependencies across modules

Thanks for this - it clarified the reasoning with having separate DBs :)

Collapse
 
satishpatro44 profile image
satishpatro44

What to do if you want to call one service of different module?

Collapse
 
190245 profile image
Dave

Agree some type of API/RPC for the cross-service communication.

Better yet, setup an event bus. Both services emit events, both consume whatever events they're interested in.

Collapse
 
tonyhicks20 profile image
Tony Hicks

Yup... That would be part of your public interface that you'd expose. You would call it based on the communication mechanism appropriate to your needs.

Thread Thread
 
190245 profile image
Dave

I dislike exposing public interfaces (on the public internet). But sit it behind some network level security (e.g. whitelisted IP/range) and you're golden.

Event bus just means your service doesn't need to care about another services API (beyond being able to understand the events).

Good article btw.

Thread Thread
 
tonyhicks20 profile image
Tony Hicks

By "public interface" what I mean in this context is the functionality you would expose for other external services (from the same trusted system) to call. You're right though, you wouldn't want to expose a service directly to the internet. You'd use an API Gateway and expose that.