The thing about serverless...

Sdílet
Vložit
  • čas přidán 13. 01. 2024
  • Join this channel to get access to perks:
    / @java.brains

Komentáře • 14

  • @SurajKj
    @SurajKj Před 5 měsíci +3

    Agreed, we use container to serve our regular traffic & lambda for adhoc workload like some slack app. Works well cost wise

  • @jiteshmishra8096
    @jiteshmishra8096 Před 5 měsíci +10

    How do you manage teaching us and your job , please tell us your secret

    • @klawtawar
      @klawtawar Před 5 měsíci +1

      It's secret 😂

    • @francksgenlecroyant
      @francksgenlecroyant Před 5 měsíci

      @paraaminodietilanilinsulfat You got it wrong, He's the staff member and team lead at Linkedin 😂😂

    • @Nimbus2k_rider
      @Nimbus2k_rider Před 4 měsíci

      Obviously Boost is the secret of his energy.

  • @dilipkatare
    @dilipkatare Před 5 měsíci +1

    You are only refering FaaS here for serverless and your main concern look like vendor lockin . have you given any thoughts of using Knative where you can run your container as serverless and this should work on any K8s env by any public cloud provider. Regarding cold startup what is your thoughts on using graalvm AOT and then knative servless . this combination should give us cost saving and any vendor options.

  • @abdulmaliknurudeen7331
    @abdulmaliknurudeen7331 Před 5 měsíci

    Keep up the good work 😊

  • @Android-17
    @Android-17 Před 5 měsíci

    Thanks

  • @adityavardhanagarwal
    @adityavardhanagarwal Před 5 měsíci

    Hello !
    Can you please update your Spring Security playlist ?

  • @MaheshAnand1995
    @MaheshAnand1995 Před 4 měsíci

    Waiting for you to start a series on AWS Lambda, Ec2, S3. Need of the hour!!

  • @greekthejimmy4107
    @greekthejimmy4107 Před 5 měsíci

    the promise of serverless isn't really about cost as much as its about not having to manage servers, but cost is also a huge benefit when its used for the right workload. obviously you shouldn't use lambda if the workload requires on-demand compute because that's not what lambda is for. And i think one of the main reasons you aren't seeing much serverless architecture in your space is because you live in Java world and no one wants to see Java in a serverless microservice stack.

    • @Kopetefish
      @Kopetefish Před 5 měsíci

      The part about java is not really true anymore. You can take a look at native image support where java applications can start without the virtual machine (quarkus for example). Even normal jvm applications can start very quickly with a technique called crac nowadays.

  • @imakhlaqXD
    @imakhlaqXD Před 18 hodinami

    Serverless is good untill you get 100k bill

  • @peoplethesedaysberetarded
    @peoplethesedaysberetarded Před 5 měsíci +1

    You’ve got the wrong end of the stick here.
    For really bursty/unknown traffic patterns, Serverless 100%. Lambda scales from one instance to 1500 in about a second. Fargate takes about an hour to scale to 1000 EC2 instances, from memory.