“I spent 5 minutes porting over my code and the next 10 weeks configuring API Gateway” ...so painfully accurate
@TaoLing4 жыл бұрын
Lmao almost made me spit out my water laughing when I heard that.
@jordixboy4 жыл бұрын
I can relate to that, things get worser if you configure API gateway with terraform.
@markw4964 жыл бұрын
Sounds about right. But once you get the hang of AWS SAM, the magic starts to happen and you realize how much more efficient serverless actually is.
@jimbrown64224 жыл бұрын
You might be in the wrong job
@jordixboy4 жыл бұрын
@@jimbrown6422 you probably never used AWS, maybe you didnt even write a single line of code, lol
@martinsalamanco65954 жыл бұрын
well my experience with serverless is positive, just like with girls: looks attractive and I'm done in just 5 minutes
@remedygrime4 жыл бұрын
😂😂😂😂😂😂
@RuNacken4 жыл бұрын
HAhahaha!
@legendsof5674 жыл бұрын
you're disgusting
@tenstairs4 жыл бұрын
That doesn’t sound very positive
@alurma4 жыл бұрын
you have a bruh
@pharmokan4 жыл бұрын
tl;dw: google cloud functions bad, azure bad, cold starts 1s extra, cloudflare workers ok but not for resource intensive funcs, serverless is a meme
@shubhanksaxena1714 жыл бұрын
Best XD
@muhammadmuzammil21404 жыл бұрын
Actually more like, aws meh, gcf bad, azure worst.
@KangJangkrik4 жыл бұрын
Then let's build our own server
@_lapys4 жыл бұрын
Thank you
@novaria4 жыл бұрын
Thanks
@julescsv70124 жыл бұрын
The problem people have with new technology is , they want to use new technology like the old technology, that is just not how it works. You also might need to revisit the definition of serverless .
@marcelofm804 жыл бұрын
Agree, there are several uses cases where either you keep your function warm due high loads or you dont care about 1-2 second diferences. Als serverless is not only about scaling, but also about not having to manage and support a server
@M4DMEN4 жыл бұрын
Yeah the benefits of serverless cover a whole range: * Speed of iteration * less a priori Setup * managed updates because one still needs to update Kubernetes, patch Docker images and Host OSes (also entails security implications) * maintainability by writing less code, because that script shown in the video would never work anywhere other than in Serverless because you’d need a http server like express, logging, alerting, error handeling, request validation etc
@DodaGarcia4 жыл бұрын
@@marcelofm80 Exactly. Serverless computing has been a godsend to me as someone who uses the cloud almost exclusively for LOB/infrastructure - I get to have isolated processes running 3D processing/rendering/filing/scheduling and all kinds of business housekeeping without having to fuck around with Laravel and create a whole consumer app/API project for a business domain that requires two services as I used to. Containers make it even better since I can reliably run legit 3D software in the cloud without having to depend on webserver shell calls, it sounds like magic sometimes.
@abhinee4 жыл бұрын
Agree
@slapmyfunkybass3 жыл бұрын
Serverless doesn’t exist, and contrary to belief, it will have limited resources. There’s no magic here, it’s still maintained, still crashes, still needs updating. It just means your internal IT staff don’t have to do it. This concept has been around since the 90’s.
@gerbenrampaart80424 жыл бұрын
For image resize you can cache back to S3, most of your images are re-requested a lot in the same formats like list view thumbnails and so on (unless you have an extraordinary use case). After the image conversion, save the file to S3 with the format __.png or something and make your lambda look there first. If it hits, it's superfast and cheap. Thanks for the video, very funny and informative.
@joelv4495 Жыл бұрын
You could even configure CloudFront to check the S3 bucket first, and then ONLY fire the lambda on a cache miss. More performant and also lower cost. It would probably also make sene to add a retention policy that deletes generated images after a period of time.
@koushikshomchoudhury91084 жыл бұрын
I'm using Serverless in production. Sure there are cons, but it is never as bad as some people describe. It has it's own purpose. It is not a replacement but an alternative.
@RandomGuy-co7rq4 жыл бұрын
a very good alternative if your use case allows for it
@pjcollazo83184 жыл бұрын
@@RandomGuy-co7rq What is your use case?
@RandomGuy-co7rq4 жыл бұрын
@@pjcollazo8318 need APIs to post data to a SQL DB frequently. And, access the data infrequently either through a Dashboard UI or through exported CSVs. We had to deliver the product in a week, so it made perfect sense for us. It is very cost effective, and no headaches to maintain the infra.
@slapmyfunkybass3 жыл бұрын
@@RandomGuy-co7rq If you’re posting requests to a db that often then it would have made more sense to do the opposite and have an in-house database server.
@toddzmijewski60023 жыл бұрын
@@slapmyfunkybass Lambdas don't store information. They process a task and return a result. They do not maintain any type of state. Storage of information is a separate topic unrelated to lambda. Lambda can communicate with any storage you desire. Its the people speaking about lambdas in relationship to a database server that everyone will listen to though. Lambda has nothing to to do with databases or storage of state. Lambdas are throw away functions much like an ec2 server *should be. Something that be tossed in the trash and regenerated. Something that easily be distributed, balancing out traffic but thrown in the garbage after and respun up moments later without affecting performance.
@TakinProfit4 жыл бұрын
"5 minutes configuring my code, and then the next 10 weeks configuring API gateway", 😂 Made my morning with that one!
@brzeczyszczykiewicz44764 жыл бұрын
You might be expecting AWS Lambda too be a replacement for a static server but it's not. It's more for handlying async events that you don't needs results for immediately. Sure, you can bend it to pretend it's a replacement for an EC2 instance on a pay as tou go contract but that's not its purpose.
@김도형-g2i4 жыл бұрын
Async for sure, I can totally agree on that.
@gsb224 жыл бұрын
Also for something like that is hit rarely. Lets say u have an api that generates a CPU intensive report but is called rarely or less often compared to ur usual login calls. In that scenario, I would prefer setting up a lambda with giant RAM/CPU instead of setting up an x2.large on aws. People now days are abusing serverless thinking its cool. Sometimes, old school is always the way.
@WunderWafer4 жыл бұрын
The AWS website DOES tout it as a good solution for backends though
@ferociousbiscuit4 жыл бұрын
@@gsb22 Yep. One of the things I tell my development teams who practice resume driven development is they must tell me how moving to a recent technology solves their problems and if it's worth the cost of throwing away a decade of the Ops guys VM experience. There are some things that Lambda has done really well but it's all event based, totally async, or just makes more sense from a pricing model. Everything else is still EC2.
@ferociousbiscuit4 жыл бұрын
@@WunderWafer It does work for backends. Just not traditional ones. I use Lambda w/ S3 and DynamoDB for a lot of processes that aren't utilized enough to justify hourly EC2 costs or can afford the latency of startup. If we're talking an old school jar file requiring MySQL and NFS then I'm going to use EC2.
@winterbird40694 жыл бұрын
I love how with every video I watch I have 0 idea what I'm clicking into but Ben's meme language just clicks and I come out having learned something in a non-mind-numbing way
@violet-trash4 жыл бұрын
Despite all the double-speak he's a lot more straightforward than most tech personalities that say a bounch of empty words either for clout or to sell you something.
@wazbat14 жыл бұрын
Learning stuff is good, but make sure you actually verify this stuff is true. I'm honestly concerned with how much misinformation I'm seeing from Ben
@brainshack90774 жыл бұрын
@@wazbat1 Well I can tell from actually having used azure functions, that I can't share his views, either on azure, nor on serverless in general.
@krabbypattified4 жыл бұрын
I think you answered your own question. Serverless scales 10x more easily and the only downside (cold starts) can be fully removed with provisioned concurrency.
@Manarinni3 жыл бұрын
Pretty much this.
3 жыл бұрын
Yes, but provisioned concurrency is much more expensive... that's true too... I think that like I said in another post, it's about the right tool for the right job. Containers can be a very powerful solution for some things, while lambdas excel at others.
@kylekim58613 жыл бұрын
@ Another good point serverless can save developer time as well (ultimately saving money). There is not a need to make developers maintain servers etc...
3 жыл бұрын
@@kylekim5861 if course that's one of the main advantages, along with scaling...
@decoyslois3 жыл бұрын
Then. Uh. Why not just use a Docker container on a continually runner server? Much less cognitive load.
@THEBEST-lh6pq Жыл бұрын
And 2 years later Ben was right and Amazon Prime moves away from serverless lol
@RogueA.I. Жыл бұрын
I clicked just to see if this comment existed
@noneestl Жыл бұрын
Because of costs, not because of anything in this video which is just lack of experience.
@beachbum868 Жыл бұрын
Serverless is for devs that don’t understand trade offs and assume latency is free.
@luckylukeskywalker Жыл бұрын
Lol.. Now I know why this video seemed familiar - it isn't new :/
@noneestl Жыл бұрын
@@beachbum868 serverless has it's purpose. Don't blame bad dev architectural decisions on the tools. Latency isn't even something to consider in lots of async scenarios.
@ciarancallaghan38104 жыл бұрын
Cold starts are not an issue for the most part. Lambda containers will be reused for several hours so a cold start will just be
@carlosjosejimenezbermudez92554 жыл бұрын
My main conflict with serverless is API Gateway and vendor lock in.
@user-cd6vy2jg6f4 жыл бұрын
@@carlosjosejimenezbermudez9255 just use an ALB you can point it at a lambda instead of API gateway
@dancoman84 жыл бұрын
@@carlosjosejimenezbermudez9255 #AppSync
@markw4964 жыл бұрын
@@carlosjosejimenezbermudez9255 I've been reading a lot of comments on the cons of serverless and this is by far the only one that actually holds. Tbh it's not very hard to convert the code, but biggest con is really spending all the time to learn their infrastructure. There is a serverless framework out there, but unfortunately you have to pay money to maintain that.
@nsubugakasozi71014 жыл бұрын
@Carlos, just go use gcp cloud run. Basically serverless containers. Gets rid of the vendor lockin problem
@ogookafor2137 Жыл бұрын
THIS AGED WELL!
@sirfakealot5041 Жыл бұрын
why?
@Javier_Corado Жыл бұрын
Funny how well this aged. Amazon Prime team surely watched this video.
@Supersonicboom74 жыл бұрын
Two points you should consider 1) Provisioned concurrency makes perfect sense even in serverless architectures, because if you have a large complicated application decomposed into 10's if not 100's of lambdas then you can set the provisioning for each in isolation, this saves $$$ over having to scale a monolithic app. As for serverless vs Docker + Kubernetes there is very little difference as serverless is actually using these technologies under the hood, it's just abstracted away from the dev. If you go into the lambda settings you can see you can upload your own docker image to provide your own runtime even. 2) You don't even need to use provisioned concurrency to avoid cold starts in most cases. You can use a heartbeat method to pre warmup the function by hitting the endpoint and having it short-circuit and instantly return in anticipation before you are going to use it. You can even abstract that away using simple middleware to not convolute the function itself. That is not to say serverless doesn't have it's problems, though each one is something that can be solved once and not have to be thought about again. AWS all the way, as long as you do the leg work to get your infrastructure setup once, repeating the process actually becomes easier than using any 3rd party.
@meamzcs4 жыл бұрын
The main advantage of Docker + Kubernetes imo is that you can run everything locally very easily and that you don't have any vendor lock in.
@Supersonicboom74 жыл бұрын
@@meamzcs That's true, AWS takes fiddling around with to get the entire infrastructure to run locally. I'm not sure about the vendor lock in as you can upload your own docker images to Lambda and your source is Version Controlled anyways. The only thing you are really buying into is the orchestration (Kubernetes part), it would be trivial to switch to Docker + Kubernetes for whatever reason.
@DavidGraySailing4 жыл бұрын
@@Supersonicboom7 sam local start-api. sam local invoke... run tests in the provided container. Pretty easy.
@Supersonicboom74 жыл бұрын
@@DavidGraySailing Pretty easy if you only want to unit test, however becomes much more difficult if you want to locally run the entire stack. Also I believe the functions can only be invoked rather than deployed which means you can't run your application locally and trust me, your front dev's and testers will prefer to have a functioning stack locally than not in case of outages etc.
@shikharraje4 жыл бұрын
" a T H I C C Kubernetes cluster" 😂
@yankittt4 жыл бұрын
"10 weeks configuring the API gateway" 😂😂I can relate brother
@johanlarsson98054 жыл бұрын
Underrated comment right here :)
@optymystyc4 жыл бұрын
Got mine running pretty fast but I was also using the serverless framework.
@hathazy4 жыл бұрын
Just FYI: AWS has a function blueprint which creates a Lambda function integrated with API GW. Done in
@yankittt4 жыл бұрын
@@johanlarsson9805 right on brother😆
@JohnBrosan4 жыл бұрын
@@optymystyc Never had an issue with API Gateway either. I also use serverless framework. Hell, I added a lambda authorizer in no time flat and deployed it. Besides, he keeps talking about cold starts, but if your app is actually being used, its not really a big deal.
@Coder-zx4nb4 жыл бұрын
"If you know the number of requests why wouldn't you use a server?" Cost my friend. Serverless is dirt cheap.
@anthonyskrzypczak94374 жыл бұрын
this right here.
@trustmebro7034 жыл бұрын
Until you scale.
@anthonyskrzypczak94374 жыл бұрын
@@trustmebro703 depends on the use case, some never hit that kind of scale, you really have to be going 24/7 at a constant rate to make serverless cost-ineffective. plus there are many situations where having a cheap entry cost is worth the long-term trade-off of migrating your stack if you get big.
@DodaGarcia4 жыл бұрын
@@trustmebro703 That is true for literally everything though? Server computing is also cheap until you scale, cloud storage is cheaper until you scale, going from outsourced to in-house is just part of the natural evolution of a business. The fact that once you scale high enough it makes more sense to have your own infrastructure is not a flaw, it's the point. It shows that without cloud computing you might never have scaled at all because you wouldn't have been able to afford on-premise when that was the only option.
@DodaGarcia4 жыл бұрын
@@anthonyskrzypczak9437 Most will never hit that kind of scale, and the fact that you can become extremely profitable way before having to worry about the scale economies of owning your cloud infrastructure is nothing short of miraculous.
@feeamarante4 жыл бұрын
Cold starts are not a big deal for production scenarios. Convince me otherwise
@glenkirkup68614 жыл бұрын
@Juan2003gtr shut up "Juan"
@kevinpacheco81694 жыл бұрын
@@glenkirkup6861 shut up “glen”
@quachhengtony76514 жыл бұрын
@@kevinpacheco8169 shut up "Kevin"
@pkop44 жыл бұрын
Why does "production" automatically mean you have consistent traffic from the start? You won't. *Plenty* of requests will be hitting a cold function endpoint. Over and over, new users will be waiting on that cold start and bail your service, or have a perception of "slow". Additionally, if you have "a lot" of traffic, every request above the threshold that 1 function can handle will spin up a new function instance. There is no avoiding this problem, even when your "production" service is succeeding, you'll be hitting cold starts left and right. Serverless functions do NOT make sense for general HTTP request/response endpoints. Mostly they make sense for async event handling/background work, like webhooks or Firestore events etc.
@gethermedel36204 жыл бұрын
if you don't have the skills to manage and maintain servers, sure cold starts won't be a big deal for you, but for your customers/clients? I don't think so. that half a second cold start will pretty much impact your throughput consistency. that's why ALB exists specifically to counter this issue, to not having to deal with scaling issues and cold starts.
@shitshow_1 Жыл бұрын
KZbin @ May, 2023 : It's Perfect time to Recommend this video to everyone
@RatherPleasent4 жыл бұрын
Serverless is pretty good. It's basically microservices with more of a functional aspect. Great for data processing. Also like it more for distributed processes and pub/sub models.
@kumarvishalben4 жыл бұрын
I usually do the provisional thing, where i call my function every 15 minutes. Cause its only 96 calls per day which is 2880 calls per month of 2 million Free calls per month of gcp functions. That way my server is completely scalable and warm all the time.
@leslieamaron36733 жыл бұрын
Wait, this seems interesting, do you have a setInterval API call set up in the front-end? But even that means you need to keep the website open and connected to internet all the time...
@vandermonke4178 Жыл бұрын
my man knew....
@emmanueldoe75174 жыл бұрын
I think the first thing people get wrong about serverless is serverless == lambda, functions etc. Thats the wrong way to think about 'serverless'. I think this thinking has been pushed due to the popularity of frameworks like Serverless Framework. Serverless really just means you shouldn't care about managing your servers. This means load balancing, auto scaling etc are taken care for you. Auto scaling containers (ECS, Fargate, EKS, Swarm) is also 'serverless' ... Lambdas make decoupling services easy but that doesn't mean you should use them to like an actual racked machine server. I've managed monolithic servers the old school way and the serverless way (though usually more expensive) wins every single time. Serverless also includes managed Queues (SQS), Brokers, Databases (DynamoDB), cache memory (ElasticCache) etc .... Its too broad to just say meh. Even the K8s cluster you mentioned can be managed serverlessly.
@M4DMEN4 жыл бұрын
My experience with Serverless is actually extremely positive and we use it extensively at my company. However it forces you to take a different approach to doing things otherwise you will find similar struggles as described above. To give a concrete example to the scenario mentioned in the video: I’d start with asking myself if you really need ALL possible resolutions for an image? What about w=2&h=10000 ? So what we found is that there exist a handful of reasonable defaults (e.g. 5-10). We would then do the resizing after the image was uploaded and put the resized images alongside the original. Then hook up CloudFront with Lambda@Edge to do the dynamic routing to the resized images in S3 or CloudStorage. This way you got a solution that is extremely cheap and incredibly fast (even faster than servers)
@gogoloco4769 Жыл бұрын
How do you know what image size to send to the frontend? Or does the frontend directly request the image with the size specified from the backend?
@the_curious1 Жыл бұрын
@@gogoloco4769 You would usually request content metadata in your Frontend which includes available Image sizes with keys like "thumbnail", "preview" and "original" and then you request the image size that you need. For gallery type apps you would usually have a fixed width which serves as your key.
@kyle-silver4 жыл бұрын
I mainly use lambdas for scheduled tasks. If I only need a bit of code running a couple of times a day, I don’t want to pay for an EC2 instance to be on 24/7
@yeicore4 жыл бұрын
Everytime a new concept is created in software, I think of the french refrain "Why to make it simple when you can make it complicated?"
@philippurwoko4 жыл бұрын
The next hype in backend topic would be codeless. It doesn't mean there is no code. There is a code but you just don't care how the code
@abdicodes4 жыл бұрын
I had a terrible experience with server-less when we decided our solution to slow start is to be periodically requesting our lambdas to keep them "warm". Some of the most insane programming I've done
@devgenesis64364 жыл бұрын
Mostly with .net
@nsubugakasozi71014 жыл бұрын
Hmm.. Still think this is the wrong solution. You may as well provision a full on instance and azure supports that while maintaining the serverless nature of it. More importantly, if you are not running anything mission critical where someone will die, then an extra 900ms isnt the problem. Its probably a front end issue... Displaying some form of loading message etc. Serverless offers way more benefits than just getting rid of servers... Once you appreciate those benefits,you can not go back to procuring full instances
@devgenesis64364 жыл бұрын
Yeah..our entire architechture is on aws and serverless having more than 1k lambdas and other services..thanks for the suggestion but every best practice or solution like provising u mentioned we habe imolemented it all :)
@Radamanthys5004 жыл бұрын
Some companies call this a 'Canary', it's pretty industry-standard to keep applications warm.
@DodaGarcia4 жыл бұрын
Yeah that absolutely defeats the entire purpose.
@ishtiaquekhan11484 жыл бұрын
Serverless is not just about scaling from zero to infinity, it's more about scaling between a to b, and a is not necessarily 0. If you think about that, serverless is pretty handy in case your b is too high and spikes at decent intervals. Apart from that, serverless also helps you create microservices without having to bother much about server maintenance.
@walidchtioui9328 Жыл бұрын
This video aged really really well...
@DrewDoor4 жыл бұрын
TO SORT OUT THE COLD START ISSUE YOU NEED TO DO THE BELOW THINGS. 1. monitor how often you api get Hits. 2. you can use serverless warmup plugin 3. increase you lamda memory size.
@amiralam1786 Жыл бұрын
well i cam here after amazon prime video blog posted about serverless, and yes ben you were right!
@dsh13374 жыл бұрын
And one more BTW with consistent traffic cold-starts are almost non-issue on AWS. Most production deployments do have constant baseline traffic flow, so I wouldn't be discouraged by small-scale synthetic tests.
@karolszymanowski5184 жыл бұрын
I don't think it's a serverless fault for poorly designed architecture and miss-uses. Serverless makes a lot of sense and it's very useful tool. SLS works really well in an event driven architecture where you process data asynchronously. Besides, it is a good choice for running applications on a budget and if fault tolerance is important.
@XDTuber4 жыл бұрын
What is the benefit over a task queue where I can push stuff for work and then grab the result later
@karolszymanowski5184 жыл бұрын
@@XDTuber There is none because the queue system is not a replacement for sls and vice verse. You still need a compute unit to process queued jobs. AWS lambda functions are often used together with sqs, sns, and kinesis (in the aws environment). It's more about ec2 vs lambda vs ecs vs eks etc.
@toddzmijewski60023 жыл бұрын
@@karolszymanowski518 Spot on. Would you rather run a ec2 cluster with loading balancing duplicating a bunch of crap. Would you rather manage a kube cluster with a bunch of convoluted configuration. Would you rather write a function in a familiar language and not worry about load balancing, scaling, kube architecture. Just write a node function push that out and have it available at scale. I rather use serverless framework to write functions in any language not worry about managing complicated configuration or legacy infrastructure requiring manual load balancing patterns / techniques.
@CallousCoder Жыл бұрын
Functions should be locked written in a nice and compiled language that starts quick, rust, zig, c++ that sort of thing. And serverless functions should only be used for those jobs that take more time to run than a connection setup costs you and that do not hit any storage. This is where most architecture goes wrong. Making devices for tasks that run in mere millisecond (100ms) is already the time it costs to connect and accept a TCP connection. So keep that locally, the network overhead is crippling you. Serverless functions that hit storage in parallel will cripple the performance of the storage. So either serially execute those stored by pushing them into a MQ and have a subscriber(s) pick them up and process them. Also be aware that there can be an order to these messages. You can’t update a record before it’s inserted. CRUD is inheritedly serial in nature.
@rohankapur57764 жыл бұрын
Serverless is amazing. Ever since I switched, my life has been 10x better as a dev
@sonmai35264 жыл бұрын
switch from or to?
@Jaxenormus4 жыл бұрын
@@sonmai3526 well be said, it was amazing, so I'm guessing he switched too
@rohankapur57764 жыл бұрын
@@sonmai3526 LOL i meant switch to
@rohankapur57764 жыл бұрын
@Juan2003gtr why? What's wrong with serverless?
@gethermedel36204 жыл бұрын
switch from what?
@ddupinsus4 жыл бұрын
The cold start is definitely something that really bothers most people when they start working with serverless, however, there are simple ways to overcome such complications like a keep-alive function, in AWS you can use a Cloudwatch alarm to send a request to your endpoints to that they continue to be warm forever. One of the main reasons to use serverless is the fact that you don't have to worry about server maintenance (OS updates), load balancing, etc...
@slapmyfunkybass Жыл бұрын
A developer won’t maintain a server, your IT support staff do.
@pavallok Жыл бұрын
@@slapmyfunkybass bro devops was invented more than 10 years ago
@ThatsPety4 жыл бұрын
I think you kind of missed the point. Severless isn't designed for applications where you're looking to optimize perf. It's for stuff where you don't want to deal with a ton of configuration, security, maintenance, etc. It "just works", and there are plenty of use cases, like some internal service for your company, and app's background telemetry, etc. where a 2 second call often isn't a big deal. This is the appeal IMO scalability is just a side benefit and if that's your biggest concern, there are better options for you
@mateowang65704 жыл бұрын
> "scalability is just a side benefit and if that's your biggest concern, there are better options for you" You mean just reaching for K8? Or other "better options"? I think another use-case is building small side-projects/prototypes and don't want/have the time to set up the infra for even a managed k8 cluster (after all, managed != no management/config at all). When all you need is a PoC or something nifty that you've worked on to show potential employers, it doesn't have to be fast and saves a lot of money since 99+% of the time it will just be sitting around, scaled down to 0, waiting for someone to demo it. Whereas with something like K8, it'd be wasting away a lot of server compute time (after all, K8 needs to have at least the control plane powered at all times).
@ThatsPety4 жыл бұрын
@@mateowang6570 thats another good point. Often times serverless isnt even used in production, but even when its not that doesnt mean it cant be useful. For prototyping it can speed things up noticeably!
@mateowang65704 жыл бұрын
@@ThatsPety Yea, for sure. As for better options, did you just mean K8? Curious about any other ways you would approach scalability and high availability.
@carloacebedo69434 жыл бұрын
@@ThatsPety not used in production? You're kidding right? A lot of large companies implement serverless processes somewhere in their system. Check out this is my architecture by AWS in youtube
@ThatsPety4 жыл бұрын
@@mateowang6570 oh btw yeah K8s was the main thing on my mind, and sometimes these providers often have a sort of "app" service that kind of sits in the middle. It does all the scaling for you like serverless, but you upload an entire build like a more traditional system
@sachinbijalwan5814 Жыл бұрын
I am an app developer and had no idea about backend infrastructure. Anyways with google search and chatgpt I built an app which does some processing on images through a firebase cloud function. And I am facing same issue. Some requests take insane amount of times like 5 seconds. Currently I have a traffic of around 150 users per day but if it scales I will need to get more into this. Thanks to Ben and youtube for recommending this
@sergioferreirabatistafilho6954 жыл бұрын
Everyone: Lambdas are so cold Lambda warmup plugin: '-'
@dtinth4 жыл бұрын
To get rid of cold starts I use Google Cloud Scheduler to hit my serverless function every minute. If each call is billed 100ms then it fits very well within the free quota.
@zane621354 жыл бұрын
I actually really enjoy serverless. Yeah it might not be the best in terms of performance, but it's pretty nice being able to write lambda functions and not have to worry about all of the other crap. I don't really want to spend my time reinventing the wheel by setting up and configuring servers. I've done that enough in the past decade. This just feels like the natural progression of back-end development -- let the IT guys handle the server maintenance and we write the application specific code.
@obszczymucha13372 жыл бұрын
A proper engineer that tests and measures his services and makes decisions based on the results. I wish I had people like you working with me. Most of them don't do any of that.
@oussamaghrib45584 жыл бұрын
The first 19 secs can be applied to both (especially the "dip my toe" part)
@alivepenmods Жыл бұрын
You'll fail miserably trying to use serverless to build small webapp/API with constant load. It thrives when stream processing, batch processing, pub/sub and asynchronous treatments in general, when you need to be able to scale by a few orders of magnitude in the blink of an eye and caching is not possible. Yes those type of apps exist, but it's nowhere near the web frontend world.
@cryptonative4 жыл бұрын
Hey Ben. Provisioned functions are not about predicting your traffic but instead predicting the spikes that you may have. In your example you will always have 30 extra functions and you will have warm starts unless you have more than 30 new requests before the new instances are provision. On another note my favourite tool is Cloud run that is not Function as a service but Container as a service. Each container has a max of 80 connections and it solves the issue of having multiple functions that need to be warm eg. for Cloud Functions an API could have 20 cold starts where with Cloud Run only one because the container is reused!
@incubated4 жыл бұрын
we were using cloud functions as the main drivers, and it was a nightmare. even the warm starts aren't guaranteed because with traffic, some users will be moved over to new clusters. the main use case for these, as i see it, is to save costs on requests that aren't essential to the performance or presentation of your service. they can work for prefetching, uploads, and just having data handy for predictable user interaction, but even then cold starts would range from 3-20s for us sometimes. it was nuts
@bentoman4 жыл бұрын
Those poor girls will never get to hear about JavaScript…
@MartinRyleOShea4 жыл бұрын
Cold starts are only an issue if no body is using your functions. Once they are regularly used you almost never pay this startup cost.
@elvicsss4 жыл бұрын
sometimes we just have to embrace the fact that cold booting is okay in certain situations. Like when I'm only building a really simple ecommerce site with the JAMstack and I'm only using like 4 different routes for checkout/order status stuff, in that case serverless seems more attractive that setting up a complete server.
@batmansmk4 жыл бұрын
Setting up a server is like 5min... install nvm (one command) and off you go. Serverless makes easy things easier. But makes complex things impossible.
@pedrol_994 жыл бұрын
@@batmansmk the hard part that serverless abstracts is not creating a server but keeping it up, which is way harder than writing three lines of code to listen on a port
@elvicsss4 жыл бұрын
@@batmansmk love your line at the end, it pretty much sums up my use case. If I just want a couple of services up that execute CRUD transactions, I don’t see the need of mantaining and setting up a VPS or cluster when i can just upload my services alongside my front end on Netlify. Once again it is just my use case and what I personally think it’s the easiest way around. Projects that require a bunch of services across multiple teams, faster response times as possible and overall a more robust architecture would get better benefits of a non-serverless implementation.
@batmansmk4 жыл бұрын
By the time we need more CPUs than what a single ec2 can provide, we are probably way past the simple CRUD on the product too. Serverless is a solution to a rare production problem. With S3 and RDS, maintaining a server takes less time than just watching one video on YT.
@loganwright34234 жыл бұрын
If you're looking at 'serverless' as Lambda functions, then yes, it makes sense that it doesn't make sense. However, Serverless is much more of hooking into the AWS (or GCP, etc) ecosystem to manage your infrastructure and you can take most advantage of it by understanding and working with event driven architecture. DynamoDB with Appsync, the AWS GraphQL solution, is a perfect example of how to make serverless work FAST. It connects directly to DynamoDB and you never have to worry about cold starts (or even internal http requests) and can get some CRAZY fast data requests. Within the Serverless ecosystem, you also have complete insight into what the different segments of your code is doing. Serverless event messaging (whether through SNS or Kinesis) is way better than a home solution and way cheaper than a managed solution. What many people think is 'serverless' is really just writing Lamdba Functions to respond to api-gateway events. When in reality, serverless is an entire ecosystem that you don't have to build or manage - Authentication, Events (almost every event imaginable), Block Storage, Data Storage, Message Queuing, Caching, and a host of other things. If you're building a webserver, yes. A standard webserver is a better idea. But if you're building a heavily integrated application that relies on event driven architecture and automation, serverless can save you tens of thousands of dollars.
@iamawebgeek4 жыл бұрын
I spent 1 month trying to figure out what the heck should I do to deploy my small project. When I saw what can be done with AWS Lamda + API gateway, I realized how tough can be a month of your life, if you are not aware of simple things like serverless.
@octaviancristea13983 жыл бұрын
It depends on the cost of having a server up and running 24/7. The Lambda container stays alive for about 15 minutes so it's warm. Depending on the traffic you got, in theory if you get 1 request each minute your Lambda should never go cold, also if it does get cold it is only impacting the first customer with the initial request and the rest will benefit as the Lambda is now warm.
@thedeegan4 жыл бұрын
Dude... you are shaking trying to get honey out of the bottle... lol >.
@Greenthum64 жыл бұрын
The shake is just a side-effect of developer hand sqeezing things
@claudeb.34734 жыл бұрын
It was crystallized, so he was squeezing the bottle hard. 😂
@schlaus_kwab4 жыл бұрын
Dude... is this the only thing you took away from this video?
@Greenthum64 жыл бұрын
@@schlaus_kwab The discussion started from the most obvious point, honey
@schlaus_kwab4 жыл бұрын
@@Greenthum6 I'm just joking, man. Don't take it too seriously :)
@koffiegast Жыл бұрын
If it isnt directly customer facing, e.g. some dashboard system that only needs to be 'near realtime' or slower. Cold starts are totally OK.
@vojinmilovic5787 Жыл бұрын
Coming from the future, you were right
@archmad2 жыл бұрын
we are currently using Azure, and i missed AWS now. Yes, Azure still not doing anything on cold start
@epicdroid12184 жыл бұрын
Use the Serverless Framework, it'll spin up your Lambda functions APIGW and any other resources you want to use in less than 10 minutes.
@toddzmijewski60023 жыл бұрын
The cold start for go is unbelievable. I''m running an experimental project using go lambda. The cold start for go is beyond fast. I'm running go lambdas that interact with bonsai (elastic search), key spaces (cassandra), and write to s3. I write the entity (master) docs to s3 as json docs. I use elastic to index and search those documents to avoid the astronomic cost of searching s3 docs. Instead of using a relational database to manage the entity and also search it split it between multiple services. One service (s3) to store the json document (master) - instead of relational tables - one single json document. When the file is written to s3 kickoff a lambda in go to index that document inside elastic (bonsai). Not to mention the lambda code being written is so small to do all these things. Combine it with something like bazel run lambdas using any language within one single repo. All this combined with serverless framework. No need to manage some convoluted, expensive kube infrastructure. Instead everything scales without needing to write absurd config files to manage kube. The backend of the project facilities any language I can throw at it. I'm going to be adding dart to compile scss soon. With bazel, aws lambda, and serverless framework that is possible. Its feasible.
@Stone_6244 жыл бұрын
While I've never been a fan of serverless architecture , I feel like your argument against serverless here is basically nothing more than "There's 900 ms of initialization SOMETIMES!" ... Which if your use case for the function is just resizing an image before sending ... what's the practical limitation here? I could see the argument for this IF it was Sequential (If you have 20,000 requests simultaneously and each request has a 900 ms delay before the next request can execute, That's a practical problem), But the point of an Lambda function is that it's parallel , So this fundamentally won't be an issue in the first place. If you have 20,000 requests, And they're handled in parallel all within 1s, I don't think you have an 'actual' problem there. You have a "This is taking 0.8 Seconds when it SHOULD be taking 0.5 Seconds" problem because ... Computer scientists are strangely obsessed with shaving all the ms they can from anything they do ever, regardless of whether the impact can be seen with the naked eye. Granted, There are real-time applications where 'off by 500ms' can make a practical, real world, catastrophic difference, For example Vehicle/Aircraft operation systems (Self driving cars comes to mind), Medical Equipment (Think remotely operated surgical robot or anything exposing radiation or medication), Scientific Research Equipment / Programs etc. Injecting a patient with drugs for an extra 500ms could kill someone . Stepping on the brakes 500ms too late could kill someone . Taking 900 ms to resize an image for the webpage to save 3Mb of network traffic isn't going to kill anyone.
@nsubugakasozi71014 жыл бұрын
Absolutely agree. He didn't explain why the 900ms for the first request is really a problem. There is nothing mission critical that will fail because of those 900ms🤦🏾♂️🤦🏾♂️
@Sasataf4 жыл бұрын
There are several fundamental flaws with this statement. Unsure of your experience in development, so apologies if it sounds patronizing. Shaving ms is not a strange obsession. It's a legitimate requirement. This depends on the stage of the project of course. For example, if you're building a MVP or prototyping, then it doesn't matter. But in production, you have to consider UX, costs and other restraints or requirements. Obviously, there is a point when the cost-benefit is not worth it and you're just trying to squeeze blood from a stone. Determining acceptable performance by measuring risk to life (i.e. if it isn't going to kill anyone then it's okay) is a, let's say, strange metric to be using. The key metric is usability, e.g. what is comfortable to the user and this depends on use case. For example, a user may think 900ms may be okay for resizing an image, but totally unacceptable for populating a dropdown box. Although it would be amusing to watch a product manager to react to someone saying "it's not like the extra delay is going to kill anyone."
@nsubugakasozi71014 жыл бұрын
@@Sasataf hmm... I still don't see anything you have explained that makes 900ms for the first request a problem. This isnt a constant 900ms for every request... Just the first one.if those additional 900ms are a show stopper then you definitely have bigger issues in your system. Most times this due to some bad UI/UX implementation where slow network requests are not accounted for and the UI hangs without any loading signal given to the end user. Besides all this, there are serverless options that cost a bit more but get rid of this warm up issue. FYI We have all built production systems.
@Sasataf4 жыл бұрын
@@nsubugakasozi7101 My response wasn't to you, it was to the OP. My bad, I could have made that clearer.
@nickabbott30814 жыл бұрын
It definitely isn’t a strange obsession... as much as a 200ms change sounds small, it is very noticeable when you’re actually interacting with it. I work for a financial company and every year all the financial companies compete for the JD Power awards. It is a consistent trend that when response times go up (even if it’s only a few hundred ms) your JD Power rankings will suffer and when your response times go down your JD Power rankings will improve. This is true even for categories that aren’t directly tied to performance. Even if you’re not consciously recognizing a latency difference you will subconsciously. Making your website feel responsive and “snappy” will improve the user experience far more than you’d expect and that is impossible to do without fast APIs. In this case it may not be an issue. You should resize once and save the different sizes for distribution at a later date so it’s a one-time time sink. However, for APIs that get called on a more regular basis adding a few hundred ms to the response time would be completely unacceptable
@JAlexanderCurtis Жыл бұрын
Serverless is really good to use as glue between cloud services (take something out of RDS and put it in s3 for example). But to actually replace and application or service as serverless causes more problems than it solves. Yes, it is possible. And yes XYZ company did it one time. But it is more trouble than it is worth. Server OS' are so stable nowadays that there is already minimal overhead in your VMs, all you gain from serverless is other complexities like coldstarts.
@kaushiks874 жыл бұрын
If you are getting 30 requests all the time, then the first 30 cloud functions are gonna experience the cold start. Subsequent requests will be warm. So from my experience it is okay to use serverless in those situations. And the image resizer module would be a perfect candidate imo. However, the part where serverless sucks in my opinion is where you have to process long running tasks - say > 10 minutes. In such cases you have to figure out how to break up your logic into smaller pieces, communicate between them via a message queue etc.
@landon22193 жыл бұрын
7:10 can someone explain this piece to me? I was under the impression that a serverless function won't spin up a new version of your function for each request, but will rather run the same function for multiple users until that function hits max load, then start up a new one. So if you get 30 requests per second, it should only call one function, right (unless your api is really bad and can't handle 30 requests/second)? so in that example, wouldn't you just provision a certain number of functions for your baseline traffic, then let the functions scale up from there if you get more traffic?
@melchoir554 жыл бұрын
Serverless is a new paradigm and you seem to be examining it from the perspective of a different paradigm. You sound like a monolith developer arguing about how bad microservices are in 2012.
@juliansoto26513 жыл бұрын
Microservices suck tho. Just like OOP, it was a funny experiment, but it's time to put an end to it. I'll never get tired of saying how bad those two things are.
@pauolive7239 Жыл бұрын
@@juliansoto2651 Why would you say this? Could you expand and elaborate? I am legit curious. Thanks
@zesky6654 Жыл бұрын
@@mjphillips6619 having worked with microservises in enterprise, it's a really nice fit for big applications that handle a lot of different business logic. It's very efficient development-wise if that matters, you can hammer out code like on a factory line. Debugging though is a pain.
@MiguelMejia85 Жыл бұрын
Even Prime Video is going back to monolithic architecture. So microservices are not the answer to everything.
@danielgruszczyk2232 Жыл бұрын
You are focusing too much on synchronous API calls. If you are supporting your API with serverless functions then yes - cold starts suck. If, on the other hand, you are using serverless for async operations in event-driven systems, where response times do not exist - then cold-starts do not matter that much. Try this example - API running on a kubernetes cluster (or ECS, whatever you like), at the point of receiving requests it publishes an event to SNS, you have SQS subscribed to this and Lambda triggering off that event, processing some data asynchronously. Or another one: API call -> kubernetes -> something saved into DynamoDB -> Lambda triggered from DynamoDB stream. Real world examples would be: user buys something in an online store, you do not need to generate an invoice "in real time" before showing them purchase summaary. A lambda asynchronously triggers of that event, generates the invoice and that gets emailed. THIS IS where serverless TRULY SHINES.
@christophercaldwell66414 жыл бұрын
Lambda and GraphQL is a great combination. I can’t speak for the other serverless providers, but I have had a great experience with Lambda and GraphQL. You have to think differently when using Lambda as an api. Minimize bundle size, declare as much as you can outside of the handler, etc. There’s a ton of factors that go into the actual speed of your response. If your Lambda is 20mb, that 20mb needs be downloaded from S3, mounted in the Docker container, and ran. It adds up. Using webpack is a huge boost to your bundle size. implementing tree shaking at work has helped me reduce Lambda sizes from 20-30mb to 200-400kb. Same functionality, but with the serverless first mindset. GraphQL really shines because you keep invoking the same Lambda over and over. Ours are in a vpc which causes longer cold starts, but keeps the container alive a lot longer, sometimes 2x the life of one outside the vpc. It all comes down to optimizing the code for the serverless platform. If you write static server style code, and throw it in a Lambda, you’ll have a bad time.
@arvi88434 жыл бұрын
Are you using Apollo GraphQL?
@pierrega34184 жыл бұрын
People dislike serverless because they don't know it well enough, but it's understandable, it has relatively poor ressources online and we need to learn lot of things to make something serious. But once you master it, all becomes easier
@christophercaldwell66414 жыл бұрын
@@arvi8843 No, the Apollo Lambda package is over 1mb, and requires GraphQL as a peer dependency. I just use the plain ‘grpahql’ package. If the Lambda doesn’t need an sql db package like ‘pg’, the bundle size is usually 100-200kb.
@arvi88434 жыл бұрын
@@christophercaldwell6641 Thanks!
@djordjenikolic65604 жыл бұрын
Hi Ben For resizing, if you use S3, you can create S3 and then create S3 Lambda Trigger. Every time you upload to original S3, it can store image in other S3 as resized image. Lambda uses NodeJS ofc. Idk if it suits ur usecase, but its good approach.
@djordjenikolic65604 жыл бұрын
@s bright If you are interested in Node you can use this one www.udemy.com/course/aws-lambda-serverless-architecture/
@djordjenikolic65604 жыл бұрын
@s brightThe best I found are from dynamodb book from Alex DeBrie. You need to pay extra to get examples, but you get like 6 boilerplate apps with serverless framework, nodejs and dynamo with best practices that are explained in the book. Best book I've ever read most likely.
@GarethMcCumskey4 жыл бұрын
Hey there. I'm a member of the Serverless Framework team and found your video interesting. I thought I'd offer a little more info. First of all AWS's developer experience is not the greatest which is why the Serverless Framework is so popular. It makes Serverless a lot easier. But Serverless is not as affected by cold starts as you may think and most people do not go with Serverless for auto scaling. Also the use of permanently available kubernetes gets very expensive very quick. If you'd like to chat more let me know. I've built many serverless solutions that perform incredibly and worked with many other teams who experience the same.
@mridulbarman0273 жыл бұрын
Hello, I'm facing big trouble with cold start of serverless functions like google cloud functions or aws lambda, and gcloud function is very much slower then aws lambda. Is there any solution?
@hatem.tommy.lamine Жыл бұрын
I don't think this video still holds up in 2023
@luxxa4 жыл бұрын
You are joking, but after my latest blasphemies and insults about serverless in the last 2 months, I just decided (2 hours ago) my self to port 130 functions (they take 1 minutes to start) to a classic rest apis, You know what they suggest you in order to fix the slow start? To enable Premium features, which means to have 24hr running server, well, then, where's the gain with serverless?
@luxxa4 жыл бұрын
And yes, company forced me to use serverless, and yes, 130 functions are too much for serverless.
@JuanGarcia-qd8ig4 жыл бұрын
@@luxxa Idk man, i think serverless is good enough for notifications and simple mobile apps. Maybe is not the right tool for your project. There is some SERIOUS limitations with things like firebase.
@8X2X4 жыл бұрын
Language, used framework?
@fransafu4 жыл бұрын
@@luxxa So, now you need to maintain 130 functions (distributed system problem)?
@luxxa4 жыл бұрын
@@fransafu no, I am migrating to simple rest controllers
@eduardomora95864 жыл бұрын
I think use cases really matters. I used functions as a way to make background processes that don't need to be done in real time. I would queue messages in a pub sub and functions picks them up and processes them for something like email or SMS.
@mehmetesen93854 жыл бұрын
Ben: "There are two things I don't understand, girls and serverless..." Angular: "Am I joke to you?"
@kahnfatman Жыл бұрын
AWS is a great way (or a gateway) for you to get Jeff'ed.
@ChessFlix4 жыл бұрын
I've been seriously considering where to deploy. Came across holo. I'd be interested in some secondary opinions from pros.
@FrederickAlvarez_4 жыл бұрын
I use Oracle Cloud, pretty good so far, I have been using it for a year, I started with the free tier :D
@willinton064 жыл бұрын
I’ve been working with azure for a couple months now and I can’t complain
@cameronthompson12754 жыл бұрын
Netlify offers a ton of features for free!
@AbhishekAngira4 жыл бұрын
@@cameronthompson1275 I compared it to vercel, which seems better (money wise) for scaling apps.
@Godrose4 жыл бұрын
That’s an interesting overview. I have experienced similar issues and ended up with writing a “keep-me-warm” lambda. Comparing performance and cost made this approach look better as opposed to “cold-start-it-is” one
@tyronestephen42634 жыл бұрын
You only spoke about one benefit, the auto-scaling. What about the cost vs time thing though? A lot of use cases don't need an instant response.
@toddzmijewski60023 жыл бұрын
The wonderful thing about lambdas is that everyone can be in a different language. If you want to run a program in java you can. If you want to run another in .net you can. If you want to run another in python you can. Another in node js fine. Even though they are each in a different language they are able to communicate with one other. Not only communication with one another but integration with aws itself. Most aws services expose events that can be interacted with using lambda. For example, you can run a lambda in response to an upload to an s3 bucket. You can run a lambda as a side effect to many different aws service actions.
@CodingPhase4 жыл бұрын
I personally like AWS.. I can't use anything from google cloud their UI sucks same as AWS but I feel there's more resources for AWS when I get lost... again lol I'm no expert with cloud or serverless so I go for which one I can survive on
@JeanRauwers4 жыл бұрын
Ben just wondering if that was a bad design choice. I would approach it differently by creating an image factory where it takes on (upload) the image process it via lambda call and generates 3 (or more if needed) different files based on the resolutions and it would add these files to an S3 bucket which you can use as CDN to consume the images from.
@youn17004 жыл бұрын
So, for instance... my work has a AWS serverless functions for loan originations. To run the entire system for a month costs about 250.00/month. The server we had originally running this was a 40,000 server with a 750.00/month electric bill. So, you make a judgement. Which is more cost effective.
@bschs Жыл бұрын
WELL WELL WELL SIR
@redstoneprojectrules4 жыл бұрын
Some applications within our companies call function api's which we didn't have to maintain for years now, also billing $0 as they only get called every now and then. Having these as an application on our clusters would be more operation intensive.
@MarkDeibert4 жыл бұрын
So I get from this that server-less makes total sense to you ;-)
@koistya4 жыл бұрын
Note that when the resized images are being properly cached on both CDN and storage bucket levels, cold starts won't be that relevant anymore. See "image-resizing" npm module.
@abdullahchauhan4 жыл бұрын
So is there any chance we'll get another Flutter/React Native update. Love your unbiased opinion on these two!
@aj.arunkumar4 жыл бұрын
his twitter bio is 'married to reactjs'. i dont think his opinions are unbiased. I come here for the angular jokes lol
@abdullahchauhan4 жыл бұрын
@@aj.arunkumar I know. But he's already offered two videos on these techs and both are good NOT like appreciating the one because of fan boy and ignoring the other, so that's why I asked!
@bswill50774 жыл бұрын
I doubt it will be unbiased lol. Obv he's married to ReactJS. You should look elsewhere.
@martinn.60824 жыл бұрын
What about Ionic?
@abdullahchauhan4 жыл бұрын
@@martinn.6082 Ionic - Rendering Webview is not the talk here and also Ionic is not even close to Flutter/RN as far as I know.
@nishant810125 Жыл бұрын
2 years later, he is proved to be correct as amazon prime dumped serverless
@PatrickPalmer914 жыл бұрын
I really hope no one follows your computing advice, and this is all trolling
@DodaGarcia4 жыл бұрын
This video reminded me of another one where some guy tried to make the case that object oriented programming was bad, and his evidence were all examples of very simple procedural functions for which OOP was obviously overkill - which would be like saying cars are useless because bikes are much cheaper and perfectly enough for reaching a destination four blocks away. The image resizing thing is especially bizarre since the reason why image resizing is such a typical serverless use case is that it can be asynchronous, making the whole cold start rant irrelevant. So instead of proving a legitimate downside of serverless that example just made it seem like he doesn't even get the point of it. It's also kind of weird that these types are talking as though VPS-based computing is going anywhere? I don't doubt some devs may buy so much into the hype that they end up recreating a much less organized and responsive version of their full RESTful API on Cloud Functions and that is certainly silly, but serverless endpoints are fantastic for isolated pieces of functionality. I don't see why be bothered about an extra option when the previous one is still available.
@franksonjohnson4 жыл бұрын
@@DodaGarcia Was that the Brian WIll video "Object-Oriented Programming is Bad" by any chance? I am a pretty ignorant developer and that video started tilting me into functional programming, that sounds like a bit of context I could have missed from his argumentation. I would love to learn more about OOP but I haven't come across any solid intermediate deep-dives into it.
@DodaGarcia4 жыл бұрын
@@franksonjohnson Interestingly enough it wasn’t that one but another one by that same guy, called “object oriented programming is embarrassing” - I’ll watch the one you mentioned to see if he makes different points. When it comes to tilting though, there’s really no reason to choose between them because OOP expands on FP rather than replacing it. Functional programming has seen a big resurgence recently with serverless computing and the popularization of machine learning. It’s practical and intuitive in how it follows a linear set of instructions, and enough for a lot of uses. OOP is a way to design your code that mimics how in the real world things belongs to categories and share properties and behaviors within them. It’s usually the standard for any project that’s expected to grow in complexity over time since it allows for more organized and reusable code by way of those hierarchical inheritances. So it makes sense to get used to functional programming first and then familiarize yourself with OOP as needed, if nothing else because it’s how most external libraries are structured. If this was about choosing a first language to learn it would make more sense to talk pros and cons, but when it comes to programming paradigms, most developers aren’t in “team OOP” or “team FP” any more than handymen divide themselves between hammer fans and screwdriver fans. They just use the more appropriate tool for the job at hand. This is not specifically about OOP but my favorite development channel is @fireship, it offers a good mix of practical tutorials and language-agnostic design pattern lessons, some of which interview-oriented. (I’m sorry if any of this was already obvious to you, I don’t know how experienced you are and erred on the side of thoroughness.)
@franksonjohnson4 жыл бұрын
@@DodaGarcia No very helpful, thank you! I've always felt tension with the functional gospel on no side-effects and whatnot as a web developer, because pretty much any DOM manipulation is a side effect right? I like the handyman metaphor a lot.
@AIxGEEK3 жыл бұрын
agree
@RisingDad3 жыл бұрын
You nailed it. I had a project that would sit and do nothing, then report hundreds of orders a second for about five minutes. That's perfect for serverless, right? The first lambda would get wrecked before the second one could even come up. We did some kind of always warm provisioning, but it would destroy any number of lambdas except the actual number we needed. So the on-the-fly provisioning was worthless. We came up with a way to warm up lambdas right before the data was going to hit, but sometimes it would get cold start anyway, like it either deprovisioned it in one minute or it started provisioning extras right away. We ended up using docker swarm or whatever it was called (this was before Kubernetes was popular). That did not have a cold start problem, was very easy and roughly the same price.
@ryo_ikarashi4 жыл бұрын
In order to understand girls and serverless, you gotta learn to be a bit patient. 😂😂
@toddzmijewski60023 жыл бұрын
Not really. Servereless framework. Write whatever function you want and push it out as an aws lambda.
@Cderry954 жыл бұрын
Azure offer keeping their functions warm on one of pricing teirs. Also, once a function is called it is warm for 15 mins, so a lot of people will just call their functions once every 15mins to keep them warm. The biggest win for severless is the no worries about infastructure, just write your code put it on severless.
@ClayDanford4 жыл бұрын
You're also removing another benefit, which is that you don't have to manage servers. Regarding k8s, that's a lot of management overhead also.
@Nafana4 жыл бұрын
There's managed k8s platforms, even so, you're still right. Managed != no managing.
@Nafana4 жыл бұрын
@human bean I agree
@losthighway48402 жыл бұрын
you can just have a heartbeat type lambda that runs on a schedule that just touches your other lambdas to keep them warm.
@stevenstaley94424 жыл бұрын
3 things that will help with those cold starts: 1) bump up the memory. It might even be cheaper if your code doesn't run for as long. 2) compile with webpack 3) choose provisioned concurrency to keep your lambdas warm. Wish you'd dived a bit deeper, but I know it's a lot.
@NS388454 жыл бұрын
Adding a CDN is what makes this really make sense in Lambda/serverless. Assuming the same size images are being requested over and over, it'll only be the first request for a given image size that will be slow. All subsequent requests will be fast and cheap because they'll be straight from the CDN. Then you aren't paying for a server/cluster/whatever sitting around waiting for someone to request a new size.
@hugoreinacruz45274 жыл бұрын
I recommend use Webassembly with Rust, that's the right way into serverless, you'll notice the difference
@MrJester8314 жыл бұрын
Rust is next level for serverless!
@sots_music4 жыл бұрын
Well you do have a good point, one of the things many people advocate is that servereless functions should be small and fast so use cases such as the one you have pointed out are better handled by a convensional provisioned server. However use cases that are less computationally demanding (e.g. updating a specific user entity) and are performed many times by users can be consided candidates for serverless lambda functions. This has one advantage conventional servers will not be bombadered by large amounts of requests for small computational workloads and thus can be utilised for more computationally expensive use cases. Whilst serverless functions can do most of the simple grunt work. This is also very evident from the timeouts lambda functions have. Cloud providers do not want you to use them for demanding use cases, you have services like ECS/Fargate for that.
@JJTrades_X4 жыл бұрын
You should’ve used Google Cloud App Engine instead. No cold start, scales.
@Abu_Shawarib4 жыл бұрын
Even GAE have cold start unless you specify minimum number of instances running.
@JJTrades_X4 жыл бұрын
@@Abu_Shawarib Default instances is 1
@Bokbind4 жыл бұрын
@@Abu_Shawarib You can send warmup requests ahead of time, luckily.
@samplebriefmint42044 жыл бұрын
Perhaps a noob question, but isn't the serverless he's talking about there just about outsourcing the server, ie using AWS as a server, instead of basically setting it up yourself? Basically, it being not *really* server*less*?
@CallumAtwal4 жыл бұрын
I was expecting something like WebAssembly
@CitadelOfLukes4 жыл бұрын
Out of curiosity, wouldn't it make more sense to create an endpoint that is designed to optimize your image then store it in something like S3 rather than re-optimizing an image on every single request? That seems like a lot of extra compute work that could be mitigated by using static assets more optimally. If you were pretty set on optimizing the flow as you detailed, you could also create an endpoint that just returns 200 and a blank string in the same lambda. With that you could setup a scheduler to hit that once per minute to keep your function always hot to your cold start timing.
@aniketfuryrocks4 жыл бұрын
Exactly
@romeostoll40564 жыл бұрын
Good point, but he would have to decide for each image the width and height statically and this is actually what he wants to compress dynamically. Maybe for some images the same dimensions are with a high probability requested and for those your optimisation is probably better.
@exactzero4 жыл бұрын
I think he meant dynamically resizing images depending on the dimensions provided by the request.
@CitadelOfLukes4 жыл бұрын
@@romeostoll4056 You could still design the endpoint to accept parameters that would map to the expected or desired size. It's common to create a standard size to name convention and output not 1 but multiple versions of an image. For example to hyper optimize i might create a 2x, 1.5x, 1x, 0.5x, and 0.25x image pattern that outputs three versions of each image that have progressively better quality settings. In this way I can target 15 versions of the same static image programmatically. I get near instant loads on smaller lower quality images and I can choose to progressively load in images of increasing size and quality as needed to give a great user experience. If we extrapolate on the honey/molasses analogy Ben used, I COULD squeeze the bottle until I am shaking and maybe have some small success. However if I take the time to understand the problem fully a different approach like heating the bottle correctly will make the fluid flow more freely and thus give me largely optimal results. Also, interestingly to that analogy i can store the honey in a cold state when not in use and only heat it up as needed to access the contents.
@romeostoll40564 жыл бұрын
@@CitadelOfLukes Thank you for elaborating your answer in more detail.
@carlosalba96904 жыл бұрын
I talked about the cold start issue about a year ago with someone who worked on the sandboxing of cloudrun (like functions but for docker containers) and he said file and dependency indexing was the killer in cold starts he mentioned using precompiled binaries was the way to go.