Тёмный

Serverless Vs Container (Lambda Vs Kubernetes) 

Cloud With Raj
Подписаться 111 тыс.
Просмотров 59 тыс.
50% 1

Опубликовано:

 

2 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 85   
@olympusbiz9583
@olympusbiz9583 8 месяцев назад
Wtf, I love Kubernetes but my current firm want to Swift to lambda. We're running small application with less usage on EKS😮
@LeonardoDias-te2gg
@LeonardoDias-te2gg 4 года назад
Great overview, especially at the end with the "which one is cheaper" comparison. Thank you!
@digvijayyamagekar7139
@digvijayyamagekar7139 3 года назад
Hey i have question here, Things that we can do inside a container ( let's say hosting a website) we can't do this in aws lambda right And lots of other stuff too ?
@cloudwithraj
@cloudwithraj 3 года назад
Hey Digvijay, the architecture changes a bit. The static website will be hosted with s3 and CloudFront and dynamic API calls will be done using API Gateway Lambda, and you gain high availability and scalability out of the box. Check out my Netflix/prime system design video for this architecture, this part is near the end(timestamp included in that video).
@everythinggoes850
@everythinggoes850 4 года назад
Thanks for the video. But I just wanna point out that the distinction between serverless and container is not applicable to GCP. In the GCP world, you can have a serverless container via Cloud Run.
@seetsamolapo5600
@seetsamolapo5600 Год назад
- No servers to provision or manage - Automatically scaled with usage - No payment for idle - Highly available
@markjenkins1217
@markjenkins1217 5 лет назад
Truly, such a valuable video.
@cloudwithraj
@cloudwithraj 5 лет назад
I am so glad you found it useful, ty for the kind words, have a great weekend!
@cloudwithraj
@cloudwithraj 4 года назад
My Kubernetes on EKS Course is out now in Udemy!! If interested, please check out discounted ($9.99) link - www.udemy.com/course/rocking-kubernetes-with-amazon-eks-fargate-and-devops/?couponCode=JUN21BP2
@gauravverma9102
@gauravverma9102 2 года назад
Please correct your accent ! please its little irritating. But contants are very very very good! thanks for that
@superharryboy
@superharryboy 4 года назад
Audio is blown out but the explanation is great. Thank you!
@billaddison82
@billaddison82 3 года назад
I have been trying to understand exactly what "serverless" is for days now and this has been a very helpful explanation, thanks!
@cloudwithraj
@cloudwithraj 3 года назад
Thanks Bill, glad it helped!
@danielfrances1110
@danielfrances1110 4 года назад
I am NOT technical at all......the way you explained the differences is AWSOME! Thank you!!!
@samarthurs8000
@samarthurs8000 3 года назад
It was enlightening! You can differentiate two things only when you know about those two in depth. This proves your concepts are rock solid! Now the Concept is clear for us too. Many thanks Rajdeep!
@cloudwithraj
@cloudwithraj 3 года назад
Thanks for the kind words samarth!
@MarcMcRae
@MarcMcRae 5 лет назад
Great contrast, helped me learn something new.
@cloudwithraj
@cloudwithraj 5 лет назад
Ty Marc for the kind words! I am so happy that you got something out of my videos. If you like Serverless, feel free to check out the other serverless videos in my channel. Thanks!
@serhiimamedov
@serhiimamedov 3 года назад
Have you considered dynamically destroying ec2 instances if traffic is lower?
@jandonnermayer6708
@jandonnermayer6708 4 года назад
Awesome video! It helped me preparing for an important architecture decision!
@cloudwithraj
@cloudwithraj 4 года назад
Great to hear! Thanks for watching.
@ubaidshahid5123
@ubaidshahid5123 4 года назад
Each and every word was worth listening 💯 Good luck 👍
@cloudwithraj
@cloudwithraj 4 года назад
Thanks ubaid for the kind words, I am so glad you found this useful.
@garrettjones1161
@garrettjones1161 4 года назад
Container is stone, serverless is water. So use serverless technologies inside of container and you have the optimal hybrid.
@cloudwithraj
@cloudwithraj 4 года назад
Depends Garrett. One of the reason companies adopt serverless is pay per use. With serverless running on top of container (for example using Knative), you still pay for the underlying worker nodes even if they are underutilized. There are other factors such as rate of scaling, service integration etc. But yes, this is definitely an interesting concept!
@Limpuls
@Limpuls 4 года назад
So to scale containers you need to scale VM? I thought that with containers you can just scale and run more containers from the same image without creating more VM. Or am I misunderstanding something?
@cloudwithraj
@cloudwithraj 4 года назад
The pods wrapped around container(s) runs inside a node (EC2). When the traffic goes up, HPA (Horizontal Pod Autoscaling) will kick in and create more pods in same node(EC2). However when demand increases and current node(EC2) has no capacity left, it will engage cluster autoscaler and another node (VM/EC2) will be provisioned and new pod will go there. Hope this helps. Thanks for the question.
@subhamjaguri9019
@subhamjaguri9019 2 года назад
Very Helpful video
@リンゴ酢-b8g
@リンゴ酢-b8g 2 года назад
What is serverless computing? Like PaaS, serverless computing enables developers to build applications faster by eliminating the need for them to manage infrastructure. With serverless applications, the cloud service provider automatically provisions, scales, and manages the infrastructure required to run the code. Serverless architectures are highly scalable and event-driven, only using resources when a specific function or trigger occurs. It's important to note that servers are still running the code. The “serverless” name comes from the fact that the tasks associated with infrastructure provisioning and management are invisible to the developer. This approach enables developers to increase their focus on the business logic, and deliver more value to the core of the business. Serverless computing helps teams increase their productivity and bring products to market faster, and it allows organizations to better optimize resources and stay focused on innovation.
@ameenasif
@ameenasif 2 года назад
in the 90Million compariosn , the different is ( 206 - 173 ) = 33$ is just infra structure cost but not the total Operational cost , we need Manpower for support and Admininstration of cluster which is not in case of Lambda . where this additional cost is justified is when you said the brownfield apps that can not run on lambda Containers are the best Option . what are your thoughts on this ?
@joytima7394
@joytima7394 Год назад
I love the way u teach
@tomehta
@tomehta 4 года назад
For your udemy course, which is the programming language used ? is it python or node ?
@cloudwithraj
@cloudwithraj 4 года назад
Lambda examples are in python. However most lectures are about concepts and not specific to any programming language. Note that Serverless is NOT just lambda! Course covers AWS Serverless Architecture, Lambda, API Gateway, DevOps, CI/CD, DynamoDB, SAM, Cloud9, Serverless Frameworks etc.
@sarrafname
@sarrafname 2 года назад
thank you!
@igoralves1
@igoralves1 2 года назад
13:00 - in your model must to take in consideration the complexit of the system. If you use containers must to pay for extra HR to manage servers. The model is nor 100% accurate but it is a good start point. Thanks
@phani9
@phani9 3 года назад
At 13:20 when you are showcasing lower cost for Container approach, we do need to take the cost of resources for managing the Kubernetes clusters/nodes. rit ?
@Yusuf-ok5rk
@Yusuf-ok5rk 3 года назад
0:22 i can't explain how much i appreciate simple note taking like this. some pros keep showing their damn face all the time and it really sucks for the learner. thanks for your effort . it is perfect
@arunmanglick
@arunmanglick 3 года назад
Awesome👏
@rodrigomagalhaes3903
@rodrigomagalhaes3903 3 года назад
Great video congrats!!! Searching for your video about databases. Thank you
@samhunk1227
@samhunk1227 3 года назад
Awesome
@SandeepJan
@SandeepJan 4 года назад
Thanks Raj.. but what if we used fargate option for containers.. how will that differ w.r.t lambda ? That's also serverless isn't it
@tonywang535
@tonywang535 3 года назад
Sorry what does "highly available" mean in this context?
@java-aws-techie
@java-aws-techie 2 года назад
Your depth of knowledge in AWS amazes me every time.
@nlahmi
@nlahmi 2 года назад
I have such shirt too!
@cloudwithraj
@cloudwithraj 2 года назад
PICKLEEEE RICK!!!!!
@shashankjuyal1869
@shashankjuyal1869 4 года назад
Really awesome content!! Thanks
@cloudwithraj
@cloudwithraj 4 года назад
Ty Shashank for the kind words. Feel free to check the other videos in my channel. Thanks again.
@simonsays5569
@simonsays5569 2 года назад
Excellent video, very useful information within 15 mins. Thanks!
@cloudwithraj
@cloudwithraj 2 года назад
Glad you enjoyed it!
@bernardputersznit64
@bernardputersznit64 3 года назад
Much Obliged Sir - thanks for the serious FYI BP
@cloudwithraj
@cloudwithraj 3 года назад
You bet! Thanks for watching!
@Rebel101
@Rebel101 4 года назад
Thank you
@pengli4769
@pengli4769 4 года назад
In last comparison, it is hard to say. Because you didn't include maintenance cost.
@cloudwithraj
@cloudwithraj 4 года назад
You are absolutely right, it is NOT a TCO comparison. I kept it out coz the cost of TCO varies based on many factors. I just wanted to deal with the definite cost for the youtube video. When I do real life cost comparison for enterprise, we do take into account datacenter power input, maintenance cycle, number of ppl maintaining project, doing management task etc. Good point peng, thanks!
@invalidred
@invalidred 3 года назад
Enjoyed your comparison... keep up the good work.
@cloudwithraj
@cloudwithraj 3 года назад
Thanks! 👍
@bharathpr
@bharathpr 4 года назад
Simple and useful
@skohari
@skohari 3 года назад
Extremely helpful... subscribed!
@cloudwithraj
@cloudwithraj 3 года назад
Thanks Shahzeb for the sub!
@kimiochang
@kimiochang 4 года назад
Great video! Learned a lot in less than 15 minutes.
@maslak
@maslak 3 года назад
very helpful. thanks
@cloudwithraj
@cloudwithraj 3 года назад
Glad it was helpful!
@zachzeurcher6450
@zachzeurcher6450 4 года назад
Good job!
@bobonaqa
@bobonaqa 4 года назад
Very nice explained, thank you very much.
@cloudwithraj
@cloudwithraj 4 года назад
Thanks much for the kind words!
@nagesh397
@nagesh397 3 года назад
I love your energetic presentation.
@cloudwithraj
@cloudwithraj 3 года назад
Thank you so much Nagesh!
@agung_laksana
@agung_laksana 4 года назад
Awesome. Thank you very much !
@cloudwithraj
@cloudwithraj 4 года назад
Thanks Agung for the kind words!
@RuslanArifullin
@RuslanArifullin 4 года назад
Nice explanation of both technologies
@cloudwithraj
@cloudwithraj 4 года назад
Thanks Ruslan for the kind words!
@k7babu555999
@k7babu555999 4 года назад
great video
@cloudwithraj
@cloudwithraj 4 года назад
Glad you enjoyed it. Thanks for watching!
@phdandlifeintheus1389
@phdandlifeintheus1389 5 лет назад
Thank you so so much. I learned a lot.
@cloudwithraj
@cloudwithraj 5 лет назад
Ty so much for the kind words, I am so glad you found this video helpful.
@Kdartbe
@Kdartbe 3 года назад
love this thanks
@cloudwithraj
@cloudwithraj 3 года назад
Thanks Belen, glad it was helpful!
@mikegames4659
@mikegames4659 3 года назад
Thanks bro
@cloudwithraj
@cloudwithraj 3 года назад
Any time Mike
@deepakgoel5491
@deepakgoel5491 4 года назад
Very good.
@cloudwithraj
@cloudwithraj 4 года назад
Many many thanks
@chenglare4276
@chenglare4276 4 года назад
Awesome overview! Thank you!
@cloudwithraj
@cloudwithraj 4 года назад
Thanks Cheen for the kind words!
@cue108
@cue108 4 года назад
Awesome overview! Thank you!
@cloudwithraj
@cloudwithraj 4 года назад
Thanks for the kind words! Happy Learning!
Далее
ХОМЯК ВСЕХ КИНУЛ
10:23
Просмотров 635 тыс.
小路飞嫁祸姐姐搞破坏 #路飞#海贼王
00:45
Virtual Machines vs Containers
8:57
Просмотров 908 тыс.
AWS EC2 vs ECS vs Lambda | Which is right for YOU?
16:50
10. Lambda or Fargate for containers?
7:41
Просмотров 2,9 тыс.
Containers on AWS Overview: ECS | EKS | Fargate | ECR
25:10
Serverless Doesn't Make Sense
10:13
Просмотров 366 тыс.
Monolith vs Microservices vs Serverless
23:05
Просмотров 78 тыс.
Containers vs VMs: What's the difference?
8:08
Просмотров 762 тыс.
ХОМЯК ВСЕХ КИНУЛ
10:23
Просмотров 635 тыс.