DEV Community

Cover image for Should I Use A Microservices Architecture?
James Hickey
James Hickey

Posted on • Originally published at jamesmichaelhickey.com on

Should I Use A Microservices Architecture?

Microservices is a huge topic. However, it’s not a very precise topic.

Martin Fowler agrees:

While there is no precise definition of this architectural style...

https://martinfowler.com/articles/microservices.html

A Sea Of Confusion

Diving into the topic of microservices, you’ll quickly discover that there are many differing opinions.

For example, Martin Fowler suggests that you shouldn’t start a new system using a microservices architecture.

However, his peer Stefan Tilkov suggests that you should always start with a microservices architecture. 🤔

Udi Dahan has believed that microservices, as defined, are still too fine-grained and potentially lack critical concerns around real boundaries and UI considerations.

Who should we believe?

Shifting Sands

Let’s face it: opinions in tech are always changing and are often not as black-and-white as we’d like.

“Best practices” are often shifting every few years.

Once we thought DRY was the best thing since sliced bread. Now we are told that sharing code can be one of the most damaging architectural decisions one could make.

What about microservices?

Microservices And Distributed Systems

Most coverage about microservices is shallow, vague and contradictory.

Sadly, however, there’s not much information that outlines what the microservice style is and how to do it.

https://martinfowler.com/articles/microservices.html

To highlight this fact (it’s a very important fact), let’s look at InfoQ’s Architecture And Design Trends Report for 2019.

Notice that microservices is in the “late majority” section. This means microservices are fairly common in the industry.

architecture and design report

Now, look at the 2nd section labelled “Early Adopters.” See that one called Correctly built distributed systems?

architecture and design report

As an industry, in general, we’ve been doing microservices, but not well.

When In Doubt, Clarify

However, let’s look at whether you should use a microservices architecture as a general concept.

We’ll begin by asking some fundamental questions about microservices:

  • What is a microservice?
  • What is a microservices architecture?
  • How many microservices should be in my architecture?
  • How big should they be?
  • Should my entire architecture be comprised of microservices in order to have a microservices architecture?
  • What about macro-services? Is there such a thing?
  • If there is, are they better or worse than microservices? Why?
  • What about my UI? Should that still be one massive single-page application?
  • Can I use an MVC based web framework and still be using microservices?
  • How autonomous should they be?
  • How does this all relate to the cloud?
  • Is serverless a kind of microservice architecture?
  • If I do have a server can I still have a microservices architecture?

These might seem like simple questions. But once you dig a little further you’ll find that the answers are not so straightforward.

What Is A Microservice?

Martin Fowler recognizes that microservices don’t have a precise definition. However, he tries to clarify what a microservice might look like:

...services are independently deployable and scalable, each service also provides a firm module boundary, even allowing for different services to be written in different programming languages. They can also be managed by different teams.

https://martinfowler.com/articles/microservices.html

Given this definition, the typical microservices architecture you’ll see will look like this:

typical microservices architecture

Each microservice can be deployed and scaled on its own. They are running as independent processes and communicate over the network. Each has its own database.

Ok. Now, take this example:

Realistic Monolithic Architecture

This is a common architecture you’ll find in real companies who’ve been making money for a while.

Imagine that each of these monolithic applications handles separate areas like shipping, billing, etc.

The glaring problem here is that the shared database can lead to all kinds of issues that are typically avoided via proper encapsulation.

What some companies have done is not re-architect their system to a collection of microservices, but applied proper encapsulation to their monoliths (via bounded contexts from domain-driven design).

Properly Bounded Monoliths

What’s The Point?

I have a question that exposes the general notion of what microservices are supposed to be:

What’s the difference between the microservices diagram and the properly encapsulated monoliths diagram?

The only difference is that the microservices architecture diagram is sharing the user interface across the entire system.

What I find strange is that in most articles and discussions about microservices the issue of UI is hardly ever mentioned.

Given the typical definition and explanation of microservices, the difference between the encapsulated monolith and “microservice” is not immediately evident.

(What if we removed the UI from some of our monoliths, added a REST API to each and gave them all a shared UI? That sounds awfully similar to the typical microservices architecture diagram you’ll see…)

After all, the biggest reason for moving to microservices is to enable different cross-functional teams to fully own their own products.

This works very well given the properly bounded monolithic approach:

Monoliths each owned by cross-functional teams

But, the general “microservices architecture” falls short on this:

Typical microservices architecture ownership

Who owns the UI? Everyone? No one? Create a new team?

Putting On Our Big Boy/Girl Architectural Pants

The reality is that software systems are much more fluid and dynamic than we would like to think.

It’s harder than we’d like it to be.

Software architecture involves taking many smaller ideas and putting them all together in a way that makes sense for your use case.

It’s not about taking one general idea and applying that to our entire system.

A Practical Example

Imagine a business that has an existing legacy system.

This monolithic system is generally pretty risky to change. The business demands a faster time-to-market for some new features.

Should we rewrite the entire system as a collection of microservices?

It would make more sense to add new functionality via focused and encapsulated services that own dedicated business functions.

Microservices add additional functionality to the overall system

This would be more of an evolutionary approach to software architecture (keep reading).

Some Reminders And Side Notes

Again, it’s just not so cut-and-dry. We have to think about our existing systems, where we want the business to be in the near future and apply techniques and approaches that allow our business to keep growing and making money.

Wasting time rewriting your entire system as microservices might not work out so well (1, 2, 3, 4).

A poor team will always create a poor system – it’s very hard to tell if microservices reduce the mess in this case or make it worse.

https://martinfowler.com/articles/microservices.html

And don’t forget that most of us aren’t even building distributed systems correctly anyways:

Awareness of the “microservices” architectural style may be moving into the late majority, but the related themes of “correctly designing distributed systems”, and designing for reactivity and fault tolerance are not so far along the adoption curve.

https://www.infoq.com/articles/architecture-trends-2019/

Evolutionary Architecture

This fluid and more adaptive approach to software architecture is sometimes called evolutionary architecture. This is, in my opinion, just a plain responsible approach to software architecture.

Evolutionary Architecture

InfoQ has this approach listed in the “early adopters” phase. This indicates that most companies are still just “hammering away” with microservices.

Evolutionary architecture is a broad principle that architecture is constantly changing. While related to Microservices, it’s not Microservices by another name. You could evolve towards or away from Microservices for example.

https://www.infoq.com/podcasts/refactoring-evolutionary-architecture/

Since 2011, evolutionary architecture has been in the “adopt” category of ThoughtWorks’ technology radar.

It’s not really that new.

In contrast to traditional up-front, heavy-weight enterprise architectural designs, we recommend adopting evolutionary architecture. It provides the benefits of enterprise architecture without the problems caused by trying to accurately predict the future… We advocate delaying decisions to the latest responsible moment, which might in fact be up-front for some decisions.

https://www.thoughtworks.com/radar/techniques/evolutionary-architecture

That sounds like doing responsible, reasonable and intelligent software architecture to me 😅.

If this interests you, I’d recommend watching this 16-minute discussion by Randy Shoup.

Step zero is to take a real customer problem, something with real customer benefit, maybe a reimplementation of something you have or ideally some new piece of functionality that was hard to do in the monolith.

Do that in the new way, first, and what you are trying to do there is to learn from mistakes you inevitably will make going through that first transition, right? You do it in a relatively safe way, but at the same time you do with real benefit at the end.

https://www.infoq.com/interviews/randy-shoup-microservices/

As Randy later points out, it’s perfectly fine to leave certain parts of a system untouched if they have no real reason to change.

There were still pages on this site that were on V2 architecture, simply because they continue to work, they got 100,000 hits a day, no big deal, and they were neither painful enough to migrate nor having the sufficient ROI to migrate. So, they just stayed and they happily stayed.

https://www.infoq.com/interviews/randy-shoup-microservices/

About That UI Issue…

You might be wondering about the shared UI that appears in most microservices architecture diagrams.

Is there a way to fix that?

Yes, there is. But it’s not so simple as we’d like.

It boils down to allowing each microservice to own it’s UI components.

This allows individual teams to own the entire stack.

Composite UI

Composite UIs

What happens when we have a UI that needs to display data from multiple services?

The solution is to compose multiple UI components owned by those services.

Composite UIs

In many cases, composite UIs are much more complicated than the image above. But this is a starting point to help you understand where this approach leads.

Not The Microservices I Knew

This isn’t what most people think of when they say “microservices.” Microservices usually don’t have the notion of having UI components that are owned by it.

In discussing this issue, Udi Dahan uses an example of a product’s price. Udi points out the fact that specific services need to own their UI. Otherwise, we break encapsulation.

In this manner, no code outside the service boundary would know about the concept of the product price and thus could not end up coupled to it.

...I don’t really see how a [microservice] could end up having this level of ownership of data.

http://udidahan.com/2014/03/31/on-that-microservices-thing/

Size Doesn’t Matter… Or Does It?

You’ll hear that microservices need to be around 1000 lines of code or less. At least, I’ve heard that one before.

However, microservices need to own the data, behaviour and UI of a given business context.

We, as developers or architects, shouldn’t get to magically decide how big our services should be. It’s 100% totally dependent on the business context we are modelling.

In relation to the issues surrounding UI ownership, Udi Dahan points out:

You’ll tend to see services that aren’t all that small, and probably not so many of them.

http://udidahan.com/2014/03/31/on-that-microservices-thing/

Udi is considered one of the most highly respected experts in building distributed systems. And he’s told us – years ago – that we’re doing it wrong.

Microservices are potentially too micro because they aren’t respecting the boundaries of real business contexts. Instead of focusing on size we ought to focus on proper boundaries (which is a topic for another day).

Conclusion

Should you use a microservices architecture?

No.

You should do what makes sense for your business.

For example, your business might want to build new products that require a quick time-to-market.

You could add those new products as entirely separate monoliths that communicate with each other via event messaging to keep them loosely coupled.

The new monolith is separated and encapsulated

They could be built as microservices that integrate back into the existing system via HTTP REST calls or event messaging?

Existing monolith enhanced with microservices

Perhaps there’s an existing off-the-shelf solution that exists which your company can purchase? You could build a custom API on top that will allow integration with the existing system.

Off-the-shelf solution with a custom facade for integration

There are cases that call for splitting an existing system up into isolated components. They could be microservices.

Or, you could use a plug-in component-like system within a monolithic system.

(I’ve written about an approach to building modular monoliths using .NET Core.)

We haven’t even talked about factors around team skill/competency, project management styles, organizational influences, etc. These are all factors that affect your software architecture!

In conclusion:

It depends.

But, are there guidelines for smaller organizations? Absolutely. And again: the meta-point with all these things is “only solve problems that you actually have”.

https://www.infoq.com/interviews/randy-shoup-microservices/

Need Help?

I help Saas businesses improve their overall agility and time-to-market of new products and features.

I also offer guidance for teams using .NET Core who need help with building web APIs, framework migrations, improving development processes, etc.

Get in touch!

Also, check out my book about keeping your code healthy!

Keep In Touch

Don't forget to connect with me on:

Top comments (9)

Collapse
 
xanderyzwich profile image
Corey McCarty

Very well explained.

A bit of my situation is that we have broken down work into far too many projects. Making changes to the data model and how it functions requires that you update at minimum 3 dependency jars and 3 end applications to get the change used everywhere.

The direction that I recommend is that any unit of work that shares no functionality or dependency with any other block of work should be separated into a different microservice. If there is a common data model that needs to be shared between half of a dozen microservices then you are making it too difficult by being separated. Maybe they should become more monolithic so that the code only needs to be changed in one place. Maybe that monolith should be a mono-repo that builds multiple applications instead of having so many dependencies that need to be packaged.

Consider the difficulty involved in making changes to the deepest parts of the application if you needed to change a major approach to the data (maybe adopting a better ORM) or maybe using Springboot instead of the homespun framework setup that the original architect made and nobody knows how to make truly cloud native.

tl;dr: do what works BEST for you

Collapse
 
_mertsimsek profile image
Mert Simsek

That's the key,

Should you use a microservices architecture?

No.

You should do what makes sense for your business.

Collapse
 
williamzmorgan profile image
Will Morgan

Excellent read! Nice work. MESG has an interesting take on service architectures - an event-driven decentralized engine with sharable/reusable services - that aims to improve many of these issues. docs.mesg.com/guide/

Collapse
 
siy profile image
Sergiy Yevtushenko • Edited

dev.to/siy/packaging-is-not-an-arc...
Same is true about microservices - they are not architecture, just a packaging option.

Collapse
 
cirelli94 profile image
Cirelli

What’s the difference between the microservices diagram and the properly encapsulated monoliths >diagram?

The only difference is that the microservices architecture diagram is sharing the user interface across >the entire system.

Ehy wait! What about the DB? The properly encapsulated monolith uses only one DB, while microservices have each one its own DB.

Collapse
 
jamesmh profile image
James Hickey

This was comparing the properly segmented monoliths (3 monoliths that each have their own database) with microservices. So there's no difference in DB structure. 😊

Collapse
 
yaser profile image
Yaser Al-Najjar

The WRONG definition I always tell people to be aware of:

Microservices = Containers

Collapse
 
ilyeshammadi profile image
Ilyes Hammadi

Excellent article, thank you.

Collapse
 
victorhazbun profile image
Victor Hazbun

I'm done with monolithic apps, it's fucking mad.