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.

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南