10 Challenges in Adopting and Implementing Microservices
We always hear great things about Microservices. But today let's talk about the top 10 challenges that come with adopting Microservices.
Managing Microservices
As the number of microservices increases, managing them becomes tough. If there is no plan or accountability then we might end up with a lot of tiny microservices or with a huge macro-service.
Extensive Monitoring and Logging
Monitoring what happens across the entire infra is critical. Along with this, we would also need an ability to trace end-user request path spanning services - also called Distributed Tracing.
Service Discovery
It does not take much time for our services to grow beyond 100 and at that scale, discovering a service becomes a pain requiring us to put Service Discovery.
3 ways to do it are
Authentication and Authorization
Inter-service communication should be secure to ensure that a service does not abuse others; hence we need to put auth in place that allows authorized services to talk to each other.
Config Management
Every microservice has a set of configs, like DB passwords, and API Keys. Committing them to the repository is an unacceptable practice, and we would not want every service to have its own config server.
Hence we need to have a central config management system that is fault-tolerant, robust, and scales well.
No going back
It is extremely difficult to move back to monolith after the teams have tasted microservices. A few reasons would be
Fault Tolerance
Outages are inevitable and as engineers, we always try to minimize them. A way to achieve this is to keep services loosely coupled that keep outage isolated ensuring no cascading failures.
Internal and External Testing
End-to-end testing becomes complex as it is hard to spin up environments with all services running fine.
Design with Failures in mind
Robust microservices require a counter-intuitive approach, and we need to assume everything would collapse after every line of code. Then we amend the code and architecture to handle it and re-iterate.
领英推荐
Dependency Management is a nightmare
Managing dependencies across services is tough and it leads to a slowdown. The 3 kinds of dependency to be careful about
Here's the video of my explaining this in-depth ?? do check it out
We always hear great things about Microservices. But, every few months every senior engineer gets a feeling, can we not go back to a simpler time and have monolithic architecture again?
In this video, let's understand the 10 challenges that come with adopting microservices. Today, we would spend time talking about both engineering or tech challenges and organizational challenges that we all should be aware of and address while we adopt microservices.
Outline:
You can also
Thank you so much for reading ?? If you found this helpful, do spread the word about it on social media; it would mean the world to me.
Yours truly,
Arpit
Until next time, stay awesome :)
I teach a course on System Design where you'll learn how to intuitively design scalable systems. The course will help you
I have compressed my ~10 years of work experience into this course, and aim to accelerate your engineering growth 100x. To date, the course is trusted by 600+ engineers from 10 different countries and here you can find what they say about the course.
Together, we will build some of the most amazing systems and dissect them to understand the intricate details. You can find the week-by-week curriculum and topics, benefits, testimonials, and other information here https://arpitbhayani.me/masterclass .
Senior Python Developer | Django | AWS | Javascript
2 年Each post is awesome Arpit Bhayani
More about me: arpitbhayani.me Newsletter: arpitbhayani.me/newsletter Subscribe #AsliEngineering for such in-depth engineering concepts: https://www.youtube.com/c/ArpitBhayani Intermediate-Level System Design course: arpitbhayani.me/masterclass Beginner-friendly System Design course: https://www.school-of-programming.com Free course on microservices: https://courses.arpitbhayani.me/designing-microservices All GtiHub Outages: https://courses.arpitbhayani.me/github-outage-dissections/