Now that you have successfully completed the Batch introduction and Batch Deep Dive workshop you should be familiar with the concepts and operations of AWS Batch. This includes the basic steps required to build and register your own container images; create and run simple and array batch jobs; and the fundamentals around AWS Batch architecture. These form the basic building blocks of more complex workflows.
At this stage it is a good idea to reinforce your knowledge by applying it to address your own problems and workflows.
Make sure to let us know what cool things you are building!
After you complete the workshop, clean up your environment by following these steps. (Note that you can complete these steps in the AWS Management Console or run the commands in your Cloud9 terminal):
cd ~
cat > ~/kill-all-jobs.sh << EOF
#!/bin/bash
JQS=\$(aws batch describe-job-queues --query "jobQueues[].[jobQueueName]" --output text)
echo \$JQS
for jq in \$JQS
do
for state in SUBMITTED PENDING RUNNABLE STARTING RUNNING
do
JOBS=\$(aws batch list-jobs --job-queue \${jq} --job-status \${state} --query "jobSummaryList[].[jobId]" --output text)
if [ ! -z "\$JOBS" ]
then
for job in \$JOBS
do
aws batch terminate-job --job-id \${job} --reason 'Terminating job'
echo "Terminating \${job} in \${jq} with state \${state}"
done
fi
done
done
EOF
bash kill-all-jobs.sh
cd ~
cat > ~/remove-repos.sh << EOF
#!/bin/bash
echo "Removing all repositories "
REPO_LIST=\$(aws ecr describe-repositories --output text --query "repositories[].[repositoryName]")
for repo in \$REPO_LIST
do
echo "Deleting images in \$repo"
IMAGE_LIST=\$(aws ecr describe-images --repository-name \$repo --output text --query "imageDetails[].[imageTags]")
for tag in \$IMAGE_LIST
do
echo "Deleting image: \$repo:\$tag"
aws ecr batch-delete-image --repository-name \$repo --image-ids imageTag=\$tag
done
# Wait until all images are deleted.
while [ \`aws ecr describe-images --repository-name \$repo --output text --query "imageDetails[].[imageTags]" | wc -l\` -gt 0 ]
do
echo "Waiting for images in \$repo to be deleted..."
sleep 10
done
# now delete the repository.
echo "Deleting reposityory: \$repo"
aws ecr delete-repository --repository-name \$repo
done
EOF
bash remove-repos.sh
Console: go to CloudFormation
CLI: use the following command in your Cloud9 Environment:
aws cloudformation delete-stack --stack-name LargeScaleBatch
aws cloudformation delete-stack --stack-name LargeScaleVPC