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.

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ