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 Answer
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
EXPERT
Uri
answered 2 years ago
  • 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.

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions