LimitExceededException When Starting Too Many Rekognition Video Jobs
LimitExceededException When Starting Too Many Rekognition Video Jobs How to track active video jobs and design around Rekognition concurrency limits #AWS #AmazonRekognition #CloudArchitecture #DevOps Category: Service Quotas & Throttling Problem Your system submits multiple video analysis jobs using Amazon Rekognition . You call: StartLabelDetection StartFaceDetection StartContentModeration Other async video APIs The first few requests succeed. Then new requests fail with: LimitExceededException: The number of concurrent jobs exceeds the limit. IAM permissions are correct. S3 access works. SNS role is configured. Yet new video jobs refuse to start. Clarifying the Issue Rekognition video APIs are asynchronous . When you call a Start* operation, AWS: Accepts the job Queues it for processing Returns a JobId That job remains active until it completes. Each AWS account has a maximum number of concurrent active video jobs per region . If yo...