UA-cam is amazing. You can find very interesting videos, for free and gain tons of knowledge, for free. But, ofcourse you need a great content creater, such as you are. You deserve credits. First, you gain the knowledge, wrote a script, recorded it, made an visual video and uploaded it, thank you!
I'm a Senior Software Engineer with 7+ years of experience, always worked in backend but recently I was asked to look into devOps and miraculously, I stumbled upon your channel, I'm watching every single one of your videos and I must say that you're one of my favs, best teacher on UA-cam.. I'm a Subscriber who's in love with you.
I always wanted someone like you as a mentor who when explain things, explain it actually not throwing high level terms and jargon, your videos are like a good experience university professor. You should approach some university where you can teach these topic as well.
This is genuinely the single most comprehensive piece of content I've ever seen on microservices. High level enough that I can get the full picture without getting too lost in the weeds but in depth enough that I can actually get a pretty good picture of how to implement things. Thank you, this answered a ton of questions I had! Side note: any thoughts on a polyrepo approach that also has another repo for infra and config stuff that uses git submodules to integrate everything else? I had to talk some people at work out of it because I thought it was OVERKILL for that specific project, but it seems to me like a solid approach to the problem of having repos share stuff that isn't application code.
So far I find this woman the most clear and concise person to learn from on UA-cam. Step by step, thank you so much for your efforts. Coming from a beginner
So Nana, I am completely binge watching all your videos and I have to say, yours are simply the best out there right now. Keep up the excellent work and from the bottom of my heart, thanks for making these for the entire community and free to watch. No paywalls, just excellent, up to date, on point knowledge. You ROCK!
Wow! I had to share this video to over 100 members of my team. This is the most explanatory video I have seen on microservices on the internet. Congrats, you have just won a subscriber and many more incoming.
Nana, I finally understand a fundamental part of our project. It was so hard for me to understand how our microservices work but you opend my eyes with your perfect explanation. I want to say thank you from the bottom of my heart for your great work. 😊
Hi ! This is a great video on Microservices.. I am a veteran programmer coming from the old client-server era.... Your video on Microservices was an eye-opener for me... You have explained many things in a simple manner, something which old programmers like me can understand and appreciate... presently learning GOLANG ... I will be very thankful if you can guide me ON WHICH AMONGST YOUR VIDEOS and WHAT IS THE SEQUENCE OF THE VIDEOS that I should watch - which would be helpful to me in order for me to move slowly from 'building a single monolith web application' to 'building a MICROSERVICES application' ... Thanks once again for making this excellent video...
This is one of the best videos on this topic. It's explained so clearly that even those with no knowledge of microservices can easily understand. As a relatively experienced architect, I find it well summarized. I'll definitely keep this video in my bookmarks.
I know other people also apriciated this video but I still would like to appriciate. It is one of the best vidoe I have ever seen explaning microservices, espacially the part you explained how microservices can communicatre with each other.
I totally love the presentation... and ur way of explaining... for absolute beginners... we can understand ur hardwork for creating such wonderful videos... thank you so much for making Digital learning easy.
Excellent video I've ever seen especially on Microservices. You cleared all my questions like why should we use Microservice and what are they with examples. Also you've explained very well about challenges at each and every stage. Presentation is very informative. I can see that you put lots of efforts to make this video. Thanks for your explanation. Thanks Nana!
it's really a great video for introducing microservice. I think microservice is very useful for us to simply our application, but it also causes a lot of other problems, such as distribute transaction problem, circle dependency, and so on. so it's really hard to decide how should we split the application
For my it was actually necessary to first watch an application code example to being able to imagine what microservices definitions mean. Coming back to your after that your video was really useful. Thanks for sharing!
WOW, Such a nice video. Covered everything. I usually search for articles on any topic as videos in general lack the depth. But this one proved me wrong. Thank you
Excellent stuff on basic Microservices Nana, please keep up the good work as it helps a lot of people like me who are not really into coding but still need to know the "big picture" on such technologies.
For monorepo vs polyrepo, I recently had to take a decision on it and the way I thought of it was more around whether i have enough data to say how many microservices would I be creating. Since I didn't had that info, I explored if i select monorepo now, how much effort will go into moving it to polyrepo later and vise versa.
@powerChriZ think about how would you use common code , to make it work, you would have to publish the common code as sdks and then use in a polyrepo structure vs direct dependency in monorepo
Thank you so much for sharing this video, I've been working with a lot of the mentioned technologies like (Docker and CICD) in this video and I've designed my current applications with a tiered systems architecture but this video gives me a really nice approach to update my system!
Brilliant explanation of difficult technologies. To the point, great use of visuals, proper flow of explanation. Simply you're best. I am watching your DevOps Bootcamp in 2023. Love from Pakistan 👍
Your lectures are so helpful to understand things from the most basic beginnings to complex ends. You explain complicated processes in easily understandable ways. Thanks a lot and May Allah (God) bless you for this.
My current project is to de-couple the monolithic application and dockerise those services ... So, this video was much needed for me .. thanks a lot for share ur knowledge .
Truly speaking there's a lot of value I get from these channels: Techworld with Nana, Computerphile and Continuous Delivery, of course normally I'd have to watch a video at least twice to understand it😂 but still. 3 topics that used to terify me and were difficult for me to know are cloud engineering, DevOps and Microservices and now I can safely say I can at least define them😅, n all that I got from this channel ❤❤
I like the voice and presentation simplicity. Pros and Cons are spot on. I have seen projects with smaller size Micro services based MONOREPO Projects.
This video is amazing... clear explanation... I can able to visualize how my monolithic application can be modified into microservices... Thanks Nana for your awesome work....
I just saw this and then another video, this is very well presented, clear and the time and effort put in those videos is very evident, thank you and please keep more content coming 👍
Great explanation. Thank you so much. Now I have general knowledge and idea on how microservices works. Recommended for beginner who have no idea at all when job requirements need you to know microservices.
Great video so far, but I would like to request you to create a full playlist of microservice & its communications, any framework implementation using microservice , that would be of great help.
Thanks a lot Nana. I now have a good grasp of what microservices means. You truly do have a way of breaking down concepts for better understanding. Thanks so much once again!
I am religiously following ur videos..I love the way u explained..i sir with a notebook and pen while watching your videos..to note down important points .but the beautiful part is I ended up writing everything u say.. because all ur lines are very informative..can't miss a single line .I was thinking,if I could get this PPT or document..so that it will save my task of writing down
I have watched your video many times to better understand Microservices , the content is very detailed and the video is excellent . Thank you so much ❤
Really useful video, thanks! On the Mono vs Poly Repo question, I have been investigating a 3rd option. Using individual repositories for each service, and another repo for the project itself that contains git sub-modules of each service. This keeps everything in one place for each project while allowing for code re-use of common services. But with the downside of having to make multiple updates when new versions of services are released. One to the service itself, then another to update the git sub-module.
Thank you so much Nana, for such a wonderful explanation. In the starting I was not able to understand your accent, so i couldn't understand your videos. Now I can understand your accent, So I cant stop appreciating your videos. the way of simplifying the thing is awesme. when I am watching the video, after listening a concept, I get a doubt, your next explanation would be answer to my doubt. I was really shocked how do you know my doubt, I think your intention is that any lay man should also understand the concept in your videos.
UA-cam is amazing. You can find very interesting videos, for free and gain tons of knowledge, for free. But, ofcourse you need a great content creater, such as you are. You deserve credits. First, you gain the knowledge, wrote a script, recorded it, made an visual video and uploaded it, thank you!
Thanks for your appreciation Johannes!
Ya
FACTS
I don't know how she can have all that knowledge from all those videos. I'd straight marry her❤
It's not free. You are the product
I'm a Senior Software Engineer with 7+ years of experience, always worked in backend but recently I was asked to look into devOps and miraculously, I stumbled upon your channel, I'm watching every single one of your videos and I must say that you're one of my favs, best teacher on UA-cam.. I'm a Subscriber who's in love with you.
The best video I have seen so far on the Microservices. Great to see how you summarised so many concepts in such short period. Thanks Nana!
Thank you! so happy to hear because that was the goal 😊
Thanks Nana it's sooo helpful !
true, since I found this channel I started feeling like I am a champ after seeing her videos
I always wanted someone like you as a mentor who when explain things, explain it actually not throwing high level terms and jargon, your videos are like a good experience university professor. You should approach some university where you can teach these topic as well.
This is genuinely the single most comprehensive piece of content I've ever seen on microservices. High level enough that I can get the full picture without getting too lost in the weeds but in depth enough that I can actually get a pretty good picture of how to implement things. Thank you, this answered a ton of questions I had!
Side note: any thoughts on a polyrepo approach that also has another repo for infra and config stuff that uses git submodules to integrate everything else? I had to talk some people at work out of it because I thought it was OVERKILL for that specific project, but it seems to me like a solid approach to the problem of having repos share stuff that isn't application code.
So far I find this woman the most clear and concise person to learn from on UA-cam. Step by step, thank you so much for your efforts. Coming from a beginner
Thank you Sirius, so happy to hear such positive feedback. That definitely motivates to keep on creating high quality content :)
im not sure if its woman
@@Nelekochara Can't you see the profile avatar and her image appear every section of the video...? Also many videos where she record herself.
So Nana, I am completely binge watching all your videos and I have to say, yours are simply the best out there right now. Keep up the excellent work and from the bottom of my heart, thanks for making these for the entire community and free to watch. No paywalls, just excellent, up to date, on point knowledge. You ROCK!
Wow! I had to share this video to over 100 members of my team. This is the most explanatory video I have seen on microservices on the internet. Congrats, you have just won a subscriber and many more incoming.
Thanks Demilade, appreciate it 😊
she is awesome. I always recommend to someone asking me on this topics
This UA-cam channel has the best technical videos, thank you Nana, your content lives up to your beauty
I must admit - TechWorld with Nana - is the best spot around UA-cam to get to know or to recap such things! Respect!
Nana, I finally understand a fundamental part of our project. It was so hard for me to understand how our microservices work but you opend my eyes with your perfect explanation. I want to say thank you from the bottom of my heart for your great work. 😊
Hi ! This is a great video on Microservices.. I am a veteran programmer coming from the old client-server era.... Your video on Microservices was an eye-opener for me... You have explained many things in a simple manner, something which old programmers like me can understand and appreciate... presently learning GOLANG ... I will be very thankful if you can guide me ON WHICH AMONGST YOUR VIDEOS and WHAT IS THE SEQUENCE OF THE VIDEOS that I should watch - which would be helpful to me in order for me to move slowly from 'building a single monolith web application' to 'building a MICROSERVICES application' ... Thanks once again for making this excellent video...
It was a pleasure from the first to the last minute. We're also aware of the effort behind each video. Thank you 😊!
Thanks for your appreciation Mohamed! 💙
In Monorepo, we can have "several" branches for every services and manage releases through final merge to main branch.
This is one of the best videos ever watched summarizing the microservices architecture from the service creation to deployment
This is one of the best videos on this topic. It's explained so clearly that even those with no knowledge of microservices can easily understand. As a relatively experienced architect, I find it well summarized. I'll definitely keep this video in my bookmarks.
The video is truly insane. The topic and description are straightforward. So anyone can understand easily. Thank you so much for this amazing video.
An other complex topic very simple explained by Nana, this industry needs people like you, keep up the good work !
so far the best video I ve seen on youtube about microservices . from a beginner Thanks . You got a subscriber.
I know other people also apriciated this video but I still would like to appriciate. It is one of the best vidoe I have ever seen explaning microservices, espacially the part you explained how microservices can communicatre with each other.
Finally a video that explains the topic of microservices properly. Thanks!
😀
This video is f-ing amazing! Great job Nana! Everything is so much clearer to me now.
The best breakdown I have seen thus far regarding monolithic and microservices architecture. Thanks.
Happy to hear, thanks Felix! :)
The best video, I have seen so far on the Microservices. The way you explained easier, and full information. Thanks
The fact that you're my first go tutor and always come through ☺️
I don't know if this count but I love you and thank you for always coming through
This is the best video on microservices i've seen so far. Explains well and covers a lot of important topics.
I totally love the presentation... and ur way of explaining... for absolute beginners...
we can understand ur hardwork for creating such wonderful videos...
thank you so much for making Digital learning easy.
The best video I have found about microservices . Thanks a lot 😍🙏
Excellent video I've ever seen especially on Microservices. You cleared all my questions like why should we use Microservice and what are they with examples. Also you've explained very well about challenges at each and every stage. Presentation is very informative. I can see that you put lots of efforts to make this video. Thanks for your explanation. Thanks Nana!
What a way of explaining the things, you just simplify the things. Thanks Nana!!
it's really a great video for introducing microservice. I think microservice is very useful for us to simply our application, but it also causes a lot of other problems, such as distribute transaction problem, circle dependency, and so on. so it's really hard to decide how should we split the application
it is the most structured and clear overview of microservices i have ever seen. thank you so much.
For my it was actually necessary to first watch an application code example to being able to imagine what microservices definitions mean. Coming back to your after that your video was really useful. Thanks for sharing!
Just Wow! The best video I have seen so far on the Microservices. Thank you so much! Please keep going such kind of awesome contents 😍
WOW, Such a nice video. Covered everything. I usually search for articles on any topic as videos in general lack the depth. But this one proved me wrong. Thank you
REALLY very well done... probably one of the best I've seen. Thank you. ABSOLUTE GOLD 🏆
Excellent stuff on basic Microservices Nana, please keep up the good work as it helps a lot of people like me who are not really into coding but still need to know the "big picture" on such technologies.
Danke!
For monorepo vs polyrepo, I recently had to take a decision on it and the way I thought of it was more around whether i have enough data to say how many microservices would I be creating. Since I didn't had that info, I explored if i select monorepo now, how much effort will go into moving it to polyrepo later and vise versa.
Thanks for sharing!
@powerChriZ think about how would you use common code , to make it work, you would have to publish the common code as sdks and then use in a polyrepo structure vs direct dependency in monorepo
Thanks!
Thanks Matt! 💙
I started using microservices in 2000. The technology is still running strong. Thank you for the support.
Hi Nana, excellent video on introduction to Microservices. 18 minutes of pure knowledge without any distractions and high jargons.
Thank You 🙏😊
Nana, well articulated, just simple explanation makes everyone understand deeper in concepts. Keep rocking!!!
You are always my favorite techie Nana. simple and clear information on your channel. Cheers !!
ABSOLUTELY beautifully orchestrated video. Thank you so much for creating such videos💯
Extremely helpful video to understand the Pros and Cons of Microservices with examples. Thanks Again for this great video!!
You explain complicated topics in such an easy way...that gives relief and excitement to learn more. Thanks and keep teaching & producing such content
@Zen52.36 agreed..once you get fimilier
Best video I have seen so far , Nana you are amazing .
Your grasp in the concept is amazing, you have explained everything very well. Thanks a lot Nana!
Thank you so much for sharing this video, I've been working with a lot of the mentioned technologies like (Docker and CICD) in this video and I've designed my current applications with a tiered systems architecture but this video gives me a really nice approach to update my system!
Very well explained! It’s easy to understand, especially for beginners. Thank you for taking the time to make this video.
Brilliant explanation of difficult technologies. To the point, great use of visuals, proper flow of explanation. Simply you're best. I am watching your DevOps Bootcamp in 2023. Love from Pakistan 👍
Your lectures are so helpful to understand things from the most basic beginnings to complex ends. You explain complicated processes in easily understandable ways. Thanks a lot and May Allah (God) bless you for this.
Absolutely incredible... you're truly a natural-born teacher
What a great video covering almost all the important aspects 👌🏻❤
Thank you so much ❤
You deserve to be compensated so I am happy to watch the full ads. Thank you Dear Nana!
This is just awesome video,for someone like me,who is starting to learn Microservices..
My current project is to de-couple the monolithic application and dockerise those services ... So, this video was much needed for me .. thanks a lot for share ur knowledge .
Truly speaking there's a lot of value I get from these channels: Techworld with Nana, Computerphile and Continuous Delivery, of course normally I'd have to watch a video at least twice to understand it😂 but still. 3 topics that used to terify me and were difficult for me to know are cloud engineering, DevOps and Microservices and now I can safely say I can at least define them😅, n all that I got from this channel ❤❤
I like the voice and presentation simplicity. Pros and Cons are spot on. I have seen projects with smaller size Micro services based MONOREPO Projects.
This video is amazing... clear explanation... I can able to visualize how my monolithic application can be modified into microservices... Thanks Nana for your awesome work....
even my college faculty doesn't told me anything about it. The way you explain it's amazing and so simple
I just saw this and then another video, this is very well presented, clear and the time and effort put in those videos is very evident, thank you and please keep more content coming 👍
Thanks Nana,
Read a blog post on the monolithic architecture, then came across this video... Which just made it stick to me brain.
I have been thinking about understanding Microservices. This video gave a very good crisp overview of microservices.
Great explanation. Thank you so much. Now I have general knowledge and idea on how microservices works. Recommended for beginner who have no idea at all when job requirements need you to know microservices.
Great video so far, but I would like to request you to create a full playlist of microservice & its communications, any framework implementation using microservice , that would be of great help.
The finest video I've seen about Microservices so far.Thanks a lot Mam.
The best video I have seen so far on the Microservices TNX
Nana you are excellent. With you I understand concepts I struggled with for years. Thank you 🎉
The best video for getting insights about Microservices!
Such an informative video. Thanks Nana, for teaching this topic in much simpler way!
Thanks a lot Nana. I now have a good grasp of what microservices means.
You truly do have a way of breaking down concepts for better understanding.
Thanks so much once again!
Great video. Your explanation was easy to comprehend. Thank you, Nana!
Quite clear voice, pauses and coherent topic explanation puts you on top of list, really great
Fantastic presentation, thank you for providing this (relatively) niche industry information in such a clear and concise format!
Thanks a lot. This is a concise and clear introduction on the topic of microservices.
I am religiously following ur videos..I love the way u explained..i sir with a notebook and pen while watching your videos..to note down important points .but the beautiful part is I ended up writing everything u say.. because all ur lines are very informative..can't miss a single line .I was thinking,if I could get this PPT or document..so that it will save my task of writing down
Youe videos are diamond Nana you simply complex topics. You are amazing!
every time i search for topic or info in youtube , i find your videos .... great job....
keep on
its amazing video i got perfectly details from this video that i want to know about microservices. thank you so much dear!
Finally I found a good way of understanding the concepts in a clear way
I am following all kinds of videos from you from the start. I am really impressed with your nice content on every topic.
I have watched your video many times to better understand Microservices , the content is very detailed and the video is excellent . Thank you so much ❤
Thanks a lot, so far the best explanation on microservices
Phenomenal video! You explained microservices so well.
Your videos are really helpful. I can easily understand every single thing you explain
Really grateful for your videos 💕
this explanation is best one . prevent developers develop huge monolithic application. Good for all CTO!
Your all videos are awesome. Your way of teaching and presenting is great.
Thanks Sujeet! :)
You made the learning very simple to understand the topic.
Such a great video, I love how clear and well structured ❤
Really useful video, thanks!
On the Mono vs Poly Repo question, I have been investigating a 3rd option. Using individual repositories for each service, and another repo for the project itself that contains git sub-modules of each service. This keeps everything in one place for each project while allowing for code re-use of common services. But with the downside of having to make multiple updates when new versions of services are released. One to the service itself, then another to update the git sub-module.
The best video about the microservice. Thank you so much
Best Explanation Ever about Microservices
Perfect... Concentrated, clear, and well-organized
Been waiting! Thank you!
Thank you for creating this video & explaining things in a clear and simple manner. Please keep on creating more videos.
This is great! :) You did a wonderful job explaining this
Thank you for this superb tutorial the let us understand a complex context with simple words, images and of course great knowledge!!! 👋👋👋
Thank you so much Nana! Now this very sophisticated topic became way more clear for me.
Thank you Nana, you are an IT genius.
Thank you so much Nana, for such a wonderful explanation.
In the starting I was not able to understand your accent, so i couldn't understand your videos.
Now I can understand your accent, So I cant stop appreciating your videos.
the way of simplifying the thing is awesme.
when I am watching the video, after listening a concept, I get a doubt, your next explanation would be answer to my doubt.
I was really shocked how do you know my doubt, I think your intention is that any lay man should also understand the concept in your videos.