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

แชร์
ฝัง
  • เผยแพร่เมื่อ 10 ก.ค. 2024
  • This video provides a details instruction on how to build a message queue system on AWS. I used a pizza shop delivery system as an example and simulate the scenario of one out of the two pizza shops broken down and the system can still operate normally to demonstrate the reliability of a queue system.
    Support the channel plz 😊: www.buymeacoffee.com/felixyu
    video on how to build a serverless API: • Build a CRUD Serverles...

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

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

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

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

    Great video pal, very insightful AWS stuff.

    • @FelixYu
      @FelixYu  2 ปีที่แล้ว

      Glad that it’s helpful 👍

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

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

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

      Glad that u found it 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 2 ปีที่แล้ว +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...

  • @mikiallen7733
    @mikiallen7733 2 ปีที่แล้ว

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

  • @elClubdelas7Cifras
    @elClubdelas7Cifras 4 หลายเดือนก่อน

    finshed 100%

  • @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

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

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

  • @2mahender
    @2mahender 2 ปีที่แล้ว

    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:
      th-cam.com/video/a_3Md9nV2Mk/w-d-xo.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 2 ปีที่แล้ว

    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