Can't trigger lambda's on SQS FIFO

前端 未结 3 450
南方客
南方客 2021-01-01 11:26

I am trying to trigger lambda execution to execute an item on a FIFO queue. Other than polling, what options do we have to accomplish that? We just learned that we cannot di

3条回答
  •  长发绾君心
    2021-01-01 11:43

    SQS event sourcing does not do anything than pulling queue every second with long polling.

    If you want everything in order; - Create a Cloudwatch event trigger for every second (as Asdfg suggested) - Set concurrency limit to 1 - Receive messages with long polling to reduce the cost

提交回复
热议问题