Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Limits for AWS Batch job details retention

I'm trying to understand how long the details associated with an AWS Batch job are retained. For example, the Kinesis limits page describes how each stream defaults to a 24 hour retention period that is extendable up to 7 days.

The AWS Batch limits page does not include any details about either the maximum time or count allowed for jobs. It does say that one million is the limit for SUBMITTED jobs, but its unclear if that is exclusively for SUBMITTED or includes other states as well.

Does anybody know the details of batch job retention?

like image 270
Matt Lavin Avatar asked May 01 '17 14:05

Matt Lavin


1 Answers

Job metadata for SUCCEEDED and FAILED jobs are retained for 24 hours. Metadata for Jobs in SUBMITTED, PENDING, RUNNABLE, STARTING, and RUNNING remain in the queue until the job completes. Your AWS Batch Jobs also log STDERR/STDOUT to CloudWatch Logs where you control the retention policy.

like image 120
Jamie Kinney Avatar answered Oct 10 '22 04:10

Jamie Kinney