Serverless pattern for a throttled consumer

0

I have an API that uses a leaky bucket algo for token restoration.

What's a good serverless pattern for being able to consume the API in the most efficient way, while maximizing the use of allocated tokens?

Ideally, I want to have an SQS that we can then process in a throttled way.

Currently, we just execute Lambda on schedule and read from the queue, but this results in unnecessary executions when the queue is empty.

Thanks.

1 回答
0

If I understand correctly what you are asking, maybe you can store the amount of bucket tokens in a DynamoDB table and use DynamoDB Streams to invoke a Lambda every time it changes.

profile pictureAWS
专家
Uri
已回答 2 年前
  • It's the same number of tokens every minute. Once we exhaust the tokens, we cannot process the jobs anymore, and need to wait until the minute runs out. Then try again. So we have to execute the Lambda once a minute. But then 15 days of the month, we have no jobs, because the batch is a monthly job, and it takes 14 days to complete. So then for the other half of the month, we keep executing Lambda which isn't doing anything. Just checks the queue and exits.

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

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

回答问题的准则