AWS provided AWS Batch which included `queue` this is good option we can use rather than using lambda which has limitation on time execution (15min) idea: ```mermaid graph TD; A[Github] --> B(Webhook aka AWS Apigw); B -->|job1| D[Queue]; B -->|job2| D[Queue]; D-->|Batch| F[AWS Batch]; ``` - [x] Demo - [x] Source Code - [x] Readme - [ ] Quay 1 video
AWS provided AWS Batch which included
queuethis is good option we can use rather than using lambda which has limitation on time execution (15min)
idea:
graph TD; A[Github] --> B(Webhook aka AWS Apigw); B -->|job1| D[Queue]; B -->|job2| D[Queue]; D-->|Batch| F[AWS Batch];