SQS partial batch response failure feature tutorial

Поделиться
HTML-код
  • Опубликовано: 8 сен 2024

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

  • @AnkitKumar-qj7gk
    @AnkitKumar-qj7gk 2 года назад

    Thank you sir for your efforts for the aws development. Really appreciate 🙏🙏

    • @SrceCde
      @SrceCde  2 года назад

      My pleasure! Please like, share & subscribe. :)

  • @santosharakere
    @santosharakere 2 года назад

    Thank you very much. Excellent demo and blog.

    • @SrceCde
      @SrceCde  2 года назад

      You are welcome, Santosh! And I am glad it was helpful. Please like, share & subscribe :)

  • @indiraparasa6805
    @indiraparasa6805 Год назад

    So helpful 🥰, can we have our customized class return type which is having SQSResponse inside of it, Chirag?

  • @ZachMatics
    @ZachMatics Год назад

    Nice work

    • @SrceCde
      @SrceCde  Год назад

      Thank you! Please like, share & subscribe :)

  • @vammy55
    @vammy55 2 года назад +1

    when you set batch size to 10,why was only two messages processed?

    • @MaskedProgrammer
      @MaskedProgrammer Год назад

      10 is the maximum batch size. If you have 2 messages in the queue, you won't wait until you have 10 messages to process the first two that arrived.

  • @rptkumbh-vm4nq
    @rptkumbh-vm4nq Год назад

    Which tool is used to create this animation

    • @SrceCde
      @SrceCde  Год назад

      In this video, I have used Keynote. In a few other videos, I have used Manim.
      I hope this helps. Please like, share & subscribe :)

  • @ishanmourya5595
    @ishanmourya5595 2 года назад

    Does this work with fifo queue? I was trying but I wasn't able to see the failed messaged being reprocessed.

  • @jakeberg1963
    @jakeberg1963 2 года назад

    Would there still be a need for a DLQ if using this feature?

    • @combofriend4461
      @combofriend4461 2 года назад +1

      It depends on your needs, but in general yes I think the DLQ (on the SQS queue, not lambda) would still be useful, because the failed messages might be permanent failures (i.e. never succeed on retry), so eventually the max number of receives would get hit, and you probably want a DLQ to capture those.