The thing about serverless...

Поделиться
HTML-код
  • Опубликовано: 13 янв 2024
  • Join this channel to get access to perks:
    / @java.brains

Комментарии • 13

  • @SurajKj
    @SurajKj 4 месяца назад +3

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

  • @dilipkatare
    @dilipkatare 4 месяца назад +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.

  • @adityavardhanagarwal
    @adityavardhanagarwal 4 месяца назад

    Hello !
    Can you please update your Spring Security playlist ?

  • @jiteshmishra8096
    @jiteshmishra8096 4 месяца назад +10

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

    • @klawtawar
      @klawtawar 4 месяца назад +1

      It's secret 😂

    • @francksgenlecroyant
      @francksgenlecroyant 4 месяца назад

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

    • @Nimbus2k_rider
      @Nimbus2k_rider 4 месяца назад

      Obviously Boost is the secret of his energy.

  • @Android-17
    @Android-17 4 месяца назад

    Thanks

  • @abdulmaliknurudeen7331
    @abdulmaliknurudeen7331 4 месяца назад

    Keep up the good work 😊

  • @MaheshAnand1995
    @MaheshAnand1995 4 месяца назад

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

  • @greekthejimmy4107
    @greekthejimmy4107 4 месяца назад

    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 4 месяца назад

      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 4 месяца назад +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.