ไม่สามารถเล่นวิดีโอนี้
ขออภัยในความไม่สะดวก

AWS lambda triggers, integrations, AWS Lambda function, AWS Lambda tutorial for beginners

แชร์
ฝัง
  • เผยแพร่เมื่อ 10 พ.ย. 2022
  • AWS Lambda Integration with SQS, SNS, DynamoDB, API Gateway
    AWS lambda triggers
    AWS Lambda tutorial for beginners
    #awslambda #sqs #sns #dynamodb #triggers #integration #tutorial

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

  • @cas818028
    @cas818028 ปีที่แล้ว +3

    Do you have any examples of implementing event driven architecture in AWS? For example using event bridge? So a simple example might be, you need to capture event based webhooks from Shopify for newly created orders. You wire up a lamda to receive the order_created webhook, the events are stored into a queue, where you have a queue trigger that can process them in a FIFO, this "broadcasts" the OrderCreated Event through eventbridge and all of the subscriber functions receive the event. Example SubDomains might be Order_Processing, Accounting, Manufacturing. Where each domain you could have SQS that receive the data at scale, perform some kind of processing (Business logic) and write to db.

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

      Hi @cas818028,
      Thanks for the query. Yes I have a sample for your scenario. But it may not extractly match with your requirement. But it has kind of similar scenario. I will update the update and let you know. Thanks.

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

      @cas818028 this should be help th-cam.com/video/VeF5hQ0gVkA/w-d-xo.html

  • @shubhammahure3530
    @shubhammahure3530 3 หลายเดือนก่อน +1

    Fix the issue of job failure when all the market zip files are placed in cft folder
    Some of the jobs will fail due to concurrency issue Exceeded maximum concurrent capacity for your account:500.
    How i add Queue for this jobs and delay so that it cannot exceed 500 DPUs.How check how many files are running.

    • @lovetocode4486
      @lovetocode4486  3 หลายเดือนก่อน +1

      Hi Mate,
      Sorry mate, I didnt get your question clearly. As I understood the question, you can increase the size of the batch size of lambda. This will reduce the concurrency exceeding limit as AWS spinning up less lambda instances. The batch size configuration is in the part of the trigger settings.

    • @lovetocode4486
      @lovetocode4486  3 หลายเดือนก่อน +1

      let me knw how it goes. thanks