Manage Batch Jobs with AWS Batch Manage Batch Jobs with AWS Batch AWS Batch allows us to run batch workloads without managing any compute resources. Although newer services such as ECS might be more… Manage Batch Jobs with AWS Batch AWS Batch AWS Batch allows us to run batch workloads without managing any compute resources. Although newer services such as ECS might be more appealing, we are going to take a deeper look at what AWS Batch provides and along the way we will deploy a sample Batch example using AWS CDK. In case you haven’t heard CDK, we would recommend checking our series of tutorials related to CDK. AWS Batch dynamically provisions the optimal quantity and type of computing resources (e.g., CPU or memory optimized instances) based on the volume and specific resource requirements of the batch jobs submitted. Spot instances can also be leveraged to save some money. After your job is finished, Batch can terminate the instances according to your needs. Let’s deploy a sim...