Serverless Doesn't Make Sense

2020 ж. 14 Қаз.
362 133 Рет қаралды

Every time I try serverless it doesn't make any sense to me and just feels kinda of meh.
links from video:
mikhail.io/serverless/coldsta...
mikhail.io/serverless/coldsta...
mikhail.io/serverless/coldsta...
#benawad #serverless ​

----
Follow me online: voidpet.com/benawad
#benawad

Пікірлер
  • “I spent 5 minutes porting over my code and the next 10 weeks configuring API Gateway” ...so painfully accurate

    @deeves3650@deeves36503 жыл бұрын
    • Lmao almost made me spit out my water laughing when I heard that.

      @TaoLing@TaoLing3 жыл бұрын
    • I can relate to that, things get worser if you configure API gateway with terraform.

      @jordixboy@jordixboy3 жыл бұрын
    • 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.

      @markw496@markw4963 жыл бұрын
    • You might be in the wrong job

      @jimbrown6422@jimbrown64223 жыл бұрын
    • @@jimbrown6422 you probably never used AWS, maybe you didnt even write a single line of code, lol

      @jordixboy@jordixboy3 жыл бұрын
  • well my experience with serverless is positive, just like with girls: looks attractive and I'm done in just 5 minutes

    @martinsalamanco6595@martinsalamanco65953 жыл бұрын
    • 😂😂😂😂😂😂

      @remedygrime@remedygrime3 жыл бұрын
    • HAhahaha!

      @RuNacken@RuNacken3 жыл бұрын
    • you're disgusting

      @legendsof567@legendsof5673 жыл бұрын
    • That doesn’t sound very positive

      @tenstairs@tenstairs3 жыл бұрын
    • you have a bruh

      @alurma@alurma3 жыл бұрын
  • 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.

    @gerbenrampaart8042@gerbenrampaart80423 жыл бұрын
    • 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.

      @joelv4495@joelv44958 ай бұрын
  • 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

    @pharmokan@pharmokan3 жыл бұрын
    • Best XD

      @shubhanksaxena171@shubhanksaxena1713 жыл бұрын
    • Actually more like, aws meh, gcf bad, azure worst.

      @muhammadmuzammil2140@muhammadmuzammil21403 жыл бұрын
    • Then let's build our own server

      @KangJangkrik@KangJangkrik3 жыл бұрын
    • Thank you

      @_lapys@_lapys3 жыл бұрын
    • Thanks

      @novaria@novaria3 жыл бұрын
  • "5 minutes configuring my code, and then the next 10 weeks configuring API gateway", 😂 Made my morning with that one!

    @TakinProfit@TakinProfit3 жыл бұрын
  • 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 .

    @julescsv7012@julescsv70123 жыл бұрын
    • 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

      @marcelofm80@marcelofm803 жыл бұрын
    • 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

      @M4DMEN@M4DMEN3 жыл бұрын
    • @@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.

      @DodaGarcia@DodaGarcia3 жыл бұрын
    • Agree

      @abhinee@abhinee3 жыл бұрын
    • 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.

      @slapmyfunkybass@slapmyfunkybass3 жыл бұрын
  • 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.

    @koushikshomchoudhury9108@koushikshomchoudhury91083 жыл бұрын
    • a very good alternative if your use case allows for it

      @RandomGuy-co7rq@RandomGuy-co7rq3 жыл бұрын
    • @@RandomGuy-co7rq What is your use case?

      @pjcollazo8318@pjcollazo83183 жыл бұрын
    • @@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.

      @RandomGuy-co7rq@RandomGuy-co7rq3 жыл бұрын
    • @@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.

      @slapmyfunkybass@slapmyfunkybass3 жыл бұрын
    • @@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.

      @toddzmijewski6002@toddzmijewski60022 жыл бұрын
  • 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.

    @brzeczyszczykiewicz4476@brzeczyszczykiewicz44763 жыл бұрын
    • Async for sure, I can totally agree on that.

      @user-qk4tx9jc4m@user-qk4tx9jc4m3 жыл бұрын
    • 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.

      @gsb22@gsb223 жыл бұрын
    • The AWS website DOES tout it as a good solution for backends though

      @WunderWafer@WunderWafer3 жыл бұрын
    • @@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.

      @ferociousbiscuit@ferociousbiscuit3 жыл бұрын
    • @@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.

      @ferociousbiscuit@ferociousbiscuit3 жыл бұрын
  • And 2 years later Ben was right and Amazon Prime moves away from serverless lol

    @THEBEST-lh6pq@THEBEST-lh6pq Жыл бұрын
    • I clicked just to see if this comment existed

      @RogueA.I.@RogueA.I. Жыл бұрын
    • Because of costs, not because of anything in this video which is just lack of experience.

      @noneestl@noneestl Жыл бұрын
    • Serverless is for devs that don’t understand trade offs and assume latency is free.

      @beachbum868@beachbum868 Жыл бұрын
    • Lol.. Now I know why this video seemed familiar - it isn't new :/

      @luckylukeskywalker@luckylukeskywalker Жыл бұрын
    • @@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.

      @noneestl@noneestl Жыл бұрын
  • 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.

    @krabbypattified@krabbypattified3 жыл бұрын
    • Pretty much this.

      @Manarinni@Manarinni2 жыл бұрын
    • 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.

      2 жыл бұрын
    • @ Another good point serverless can save developer time as well (ultimately saving money). There is not a need to make developers maintain servers etc...

      @kylekim5861@kylekim58612 жыл бұрын
    • @@kylekim5861 if course that's one of the main advantages, along with scaling...

      2 жыл бұрын
    • Then. Uh. Why not just use a Docker container on a continually runner server? Much less cognitive load.

      @decoyslois@decoyslois2 жыл бұрын
  • THIS AGED WELL!

    @ogookafor2137@ogookafor2137 Жыл бұрын
    • why?

      @sirfakealot5041@sirfakealot504111 ай бұрын
  • "If you know the number of requests why wouldn't you use a server?" Cost my friend. Serverless is dirt cheap.

    @Coder-zx4nb@Coder-zx4nb3 жыл бұрын
    • this right here.

      @anthonyskrzypczak9437@anthonyskrzypczak94373 жыл бұрын
    • Until you scale.

      @trustmebro703@trustmebro7033 жыл бұрын
    • @@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.

      @anthonyskrzypczak9437@anthonyskrzypczak94373 жыл бұрын
    • @@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.

      @DodaGarcia@DodaGarcia3 жыл бұрын
    • @@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.

      @DodaGarcia@DodaGarcia3 жыл бұрын
  • "10 weeks configuring the API gateway" 😂😂I can relate brother

    @yankittt@yankittt3 жыл бұрын
    • Underrated comment right here :)

      @johanlarsson9805@johanlarsson98053 жыл бұрын
    • Got mine running pretty fast but I was also using the serverless framework.

      @optymystyc@optymystyc3 жыл бұрын
    • Just FYI: AWS has a function blueprint which creates a Lambda function integrated with API GW. Done in

      @hathazy@hathazy3 жыл бұрын
    • @@johanlarsson9805 right on brother😆

      @yankittt@yankittt3 жыл бұрын
    • @@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.

      @JohnBrosan@JohnBrosan3 жыл бұрын
  • 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

    @winterbird4069@winterbird40693 жыл бұрын
    • 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.

      @violet-trash@violet-trash3 жыл бұрын
    • 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

      @wazbat1@wazbat13 жыл бұрын
    • @@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.

      @brainshack9077@brainshack90773 жыл бұрын
  • 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

    @ciarancallaghan3810@ciarancallaghan38103 жыл бұрын
    • My main conflict with serverless is API Gateway and vendor lock in.

      @carlosjosejimenezbermudez9255@carlosjosejimenezbermudez92553 жыл бұрын
    • @@carlosjosejimenezbermudez9255 just use an ALB you can point it at a lambda instead of API gateway

      @user-cd6vy2jg6f@user-cd6vy2jg6f3 жыл бұрын
    • @@carlosjosejimenezbermudez9255 #AppSync

      @dancoman8@dancoman83 жыл бұрын
    • @@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.

      @markw496@markw4963 жыл бұрын
    • @Carlos, just go use gcp cloud run. Basically serverless containers. Gets rid of the vendor lockin problem

      @nsubugakasozi7101@nsubugakasozi71013 жыл бұрын
  • 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.

    @Supersonicboom7@Supersonicboom73 жыл бұрын
    • 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.

      @meamzcs@meamzcs3 жыл бұрын
    • @@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.

      @Supersonicboom7@Supersonicboom73 жыл бұрын
    • @@Supersonicboom7 sam local start-api. sam local invoke... run tests in the provided container. Pretty easy.

      @DavidGraySailing@DavidGraySailing3 жыл бұрын
    • @@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.

      @Supersonicboom7@Supersonicboom73 жыл бұрын
  • " a T H I C C Kubernetes cluster" 😂

    @shikharraje@shikharraje3 жыл бұрын
  • 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.

    @RatherPleasent@RatherPleasent3 жыл бұрын
  • Cold starts are not a big deal for production scenarios. Convince me otherwise

    @feeamarante@feeamarante3 жыл бұрын
    • @Juan2003gtr shut up "Juan"

      @glenkirkup6861@glenkirkup68613 жыл бұрын
    • @@glenkirkup6861 shut up “glen”

      @kevinpacheco8169@kevinpacheco81693 жыл бұрын
    • @@kevinpacheco8169 shut up "Kevin"

      @quachhengtony7651@quachhengtony76513 жыл бұрын
    • 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.

      @pkop4@pkop43 жыл бұрын
    • 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.

      @gethermedel3620@gethermedel36203 жыл бұрын
  • 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)

    @M4DMEN@M4DMEN3 жыл бұрын
    • 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?

      @gogoloco4769@gogoloco476910 ай бұрын
    • ​@@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.

      @the_curious1@the_curious19 ай бұрын
  • Funny how well this aged. Amazon Prime team surely watched this video.

    @Javier_Corado@Javier_Corado Жыл бұрын
  • 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.

    @kumarvishalben@kumarvishalben3 жыл бұрын
    • 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...

      @leslieamaron3673@leslieamaron36732 жыл бұрын
  • my man knew....

    @vandermonke4178@vandermonke4178 Жыл бұрын
  • 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

    @abdicodes@abdicodes3 жыл бұрын
    • Mostly with .net

      @devgenesis6436@devgenesis64363 жыл бұрын
    • 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

      @nsubugakasozi7101@nsubugakasozi71013 жыл бұрын
    • 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 :)

      @devgenesis6436@devgenesis64363 жыл бұрын
    • Some companies call this a 'Canary', it's pretty industry-standard to keep applications warm.

      @Radamanthys500@Radamanthys5003 жыл бұрын
    • Yeah that absolutely defeats the entire purpose.

      @DodaGarcia@DodaGarcia3 жыл бұрын
  • 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

    @ThatsPety@ThatsPety3 жыл бұрын
    • > "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).

      @mateowang6570@mateowang65703 жыл бұрын
    • @@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!

      @ThatsPety@ThatsPety3 жыл бұрын
    • @@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.

      @mateowang6570@mateowang65703 жыл бұрын
    • @@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

      @carloacebedo6943@carloacebedo69433 жыл бұрын
    • @@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

      @ThatsPety@ThatsPety3 жыл бұрын
  • 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.

    @ishtiaquekhan1148@ishtiaquekhan11483 жыл бұрын
  • 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.

    @karolszymanowski518@karolszymanowski5183 жыл бұрын
    • What is the benefit over a task queue where I can push stuff for work and then grab the result later

      @XDTuber@XDTuber3 жыл бұрын
    • ​@@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.

      @karolszymanowski518@karolszymanowski5183 жыл бұрын
    • @@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.

      @toddzmijewski6002@toddzmijewski60022 жыл бұрын
  • 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.

    @JeanRauwers@JeanRauwers3 жыл бұрын
  • Everyone: Lambdas are so cold Lambda warmup plugin: '-'

    @sergioferreirabatistafilho695@sergioferreirabatistafilho6953 жыл бұрын
  • The first 19 secs can be applied to both (especially the "dip my toe" part)

    @oussamaghrib4558@oussamaghrib45583 жыл бұрын
  • 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

    @Godrose@Godrose3 жыл бұрын
  • 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.

    @obszczymucha1337@obszczymucha13372 жыл бұрын
  • 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...

    @ddupinsus@ddupinsus3 жыл бұрын
    • A developer won’t maintain a server, your IT support staff do.

      @slapmyfunkybass@slapmyfunkybass Жыл бұрын
    • @@slapmyfunkybass bro devops was invented more than 10 years ago

      @pavallok@pavallok4 ай бұрын
  • I've been seriously considering where to deploy. Came across holo. I'd be interested in some secondary opinions from pros.

    @ChessFlix@ChessFlix3 жыл бұрын
    • I use Oracle Cloud, pretty good so far, I have been using it for a year, I started with the free tier :D

      @FrederickAlvarez_@FrederickAlvarez_3 жыл бұрын
    • I’ve been working with azure for a couple months now and I can’t complain

      @willinton06@willinton063 жыл бұрын
    • Netlify offers a ton of features for free!

      @cameronthompson1275@cameronthompson12753 жыл бұрын
    • @@cameronthompson1275 I compared it to vercel, which seems better (money wise) for scaling apps.

      @AbhishekAngira@AbhishekAngira3 жыл бұрын
  • Hey, love your videos, I just finished your basic React tutorial, i was thinking of creating some small projects on my own, can you give any suggestions on how to proceed or what to do to improve my understanding of React

    @saurabhm2735@saurabhm27353 жыл бұрын
  • 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.

    @kaushiks87@kaushiks873 жыл бұрын
  • 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?"

    @yeicore@yeicore3 жыл бұрын
  • 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!

    @cryptonative@cryptonative3 жыл бұрын
  • 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.

    @zane62135@zane621353 жыл бұрын
  • 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.

    @Stone_624@Stone_6243 жыл бұрын
    • 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🤦🏾‍♂️🤦🏾‍♂️

      @nsubugakasozi7101@nsubugakasozi71013 жыл бұрын
    • 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."

      @Sasataf@Sasataf3 жыл бұрын
    • @@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.

      @nsubugakasozi7101@nsubugakasozi71013 жыл бұрын
    • @@nsubugakasozi7101 My response wasn't to you, it was to the OP. My bad, I could have made that clearer.

      @Sasataf@Sasataf3 жыл бұрын
    • 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

      @nickabbott3081@nickabbott30813 жыл бұрын
  • 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.

    @elvicsss@elvicsss3 жыл бұрын
    • 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.

      @batmansmk@batmansmk3 жыл бұрын
    • @@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

      @pedro_l9@pedro_l93 жыл бұрын
    • @@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.

      @elvicsss@elvicsss3 жыл бұрын
    • 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.

      @batmansmk@batmansmk3 жыл бұрын
  • 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.

    @octaviancristea1398@octaviancristea13983 жыл бұрын
  • 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

    @incubated@incubated3 жыл бұрын
  • 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.

    @eduardomora9586@eduardomora95863 жыл бұрын
  • 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.

    @melchoir55@melchoir553 жыл бұрын
    • 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.

      @juliansoto2651@juliansoto26513 жыл бұрын
    • @@juliansoto2651 Why would you say this? Could you expand and elaborate? I am legit curious. Thanks

      @pauolive7239@pauolive7239 Жыл бұрын
    • ​​​@@pauolive7239 His comment was a year ago so he probably wont respond, but I will answer. Microservices are good some of the time, it is a case by case, but it can make things a little more expensive, complex(also uncomplex at the same time) and slow(latency) because of network calls to communicate with other services, data serialization or state heavy backends. Though there isn't anything super* wrong with microservices, it is a case by case, there are many benefits. Also you can mix monolith and microservice concepts to make a solid service, but if you're making a small service/application you really only need a monolith architecture though if you think it will grow pick(with purpose) subservices in your app to decouple from the monolith.

      @mjphillips6619@mjphillips6619 Жыл бұрын
    • ​@@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.

      @zesky6654@zesky6654 Жыл бұрын
    • Even Prime Video is going back to monolithic architecture. So microservices are not the answer to everything.

      @MiguelMejia85@MiguelMejia85 Жыл бұрын
  • 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.

    @GarethMcCumskey@GarethMcCumskey3 жыл бұрын
    • 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?

      @mridulbarman027@mridulbarman0272 жыл бұрын
  • Serverless is amazing. Ever since I switched, my life has been 10x better as a dev

    @rohankapur5776@rohankapur57763 жыл бұрын
    • switch from or to?

      @sonmai3526@sonmai35263 жыл бұрын
    • @@sonmai3526 well be said, it was amazing, so I'm guessing he switched too

      @Jaxenormus@Jaxenormus3 жыл бұрын
    • @@sonmai3526 LOL i meant switch to

      @rohankapur5776@rohankapur57763 жыл бұрын
    • @Juan2003gtr why? What's wrong with serverless?

      @rohankapur5776@rohankapur57763 жыл бұрын
    • switch from what?

      @gethermedel3620@gethermedel36203 жыл бұрын
  • 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.

    @iamawebgeek@iamawebgeek3 жыл бұрын
  • well i cam here after amazon prime video blog posted about serverless, and yes ben you were right!

    @amiralam1786@amiralam1786 Жыл бұрын
  • Those poor girls will never get to hear about JavaScript…

    @bentoman@bentoman3 жыл бұрын
  • it's nice how you go through all this step by step of what serverless is and what to use or where to look. I kept editing my comment on where you could get more details but it looks like you did your research haha.

    @rachellejanssen2655@rachellejanssen26553 жыл бұрын
    • @s bright no I meant that my original comment was about different serverless languages, then x-ray, ect. But it turned out that all of them were discussed during the video. He didn't start filming at the first brick wall he hit, instead he made sure to research every problem first. I like that.

      @rachellejanssen2655@rachellejanssen26553 жыл бұрын
  • This video aged really really well...

    @walidchtioui9328@walidchtioui9328 Жыл бұрын
  • 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?

    @luxxa@luxxa3 жыл бұрын
    • And yes, company forced me to use serverless, and yes, 130 functions are too much for serverless.

      @luxxa@luxxa3 жыл бұрын
    • @@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.

      @JuanGarcia-qd8ig@JuanGarcia-qd8ig3 жыл бұрын
    • Language, used framework?

      @8X2X@8X2X3 жыл бұрын
    • @@luxxa So, now you need to maintain 130 functions (distributed system problem)?

      @fransafu@fransafu3 жыл бұрын
    • @@fransafu no, I am migrating to simple rest controllers

      @luxxa@luxxa3 жыл бұрын
  • In order to understand girls and serverless, you gotta learn to be a bit patient. 😂😂

    @ryo_ikarashi@ryo_ikarashi3 жыл бұрын
    • Not really. Servereless framework. Write whatever function you want and push it out as an aws lambda.

      @toddzmijewski6002@toddzmijewski60022 жыл бұрын
  • 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.

    @carlosalba9690@carlosalba96903 жыл бұрын
  • 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.

    @sots_music@sots_music3 жыл бұрын
  • Ben: "There are two things I don't understand, girls and serverless..." Angular: "Am I joke to you?"

    @mehmetesen9385@mehmetesen93853 жыл бұрын
  • 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.

    @epicdroid1218@epicdroid12183 жыл бұрын
  • 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.

    @alivepenmods@alivepenmods Жыл бұрын
  • KZhead @ May, 2023 : It's Perfect time to Recommend this video to everyone

    @shitshow_1@shitshow_1 Жыл бұрын
  • 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.

    @christophercaldwell6641@christophercaldwell66413 жыл бұрын
    • Are you using Apollo GraphQL?

      @arvi8843@arvi88433 жыл бұрын
    • 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

      @pierrega3418@pierrega34183 жыл бұрын
    • @@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.

      @christophercaldwell6641@christophercaldwell66413 жыл бұрын
    • @@christophercaldwell6641 Thanks!

      @arvi8843@arvi88433 жыл бұрын
  • So I get from this that server-less makes total sense to you ;-)

    @MarkDeibert@MarkDeibert3 жыл бұрын
  • What's your opinion on not using containers at all? Or can you do a video on why you use containers and what benefits those bring you? I just found your channel and I'm really interested in your opinion.

    @TRDiscordian@TRDiscordian3 жыл бұрын
  • 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.

    @DrewDoor@DrewDoor3 жыл бұрын
  • Coming from the future, you were right

    @vojinmilovic5787@vojinmilovic5787 Жыл бұрын
  • I really hope no one follows your computing advice, and this is all trolling

    @PatrickPalmer91@PatrickPalmer913 жыл бұрын
    • 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.

      @DodaGarcia@DodaGarcia3 жыл бұрын
    • @@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.

      @franksonjohnson@franksonjohnson3 жыл бұрын
    • @@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.)

      @DodaGarcia@DodaGarcia3 жыл бұрын
    • @@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.

      @franksonjohnson@franksonjohnson3 жыл бұрын
    • agree

      @junelue9117@junelue91173 жыл бұрын
  • This was a long overdue video! thanks a lot! could not agree more!

    @tobia54@tobia543 жыл бұрын
  • 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.

    @Cderry95@Cderry953 жыл бұрын
  • So is there any chance we'll get another Flutter/React Native update. Love your unbiased opinion on these two!

    @abdullahchauhan@abdullahchauhan3 жыл бұрын
    • his twitter bio is 'married to reactjs'. i dont think his opinions are unbiased. I come here for the angular jokes lol

      @aj.arunkumar@aj.arunkumar3 жыл бұрын
    • @@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!

      @abdullahchauhan@abdullahchauhan3 жыл бұрын
    • I doubt it will be unbiased lol. Obv he's married to ReactJS. You should look elsewhere.

      @bswill5077@bswill50773 жыл бұрын
    • What about Ionic?

      @martinn.6082@martinn.60823 жыл бұрын
    • @@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.

      @abdullahchauhan@abdullahchauhan3 жыл бұрын
  • 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.

    @tyronestephen4263@tyronestephen42633 жыл бұрын
    • 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.

      @toddzmijewski6002@toddzmijewski60022 жыл бұрын
  • 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

    @sachinbijalwan5814@sachinbijalwan5814 Жыл бұрын
  • Thank you, i have thought the same ever since i knew about cold start and crippling the service. But a while ago i stumbled into OpenFaas which sounds great on paper haven't had the time to work with it though.

    @surajsudhera8371@surajsudhera83713 жыл бұрын
  • WELL WELL WELL SIR

    @thrashshorts1703@thrashshorts1703 Жыл бұрын
  • 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.

    @CitadelOfLukes@CitadelOfLukes3 жыл бұрын
    • Exactly

      @aniketfuryrocks@aniketfuryrocks3 жыл бұрын
    • 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.

      @romeostoll4056@romeostoll40563 жыл бұрын
    • I think he meant dynamically resizing images depending on the dimensions provided by the request.

      @exactzero@exactzero3 жыл бұрын
    • ​@@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.

      @CitadelOfLukes@CitadelOfLukes3 жыл бұрын
    • @@CitadelOfLukes Thank you for elaborating your answer in more detail.

      @romeostoll4056@romeostoll40563 жыл бұрын
  • I doubt there's really an issue with an image resizer function taking some additional time to initialise... In Azure you can keep it warm by selecting the app service plan consumption model instead and configuring always on in the function app. With the right app service plan you can scale-out the function automatically.

    @MattDaines@MattDaines3 жыл бұрын
  • 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.

    @dsh1337@dsh13373 жыл бұрын
  • You should’ve used Google Cloud App Engine instead. No cold start, scales.

    @jjfattz@jjfattz3 жыл бұрын
    • Even GAE have cold start unless you specify minimum number of instances running.

      @Abu_Shawarib@Abu_Shawarib3 жыл бұрын
    • @@Abu_Shawarib Default instances is 1

      @jjfattz@jjfattz3 жыл бұрын
    • @@Abu_Shawarib You can send warmup requests ahead of time, luckily.

      @Bokbind@Bokbind3 жыл бұрын
  • I recommend use Webassembly with Rust, that's the right way into serverless, you'll notice the difference

    @hugoreinacruz4527@hugoreinacruz45273 жыл бұрын
    • Rust is next level for serverless!

      @MrJester831@MrJester8313 жыл бұрын
  • 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.

    @dtinth@dtinth3 жыл бұрын
  • I lol'd at "5 minutes to port over my code, and 10 weeks configuring API Gateway". Too accurate. That's why I always use something like the serverless framework if I'm going to be creating lambda functions that need http triggers. Actually, I use it for all other kinds of triggers too. Really simplifies the process.

    @dough654@dough6543 жыл бұрын
  • Well well well

    @shivamtrivedi4669@shivamtrivedi4669 Жыл бұрын
  • 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.

    @ClayDanford@ClayDanford3 жыл бұрын
    • There's managed k8s platforms, even so, you're still right. Managed != no managing.

      @Nafana@Nafana3 жыл бұрын
    • @human bean I agree

      @Nafana@Nafana3 жыл бұрын
  • Makes a lot of sense to not have every single request going to a single web server! Using a CDN for imgs and other resources has been a good practice for a long time. If nothing else that keeps the main server from getting bogged down too much during unusual peaks, and it makes it less of a single-point-of-failure.

    @BenRangel@BenRangel3 жыл бұрын
  • It really depends on what you're trying to do. I use AWS Lambda extensively for our data collection and processing pipeline. It works really well for that since it needs to collect data every minute and aggregate data every 5 minutes. We could spin up instances to run this code, but the server would regularly be idle or underutilized.

    @kimble_slice@kimble_slice2 жыл бұрын
  • Using serverless at scale with +800req/s in production. You should investigate a lot.

    @computerman2k7@computerman2k73 жыл бұрын
  • Dude... you are shaking trying to get honey out of the bottle... lol >.

    @thedeegan@thedeegan3 жыл бұрын
    • The shake is just a side-effect of developer hand sqeezing things

      @Greenthum6@Greenthum63 жыл бұрын
    • It was crystallized, so he was squeezing the bottle hard. 😂

      @claudeb.3473@claudeb.34733 жыл бұрын
    • Dude... is this the only thing you took away from this video?

      @schlaus_kwab@schlaus_kwab3 жыл бұрын
    • @@schlaus_kwab The discussion started from the most obvious point, honey

      @Greenthum6@Greenthum63 жыл бұрын
    • @@Greenthum6 I'm just joking, man. Don't take it too seriously :)

      @schlaus_kwab@schlaus_kwab3 жыл бұрын
  • I use AWS lambda for our company's contact email function..plus for otp validation and other stuffs. Found it really useful and headache free (in these limited cases)

    @pranavkumar1818@pranavkumar18183 жыл бұрын
  • Ive used firebase and I like it a lot. Very easy to setup and deploy code. I’d say the biggest issue with serverless functions at least with aws is just learning everything. When I first started aws it was like trying to solve a puzzle without a picture to work off of. Now I just use terraform to automate all of the infrastructure setup. Makes it a breeze to provision anything I want in minutes. As far as cold start latency. It doesn’t effect much in actual production applications that don’t require super fast speeds I’ve found

    @NicolasRodriguez-wy3mc@NicolasRodriguez-wy3mc Жыл бұрын
  • 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.

    @stevenstaley9442@stevenstaley94423 жыл бұрын
  • Just run statistics on what sizes are most requested, resize them using serverless and cache them to s3

    @aniketfuryrocks@aniketfuryrocks3 жыл бұрын
  • We exclusively use serverless on my team, but because cold starts, time limits, and other issues, we don't use a lot of lambda, preferring ECS Fargate instead for most of our services. It's great not having to worry about servers or cold starts, even if autoscaling takes a bit longer (have to wait for a container to spin up). We mostly use lambda for tasks that don't need to get done right away and can be batched to run infrequently.

    @user-bc7cb8uu7e@user-bc7cb8uu7e3 жыл бұрын
  • 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.

    @loganwright3423@loganwright34233 жыл бұрын
  • serverless is just about making money, since it increases dependancy and traffic on big clouds like AWS even further

    @GuRuGeorge03@GuRuGeorge033 жыл бұрын
    • What does that even mean. Serverless functions can be written in any language.

      @toddzmijewski6002@toddzmijewski60022 жыл бұрын
  • I think " attractive " is what doesn't make sense for you

    @TheGameArena@TheGameArena3 жыл бұрын
  • in my app, I just pre resize all the images on upload (for bg images etc) and the few edge cases I resize and convert to webp on the fly. why not just cache the most requested images that need resizing and if there is a new, unique request you can just see if the size of the requested image is within 10-20% of the already cached image. then you skip the 200ms wait and save on compute at the cost of a few bytes to the user... if that makes sense. edit: that assumes that it's even possible with serverless

    @erictheawesomest@erictheawesomest3 жыл бұрын
  • 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

    @kyle-silver@kyle-silver3 жыл бұрын
  • Serverless is the future. Once you get past the configuration you won't go back to older patterns

    @fmikael1@fmikael13 жыл бұрын
    • It's not though; it's just part of the tool kit. Going all in on serverless is foolish

      @MrJester831@MrJester8313 жыл бұрын
  • Try IBM Cloud Functions or IBM Code Engine

    @josipledic1806@josipledic18063 жыл бұрын
  • Hahahahaha... One of the best videos I've seen this year.

    @bukunmialuko@bukunmialuko3 жыл бұрын
  • Would love your opinion on Google's Cloud Run, which can handle multiple requests per instance, and you can eliminate cold start by processing the SIGTERM sent by cloudrun just before it terminates to quickly let the cloudrun call itself, thus provisioning another cloudrun to be in a ready state, while only paying when it is processing requests (assuming you allow cpu throttling when no requests are being processed)

    @user-ci3kw8qw5j@user-ci3kw8qw5j11 ай бұрын
KZhead