3 Antworten
- Neueste
- Die meisten Stimmen
- Die meisten Kommentare
2
Currently, EventBridge Scheduler does not support using a FIFO queue as your schedule's DLQ.
0
Hi, AWS service teams usually do not monitor re:Post re. bugs. To get yours fixed, you have to open a Support ticket via the AWS console of your account. Best, Didier
Literally was asked to post the bug report here when I contacted support...
0
For me, this error occured because in the target I configured a DLQ which was FIFO. It looked something like this in Serverless. Removing the last 2 lines and configuring the DLQ via Terraform was the solution for me
RouteCreateRule:
Type: AWS::Events::Rule
Properties:
EventBusName: ${self:custom.environment.${opt:stage}.EventBridgeBusArn}
EventPattern:
detail-type:
- ROUTE_CREATE
source:
- source-value
Name: ${opt:stage}-route-create-container-hydration-queue-rule
Targets:
- Id: ${opt:stage}-route-create-container-hydration-queue-target
Arn: !Sub ${ssm:/${self:custom.environment.${opt:stage}.environment}/route/create/sqs/arn}
RetryPolicy:
MaximumRetryAttempts: ${ssm:/${self:custom.environment.${opt:stage}.environment}/default/sqs/retry/attempts}
MaximumEventAgeInSeconds: ${ssm:/${self:custom.environment.${opt:stage}.environment}/default/sqs/retry/max/age}
DeadLetterConfig:
Arn: !Sub ${ssm:/${self:custom.environment.${opt:stage}.environment}/route/create/dlq/arn}
beantwortet vor 2 Jahren
Relevanter Inhalt
- AWS OFFICIALAktualisiert vor 6 Monaten

It would be nice if the documentation explicitly stated that "DLQs are supported by Scheduler if your target is a FIFO SQS Queue."
Would also be nice to know if this is a feature being pursued or if this is the permanent state of this product.