Thank you very much. You stopped me from overengineering and solving problems which doesn't exist for now in my startup.
@dreamsachiever2123 ай бұрын
me too lol
@guyrandalf7113 ай бұрын
What did you decide to do then? Please, share
@olter10003 ай бұрын
@@guyrandalf711 I just started coding monolithic application and trying to focus on a quick implementation rather than perfect architecture and code style (it was not easy since I always want to build something in a best possible way, but reality is your first alpha/beta release won’t be ideal in any case).
@muhammedkhaled81283 ай бұрын
@@olter1000 The good thing is that you will be able to pinpoint the issues coming from a monolithic initial version and if you need to go for micro-services, that's even better than trying to have the best architecture from the start which is practically impossible.
@thabangmotaung9637 Жыл бұрын
The structure of your content delivery makes it easy for me to understand these concepts in a snap.
@alexhyettdev Жыл бұрын
That's awesome, I am glad to hear it!
@purdysanchezАй бұрын
Before microservices a lot of systems were just separated into normal sized services as web APIs. Microservices IMO advocated building everything with FaaS for dubious scalability reasons. Most systems weren't monoliths before the advent of microservices.
@codewitgabi5 ай бұрын
I love how you explained when to use http calls instead of message brokers for service communication. HTTP calls for synchronous requests and AMQP for asynchronous calls
@MaximePoulain Жыл бұрын
A topic that could be interesting to delve further into is the Modular Monolith. In contrast to microservices where the boundary is just physical, modules in a monolith are logically isolated from each other. This brings benefits like faster deployment and helps avoid issues of creating 'spaghetti code' that could cause problems for others. However, designing a modular monolith can be challenging, as it requires expertise in the design of your domain and the identification of its sub-domains (bounded context in DDD terminology) but also with the communication when an operation span accross multiple modules. Overall, I believe this approach combines the pros and cons of both monolith and microservices architectures effectively for many use cases.
@hyper_channel Жыл бұрын
This right here is my go to. A monolith where the different services / features can be extracted as a microservice if needed, (usually those hurting for resources / performance). Microservices just have too much overhead and moving parts to make sense as the starting point without a very good reason.
@cflowlastname548 Жыл бұрын
Before the Microservice hype, these system were just called modular systems. I actually wrote one myself based on my own intuition and experience. It was not until a couple of years later when I saw the word "Modular monoliths" in my youtube feeds I realized there was an exact word for what I had done.
@masickboi4 ай бұрын
kzbin.infoBZxSDkVcwhU?si=HkQ2Ly-GnzI66pnE
@bamienbillard3 күн бұрын
Well explained. Thank you!
@PieterWigboldus5 ай бұрын
If microservices are ride coupled, you have monolith microservices. It runs a monolith just on multiple services/processes. Microservices are very nice if you can break the most lines between the different parts, and you have the most benefit. But it takes a lot of time to learn how to do. And be aware that you dont have more microservices than active users 😊
@mishamovdivar2 ай бұрын
Scaling is not an issue for Monolithic application and it's not gonna cost you fortune. Look at the Path Based Load Balancing which results in the similar flexibility when it comes to scalability for monoliths as for microservices. "When deploying one microservice, other microservices are not affected" - well, no, more often than not, they are affected
@resistance_tn Жыл бұрын
This is high quality work thank you ! Would love to see more advanced topics on networks or protocols or anything related to backed ! Keep up the great work :)
@alexhyettdev Жыл бұрын
Thank you! Yes I will be definitely be covering more backend topics.
@puliranjit Жыл бұрын
Love your learning videos ..well-structured , short and to the point
@alexhyettdev Жыл бұрын
Thank you! I am glad you like them!
@adp8704Ай бұрын
this is beautifully explained - thanks for this.
@vktop2 Жыл бұрын
Nice video, I have a question, for example in a system I have a microservice customer and this service will have in its database a table with the types of customer document, in this system could also exist a microservice user and could also have in its database a table type of user document, in this case how to work these data that concern several microservices since the types of documents are common between both entities; should I create 2 tables document type 1 in each microservice? Thank you
@alexhyettdev Жыл бұрын
Microservices should always have their own database. If you have data that is common between them, then you can have copies of the same data in each database. Not ideal, but it is quite common practice. Each domain only stores the data they are interested in. One option for you would be to have a document microservice that all the other microservices use for file storage. This is particular useful when you have strict requirements such as encryption or access restrictions that you need to adhere to. It can all be done in one place without needing the same logic in every microservice that needs to store documents.
@xiiEJRAM Жыл бұрын
Your videos quality and the content you made are epic , I really love your channel 👌🏻
Thank you @Alex great video answered all my questions and more
@somevids6230Ай бұрын
For most business processing, you can get A LOT of mileage out of specific purpose built monoliths, and all of their inherent advantages. Spreading function calls out over vast networks should almost always be a last resort.
@fahadaslamtanoli Жыл бұрын
very good explanation can you explain when to use service endpoint or service bus
@expirationstrategist Жыл бұрын
Very informational, thanks
@alexhyettdev Жыл бұрын
Thanks Marcin, I am glad you liked it!
@gangstaberry24965 ай бұрын
I love your videos ❤ I recommend them to everyone
@bvreddy10746 ай бұрын
content and delivery at it's best, Thank you so much for your time and efforts, keep inspiring and educating 😊.
@gabrielnzete89136 ай бұрын
Fantastically explained
@Ramin_Esfandiari Жыл бұрын
Very well done and concise video. Thank you.
@alexhyettdev Жыл бұрын
Thank you 🙏
@Jabali0417 күн бұрын
**Summary: Monolithic vs Microservice Architectures** 1. Monolithic Architecture - All functionalities reside within a single codebase or project. - Simpler to develop and maintain initially, as it involves managing just one "component." - Internal communication is seamless, eliminating performance concerns between functionalities. - Challenges arise as the application grows: - Larger, more complex deployments. - Scaling issues: the entire application must scale, even if only one feature demands it. - Longer development and release cycles due to tightly coupled components. 2. Microservice Architecture - The application is divided into independent, smaller services, each focusing on specific functionalities. - Advantages: - Independent maintenance, development, and scalability of components. - Greater flexibility to scale individual services based on demand. - Challenges: - Increased complexity in development, testing, and debugging, especially for multi-service environments. - Difficult to simulate the entire application locally. - Higher infrastructure costs for small-scale applications. Communication Between Microservices: 1. API (Synchronous): Direct communication between components, often via REST or GraphQL. 2. Message Broker (Asynchronous): Tools like RabbitMQ enable decoupled communication by passing messages between services. 3. **Service Mesh:** Ensures service discoverability, communication reliability, and monitoring across microservices.
@Venkatesh-vm4ll Жыл бұрын
Really thank you for the word , start business with monolithic, i am confused in that
@alexhyettdev Жыл бұрын
Microservices are usually a bit overkill if you are starting out with a new application with no traffic. In these cases one big application (monolith) is usually better until you have scaling problems and need to split it up.
@eugenek7775 ай бұрын
Thanks for a very useful overview
@muhammadwaqasiqbal824311 ай бұрын
Hi there Alex, Lovely video and It has cleared a lot of misconceptions regarding both architectures, I have a question however, Is there any metric value or any parameters defined based on which we could choose one or the other? I would really appreciate your take on this. Thanks
@Pankecal-v4k Жыл бұрын
this is such a gold content. Thank you so much Alex
@alexhyettdev Жыл бұрын
You're welcome, thank you for commenting!
@amitev Жыл бұрын
Great content and great video quality! What microphone are you using?
@alexhyettdev Жыл бұрын
Thank you, I am using a Blue Yeti X. I have had the same microphone for all of my videos but the sound quality wasn't as good to start with. The key is to have the microphone as close as possible and to make sure you have lots of soft furnishings in your room to absorb any echos. I now have curtains, cushions, a rug and a fluffy blanket to absorb the sound. Video wise I am just using my iPhone XR with the OBS Camera app. My earlier videos used a Logitech Brio 4K but the colours were always a bit off.
@amitev Жыл бұрын
@@alexhyettdev thank you very much for the comprehensive answer! Ideas for next videos - how to manage complexity; how to manage work/technical debt in a huge legacy code base, hope to cope with toxic cowerks/arrogant seniors.
@alexhyettdev Жыл бұрын
Thanks for the ideas, I will add them to my backlog!
@elifantshoos7088 ай бұрын
Dying. The stock footage of code magically getting manifested on the scenes as the person is waving around their finger. LOL
@abelmillion4341 Жыл бұрын
Good Job man, am grateful for your videos
@alexhyettdev Жыл бұрын
Thank you! I am glad they are useful for you.
@brayanjpm8 ай бұрын
What do you think about tools like TurboRepo ? I mean, we can use that tool for our apps minimizing the disadvantages of monoliths ?
@yourownazog80697 ай бұрын
amazing content and the level of my production. Thanks for what your doing
@celsoguerra22345 ай бұрын
Many thanks. This information is super informative
@hmatpin2 ай бұрын
In the case of Netflix, will different UI components talk to the same API and share the same authentication? If the JS talks to different APIs, how are the cross domain requests authenticated? Or is it that only one API talks to all microservices on the backend, and only one API returns the UI data?
@yankluf Жыл бұрын
Sooo clear!! Thanks a lot! 😁
@alexhyettdev Жыл бұрын
You're welcome 😊
@vijayas800711 ай бұрын
Wow Alex very well explained .. I went through many videos finally i got the difference as I come back from a break in my IT career. Thanks looking forward for more of such. Do you have anything on API manager
@Nicetrycutiepie7 ай бұрын
great in detail explanation. thank you so much Alex.
@blakeacheson93872 ай бұрын
The scale argument against a monolith doesn’t hold any water … if a certain part of your application is getting accessed more frequently it doesn’t matter … the other dormant areas of the system are just taking up a relatively small amount of disk … there is almost zero penalty to scaling replicas of everything
@sosyalant Жыл бұрын
you deserve more subs. Fantastic job
@alexhyettdev Жыл бұрын
Thank you! Hopefully one day!
@mumasmusic Жыл бұрын
Great work! One small suggestion tho. The constant bg music is quite distracting.
@alexhyettdev Жыл бұрын
Sorry about that. I have turned it down a lot in my newer videos. I would get rid of it completely, but it seems to improve retention.
@halooshka1904 Жыл бұрын
love the explanation! Very easy to understand :) Thank you
@alexhyettdev Жыл бұрын
I am glad you liked it! Thanks for commenting.
@korniszon68 Жыл бұрын
Wow, can't belive you have that little views. It's very nice told, all the pros and cons. You really know this stuff well. I always ask this question on the interviews and it appears that it's not that clear to most of devs :(
@alexhyettdev Жыл бұрын
Thank you! Yes unfortunately useful videos on software development don't always get as many views as other topics. Maybe I should do a series on topics to learn before going for an interview!
@nikoman713264 ай бұрын
great video content and production!
@geybriyel24167 ай бұрын
this is very clear. thank you
@imanshirkhodaee1704 Жыл бұрын
This is a very helpful content. thanks a lot.
@alexhyettdev Жыл бұрын
You're very welcome!
@faizanahmed9304 Жыл бұрын
amazing video
@alexhyettdev Жыл бұрын
Thanks I am glad you though so!
@rmanjit Жыл бұрын
Great work !! This is high quality content !!
@alexhyettdev Жыл бұрын
Thank you!
@k.alipardhan69575 ай бұрын
why is scaling a monolith considered hard/inefficient? 3:33 if you're getting high CPU usage, just add more hosts to the cluster. isn't it that simple? it doesn't matter if 20% of code gets 80% of traffic. maybe problematic if some code is memory intensive while the highly used code is not
@vishalkarthik.v7209 Жыл бұрын
Hello Mr.Alex if there are multiple application and we use monolith then should we use one single piece of code or respective codes for respective application Thank you !
@alexhyettdev Жыл бұрын
Generally with monoliths we are talking about one single application but in some cases you can have smaller supporting applications that go with it. I prefer to do one git repository per application but in the case of microservices that are closely related it can be easier to just have a mono repo.
@vrjb100Ай бұрын
When you cannot write a clean monolith, what make you think you can write clean microservices? When you cannot do the ops part of a monolith, you can do the orchestration of microservices?
@mfachrizalАй бұрын
Is right, the microservice just become giant monolith
@MalkiNawal-u1u6 ай бұрын
This is just perfect
@Munchopen2 ай бұрын
Defining a monolith around how you code is organised in repositories is a complete misunderstanding of what it means to have a monolith. It’s is completely possible to have a monolith split across multiple repositories. It doesn’t make it a microservice either just because it’s a small amount of code in a single repository.
@anjanigente453810 ай бұрын
can one microservice depend on the other? and also is it necessary to have separate database for each microservice?
@mfachrizalАй бұрын
Definitely will have. Depend microservice to each other is something can't be avoided
@BenRangel8 ай бұрын
The distinction is too blunt for my taste: i view microservices as one team separating their work into more than one service despite not really having to. And monoliths being a big service used by multiple teams. But most use something in between: pretty much one service per team
@tk75772 ай бұрын
Awesome super helpful
@thisiskartik4 ай бұрын
Your video is awesome
@david2am Жыл бұрын
thanks!
@alexhyettdev Жыл бұрын
You’re welcome!
@marcocoratella15568 ай бұрын
In fact the handsome developers, that want absolutely to show how handsome they are, they say that microservices is amazing. But indeed you need to be pragmatic and really understand what means working as a software developer sometimes first of all
@joeddo9 ай бұрын
great video. ty
@bramburnАй бұрын
Monolith 🌱🌱 done let's move on 😁
@kasparsr10 ай бұрын
modular modulyth
@aminzuar5767 Жыл бұрын
Thank uuuuu 🙏🙏🙏
@alexhyettdev Жыл бұрын
You’re welcome, I am glad it was helpful.
@ITSolutions-bl3dp8 ай бұрын
Thanks ❤sir
@kimberlyjacobsen4148 Жыл бұрын
No changes to Email service ? ? After changes to Azure and Outlook we now need To use 2-factor Auth.. thus Breaking the SMTP login. Add new Endpoints for MS and a Gui so we can authorize the Token. blah blah Point .. NO microservice is Imune to changes
@alexhyettdev Жыл бұрын
Very true. You would hope something as simple as email would be immune but very much depends on the provider. I have a few very simple Lambda functions that haven't touched in 2 years, however I am now forced to update them as the version of node they are running on will not be support soon.
@giorgikhachidze647 ай бұрын
Service mesh wasn't explained clearly at all. Too vague.
@alinaqvi263854 минут бұрын
Linux is a bunch of microservices that looks like a monolith.
@jonny.rubber9 ай бұрын
I feel the ping is unaccairy
@xConundrumx Жыл бұрын
I almost could not disagree more on these advantages you claim Monoliths have. Mostly because in reality nothing ever remains even remotely small enough for those advantages still hold up. Every single 'monolith' I have worked on in my 30 years turned out to be a massive app before it got to production. And that was with all the trimmings of those times. And you always, ALWAYS en up with a mess when multiple people have to work on it. Just my 2 cents.
@alexhyettdev Жыл бұрын
It really does depend on the scope of the application. If you have a team of 8 working on big enterprise application that you know is going to end up quite large then just start with microservices or at least mini monoliths. If you are building your own startup with just 1 or 2 developers, and you are not building into an existing architecture then a monolith will always be quicker. It is a case of not solving for problems you are not even sure you will have.