This is literally gold, Now I understand how to learn something 1) knowing what are the problems a tech tool can solve 2) understanding why we use X tool 3) Apply your learnings This is what I take from this video, thanks a ton
You are a genius man, few days back i was wondering that this guy needs to create a video on service mesh , & i got the surprise. ThanKs man, keep doing good work ✌🏼
the traffic lane analogy for explaining the metrics of requests sent by service A and received by service B was awesome.. only that in the visual, A was receiving because traffic was incoming and B was sending cos traffic was going away :D
I don't know how to thank you, You helped me a lot in understanding the service mesh technology. You are doing a great job.Please continue doing. I would like you should bring all new things developed around kubernetes.
"If you can't explain it simply, you don't understand it well enough." -Albert Einstein, And you Sir, You know your stuff! Love your videos, They just hit the nail on t he head.
7.5k subscribers!! Waw!! You are doing absolutely great! Very informative service mesh video. Waiting for the future servicemesh videos too. Please include Kiali network view component in those if possible. Great job!
How do you maintain referential integrity between the videos and playlist databases? Can you do a video on microservice architecture and SQL databases to explain how monolithic apps can be broken into microservices when they all use the same SQL database?
Ideally in world of distributed systems, services should not leak their data model and instead provide a contract thats backward compatible. In this case, playlists-api should not know how videos are stored by the videos-api. Only way to access the data is through the videos-api. The videos-api is able to change its backing service from MySQL to Redis without impacting dependent services as the contract on videos-api (accepting an ID on a GET request) remains consistent. So the videos domain is controlled by its endpoint and no other services should be able to access its database directly. I would recommend to try avoid sharing databases between services as its an anti pattern. 12 Factor is a great read on this 12factor.net/backing-services Microservice video series sounds like a good plan 💪🏽
Just awesome! But I have one question. If you have your Kubernete cluster on DigitalOcean inside one VPC network, which means that communication between pods is already secure. So what would be the use case for service mesh with TLS connection between pods?
Thank you 💪🏽 TLS between pods means the traffic is encrypted end to end. If your network is comprised, it would be increasingly difficult to sniff packets on the network.
Many kubernetes cluster contain different Environment (prod, stage, Dev), different projects or multiple tenants, so it better to secure the communication.
Thanks a lot for the great content man, slightly off topic but there's been some buzz in 2020 regarding Container Operating Systems (BottleRocket, FlatcarLinux, Fedora CoreOS etc..). Is this topic in your rader ?
Personally I would start with Linkerd, then Istio, then also checkout Open Service Mesh. Linkerd is the most beginner friendly mesh out there and you can play around with all its functionality locally using a local kind cluster. It will help you understand all the functionality of a mesh. Istio is slightly more advanced to understand, but once you've played with Linkerd, Istio becomes a real breeze. You don't have to go too advance with Istio, just play with the basics. And finally, Open Service Mesh, will teach you the SMI concepts which may form the foundation of service mesh implementations on Kubernetes going forward. Linkerd ruclips.net/video/Hc-XFPHDDk4/видео.html Istio: ruclips.net/video/KUHzxTCe5Uc/видео.html Open Service Mesh : (video on the roadmap)
Mate when you do port forward to playlist api to port 81 locally how does my browser understand it .. I mean you refreshed localhost in the url and it got the content.. same when you deployed db then you didn’t port fwd it but still you refreshed it and got the videos .. how this works ? Sorry if it’s a stupid question
In the first part of the video I used docker compose, no port forwarding, so all services start and the content is there, that is why you can see it all. Later in the video we deploy each service, starting with videos web, at that stage, port--forward does not show any content, we deploy the next service and piece by piece you will notice content coming through in the browser.
Thanks for your awesome videos.... Looking forward for more videos on ServiceMesh. My question is how does videos-web container integrated with videos-api & playlists-api? How does Videos-web know about Videos-api/playlist-api?
In this simple demo, videos web runs as a web app (html). It has the URL of playlist api and accesses it via GET call. Videos Api is private and Playlists API is accessing videos API using a GET call over private DNS. This will evolve and an Ingress gateway will be introduced. See full docs here github.com/marcel-dempers/docker-development-youtube-series/blob/master/kubernetes/servicemesh/readme.md
Thanks 💪🏽I would highly recommend not to keep sessions in processes (pods), instead move session out (to something like a database). Processes should allow for concurrency (scale out) and share nothing among them. a great read about it here 12factor.net/processes
In Internet there are a lot of documents about velero. Depends on your configuration /setup for concerning solution EG medium.com/techlogs/using-velero-and-restic-to-backup-kubernetes-2f0f812da4db
It's very different. NewRelic integrates at code level (SDK) so it gives deep observability into method\function tracing and instrumentation. NewRelic would compare more to Prometheus + Jaeger to a degree. Service mesh gives you more network level tracing focusing on endpoints. I.E When service A calls B, B's endpoint took 5ms to respond, but it does not instrument the code of endpoint B which is what NewRelic would do if that makes sense 💪🏽
This is literally gold, Now I understand how to learn something
1) knowing what are the problems a tech tool can solve
2) understanding why we use X tool
3) Apply your learnings
This is what I take from this video, thanks a ton
My God mate, you're an excellent teacher!!! Best explanations of tech I've heard in my life. Also your triceps are on point 🤟
Best video I viewed so far on Service Mesh introduction.
the way you explained concept makes micro service + service mesh easier to understand. Thank you. Keep posting such videos more.
You are a genius man, few days back i was wondering that this guy needs to create a video on service mesh , & i got the surprise.
ThanKs man, keep doing good work ✌🏼
Crisp and Clear. Explanation is too GOOD
This would be a fantastic prerequisite knowledge to start design distributed system.
Thanks!
By far the best technical channel I've ever seen, really nice content! A suggestion: chaos engineering.
You're my favorite technical channel by far. Thanks so much for your work
Beautifully explained
Awesome clarity. Honestly i got lost with the topic with other RUclips videos
This nails exactly what it is. You rock!
the traffic lane analogy for explaining the metrics of requests sent by service A and received by service B was awesome.. only that in the visual, A was receiving because traffic was incoming and B was sending cos traffic was going away :D
Very clear and simple to understand the necessity of service mesh. Thank you so much, you save me a lot of time
I don't know how to thank you, You helped me a lot in understanding the service mesh technology.
You are doing a great job.Please continue doing.
I would like you should bring all new things developed around kubernetes.
"If you can't explain it simply, you don't understand it well enough." -Albert Einstein,
And you Sir, You know your stuff! Love your videos, They just hit the nail on t he head.
awesome video thanks Marcel 👍
Anytime better than paid videos.. Thank you
This is a very good intro to service meshes.
What an excellent video! By far the best introduction to docker, kubernetes, and service mesh that I've ever found. You deserve 10x more subscribers.
You are awesome. Your content is very easy to understand and go deep to technical. Thank a lots
Phenomenal channel. Love this guy so much !
thank you for all the amazing lessons :)
7.5k subscribers!! Waw!! You are doing absolutely great!
Very informative service mesh video. Waiting for the future servicemesh videos too. Please include Kiali network view component in those if possible. Great job!
Super cool explanation, I love u DevOps Guy, many thanks!!
Thanks for your great explanation!!!
Thank you :) I like the way you explain in the videos
Thank you for this amazing content.
Great content, easy to follow and digest. Thanks
Thanks for sharing, also interested to see how to manage the network latency.
beautiful video! Thanks!!!
Awesome! Really excited to learn.
Love your tutorials. Service Mesh - just what I was waiting for so long. Thank you!
amazing teacher
Finally, Thanks for this lovely content.
really nice and strait forward explanation. I love your videos
where did you get that Nginx ingress controller config from?
More content on this watched whole video excited to see more .
I would really love to support this channel. Expect me to pay
How do you maintain referential integrity between the videos and playlist databases? Can you do a video on microservice architecture and SQL databases to explain how monolithic apps can be broken into microservices when they all use the same SQL database?
Ideally in world of distributed systems, services should not leak their data model and instead provide a contract thats backward compatible. In this case, playlists-api should not know how videos are stored by the videos-api. Only way to access the data is through the videos-api. The videos-api is able to change its backing service from MySQL to Redis without impacting dependent services as the contract on videos-api (accepting an ID on a GET request) remains consistent. So the videos domain is controlled by its endpoint and no other services should be able to access its database directly. I would recommend to try avoid sharing databases between services as its an anti pattern.
12 Factor is a great read on this 12factor.net/backing-services
Microservice video series sounds like a good plan 💪🏽
It is very useful session, Maximum how many cluster can we create using Kind?
Just awesome! But I have one question. If you have your Kubernete cluster on DigitalOcean inside one VPC network, which means that communication between pods is already secure. So what would be the use case for service mesh with TLS connection between pods?
Thank you 💪🏽 TLS between pods means the traffic is encrypted end to end. If your network is comprised, it would be increasingly difficult to sniff packets on the network.
Many kubernetes cluster contain different Environment (prod, stage, Dev), different projects or multiple tenants, so it better to secure the communication.
Thanks a lot for the great content man, slightly off topic but there's been some buzz in 2020 regarding Container Operating Systems (BottleRocket, FlatcarLinux, Fedora CoreOS etc..). Is this topic in your rader ?
I've heard about these, definitely going on the radar 💪🏽
Really interesting topic, and really good video, gz
amazing video!!!!!!!
i am looking to learn a service mesh what would you suggest i should learn between AWS App mesh and istio?
Personally I would start with Linkerd, then Istio, then also checkout Open Service Mesh.
Linkerd is the most beginner friendly mesh out there and you can play around with all its functionality locally using a local kind cluster. It will help you understand all the functionality of a mesh.
Istio is slightly more advanced to understand, but once you've played with Linkerd, Istio becomes a real breeze.
You don't have to go too advance with Istio, just play with the basics.
And finally, Open Service Mesh, will teach you the SMI concepts which may form the foundation of service mesh implementations on Kubernetes going forward.
Linkerd ruclips.net/video/Hc-XFPHDDk4/видео.html
Istio: ruclips.net/video/KUHzxTCe5Uc/видео.html
Open Service Mesh : (video on the roadmap)
@@MarcelDempers great!!!!!!!!thanks for the advice
Please made a video on kafka and zookeeper in k8s!
good job :) my Master 🙏
Small suggestion: You should use bigger font size and lighter theme when showing the code.
Mate when you do port forward to playlist api to port 81 locally how does my browser understand it .. I mean you refreshed localhost in the url and it got the content.. same when you deployed db then you didn’t port fwd it but still you refreshed it and got the videos .. how this works ? Sorry if it’s a stupid question
In the first part of the video I used docker compose, no port forwarding, so all services start and the content is there, that is why you can see it all. Later in the video we deploy each service, starting with videos web, at that stage, port--forward does not show any content, we deploy the next service and piece by piece you will notice content coming through in the browser.
Thanks for your awesome videos.... Looking forward for more videos on ServiceMesh. My question is how does videos-web container integrated with videos-api & playlists-api? How does Videos-web know about Videos-api/playlist-api?
In this simple demo, videos web runs as a web app (html). It has the URL of playlist api and accesses it via GET call. Videos Api is private and Playlists API is accessing videos API using a GET call over private DNS.
This will evolve and an Ingress gateway will be introduced.
See full docs here
github.com/marcel-dempers/docker-development-youtube-series/blob/master/kubernetes/servicemesh/readme.md
what do you bench?
Hi, so good. Could you please make a video on session replication between pods in kubernetes?
Thanks 💪🏽I would highly recommend not to keep sessions in processes (pods), instead move session out (to something like a database). Processes should allow for concurrency (scale out) and share nothing among them.
a great read about it here 12factor.net/processes
Did you make it in 13:37 time deliberately?
Love there videos, but please make the graphics slow down, watching images bump around the screen so fast is distracting.
Can we get a detailed video on Velero cluster backup with restic please
In Internet there are a lot of documents about velero.
Depends on your configuration /setup for concerning solution
EG medium.com/techlogs/using-velero-and-restic-to-backup-kubernetes-2f0f812da4db
Nice
Will all videos in this series be so 13:37?
Yeah
Best
How is this different or how does it relate to a APM product, say NewRelic?
It's very different. NewRelic integrates at code level (SDK) so it gives deep observability into method\function tracing and instrumentation. NewRelic would compare more to Prometheus + Jaeger to a degree. Service mesh gives you more network level tracing focusing on endpoints. I.E When service A calls B, B's endpoint took 5ms to respond, but it does not instrument the code of endpoint B which is what NewRelic would do if that makes sense 💪🏽
Awesomeness
noice!
Great video with a lot of useful information! The animation is too dynamic and annoying though, it is difficult to read.
I feel stupid (a compliment)
Hey first to comment