Does Amazon EventBridge Pipes integration with SQS use long polling?

0

Does Amazon EventBridge Pipes integration with SQS use long polling?

Wondering what the pricing is like for this integration?

1 回答
0
已接受的回答

Yes. It uses long polling.

The pricing, based on the pricing page, is $0.40 for every 1,000,000 messages processed by the pipe (price varies by region).

On top of that you need to add the SQS API calls, any enrichment that you may do on the messages and the cost of the target.

profile pictureAWS
专家
Uri
已回答 1 年前
profile picture
专家
已审核 1 个月前
  • Thanks, @Uri! Would you say it is advisable to use the Pipe pattern then: SQS -> Express SFN -> Lambda, to avoid having Lambda running hot due to long polling for low message volume?

  • It is not your Lambda function that does the long polling. It is the Lambda service, and you do not pay for that. Your Lambda function is invoked only where there are messages in the queue.

    If all you need to do is invoke a Lambda function, I would use the native SQS -> Lambda integration. No need for Pipes in that use case.

  • @Uri, Does Pipes use less SQS requests than lambda (as I understand it it uses 5 instances to poll)?

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则