Reputation: 431
Requirement: We have n no.of client(region specific), we need to do some calculations daily on client data and we need to store the data in DynamoDB and this process should be dynamic.
Problem: We couldn't find any details on how we can trigger the multiple container dynamically using AWS Fargate which should take some input such as client ids.
We planned to use AWS Lambda + Fargate as the solution.
Upvotes: 1
Views: 825
Reputation: 10333
We can start containers for a task definition using AWS ECS run-task api
ContainerOverrides
with additional attributes and environment variables when running the task with additional information for that particular run.Upvotes: 1