The thing about serverless...

Поділитися
Вставка
  • Опубліковано 2 жов 2024
  • Join this channel to get access to perks:
    / @java.brains

КОМЕНТАРІ • 10

  • @SurajKj
    @SurajKj 8 місяців тому +3

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

  • @dilipkatare
    @dilipkatare 8 місяців тому +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.

  • @imakhlaqXD
    @imakhlaqXD 3 місяці тому

    Serverless is good untill you get 100k bill

  • @MaheshAnand1995
    @MaheshAnand1995 8 місяців тому

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

  • @adityavardhanagarwal
    @adityavardhanagarwal 8 місяців тому

    Hello !
    Can you please update your Spring Security playlist ?

  • @greekthejimmy4107
    @greekthejimmy4107 8 місяців тому

    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 8 місяців тому

      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.

  • @peoplethesedaysberetarded
    @peoplethesedaysberetarded 8 місяців тому +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.

  • @abdulmaliknurudeen7331
    @abdulmaliknurudeen7331 8 місяців тому

    Keep up the good work 😊

  • @Android-17
    @Android-17 8 місяців тому

    Thanks