DEV Community

Andrii
Andrii

Posted on

From microservices to ...

Why are there almost no stories about

  • moving from microservices back to monolith?
  • merging microservices?
  • redesigning them?

Is it just not so popular, exciting to tell about as moving from monolith to microservices?

Do you always make correct division into microservices?

Top comments (5)

Collapse
 
andreasjakof profile image
Andreas Jakof

Nobody dares touching those microservices. Because nobody knows, what they might break.

Collapse
 
andsmile profile image
Andrii

From my perspective it is mostly valid for monolith.
But microservices are kinda small, simple and isolated, it should be easier to change them.

Collapse
 
andreasjakof profile image
Andreas Jakof

There are advantages to microservices, but knowing the dependent services is none of them.

If you have a lot of them, keeping track of which services uses which one is a lot of work.

In a monolithic architecture, you have the dependencies in the code base.

I am not saying, that monolithic is better, just that you can see those dependencies better.

Collapse
 
swapnil0545 profile image
Swapnil Mhaske👨‍💻🎮☕🌄

Well i don't see any standard guidelines for creating and handling microservices, it gets evolved based on experience of team. I do feel it like an overkill for small projects.

Collapse
 
andsmile profile image
Andrii

yes, for small projects whole application can be have size of 1 "microservice" in bigger projects.
Division for the sake of division is not the best approach.