How to build an Order / Message Queue System on AWS Step by Step | SQS, Lambda

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

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

  • @hickehelbro
    @hickehelbro 2 года назад +6

    One of the best AWS video dudes out there! Great job and thanks for all the tips!

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

    how could i do not found out this precious video.. you are great

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

      Glad that u found it helpful!!

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

    Great video pal, very insightful AWS stuff.

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

      Glad that it’s helpful 👍

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

    Great Video, Very helpful for to do microservice architecture in cloud. Thanks Bro

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

      Glad that u found it helpful!!

  • @ashutoshpanda4336
    @ashutoshpanda4336 3 года назад +1

    Hi can you please make videos on local set up of lamda functions project with authentic deployment with API gateway and websocket with API gateway please...

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

    I'm getting "Runtime.HandlerNotFound: index.handler is undefined or not exported" how to fix this

  • @elClubdelas7Cifras
    @elClubdelas7Cifras 7 месяцев назад

    finshed 100%

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

    but what about the front-end ? is it easy to be built within the same AWS framework ?

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

    Hey, great video!
    once a message is available on sqs, is it possible to send sns notification saying order has been prepared?

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

      Yep u just needa write the code in the consumer lambdas to send a sns when it’s done processing

  • @2mahender
    @2mahender 3 года назад

    can you do one video on Data pipeline also?

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

      i have a video on using EMR to process data with spark here. check it out:
      ruclips.net/video/a_3Md9nV2Mk/видео.html

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

    Why inflight messages showing 11 when you have set batch size is 10

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

      becuz we passed in a MessageGroupId (it is either 1 or 2) so there are 2 groups of messages and each group can have max of 10 msgs. technically u should only make the batch size to be 1 so the messages will be processed one by one in each group (7:55 of the video)

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

      @@FelixYu thanks

  • @2mahender
    @2mahender 3 года назад

    can you explain visibility timeout one more time, its confusion!!

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

      visibility timeout is the time that the message remains invisible by other consumers (e.g., if it is picked up by consumer1, within the visibility timeout, even thou consumer1 fails to process it, consumer2 cannot pick it up. after the visibility timeout, it becomes visible to other consumers again