How To Use Lambda Destinations - Step by Step Tutorial with Explanation

แชร์
ฝัง
  • เผยแพร่เมื่อ 26 ส.ค. 2024

ความคิดเห็น • 20

  • @saab0009
    @saab0009 5 หลายเดือนก่อน

    You're an excellent educator! Thank you!

  • @WenziTalk
    @WenziTalk ปีที่แล้ว +1

    This is very helpful! It fixed my problem. Thanks!

  • @tobaadesanya32
    @tobaadesanya32 ปีที่แล้ว

    Excellent video man!! Great channel!

  • @BobHanson-jv6du
    @BobHanson-jv6du 3 หลายเดือนก่อน

    How do I tell what trigger async vs sync?
    Im using Event Scheduler to invoke a function. If that function fails, I want to send the onFailure to a different Lambda.
    Im having trouble getting it working, but I wonder if its because of the async trigger vs sync trigger issue you spoke about.

  • @andriys5772
    @andriys5772 ปีที่แล้ว

    Thank you!

  • @BR-lx7py
    @BR-lx7py ปีที่แล้ว +1

    Good little bonus feature. I'm guessing most people will use only a failure queue because success is expected.

    • @adrian_franczak
      @adrian_franczak ปีที่แล้ว

      Agree - I don’t see usecase for success queue for now - probably happy path should be in code :)

  • @ayansaif6754
    @ayansaif6754 ปีที่แล้ว

    Love your channel 👍

  • @christianibiri
    @christianibiri ปีที่แล้ว +1

    Thank you Daniel, your TH-cam channel is great!

  • @alejopaullier5538
    @alejopaullier5538 ปีที่แล้ว

    David could you do a video on Former2? It's a tool which builds a CloudFormation template from manually created resources, similar to the deprecated CloudFormer

  • @rishiraj2548
    @rishiraj2548 ปีที่แล้ว

    Great thanks

  • @venkataramana-yh3th
    @venkataramana-yh3th ปีที่แล้ว

    Thanks man

  • @randomguy-vq4ue
    @randomguy-vq4ue ปีที่แล้ว +1

    Failure Q = DLQ?

  • @maxmaximus7773
    @maxmaximus7773 ปีที่แล้ว +1

    Do we really need lambda destinations most of the time?
    What if I just add a try catch into the code and make it send succeeded events into the successSQS queue and vice versa when it fails and lands in the catch statement.
    Would that not be the same thing as implementing lambda destinations in this case?

    • @BeABetterDev
      @BeABetterDev  ปีที่แล้ว +2

      You could certainly do this - however consider the scenario if your call to send the message into SQS fails, what then? You'll have to add some messy failure handling logic to handle this scenario. Using destinations, Lambda handles the delivery for you.

    • @maxmaximus7773
      @maxmaximus7773 ปีที่แล้ว

      @@BeABetterDev makes sense. Thank you for the reply

    • @edwinmarrima6476
      @edwinmarrima6476 ปีที่แล้ว

      ​@@maxmaximus7773 in addition to what was said by @BeABetterDev doing this alone can slightly increase the execution time of your function and consequently increase your bills