symfony-messenger-sqs
symfony-messenger-sqs copied to clipboard
[DEPRECATED] Bridge to use Symfony Messenger with SQS on AWS Lambda with Bref.
After following the instructions, I ended up with an error about non-existent service. ``` The service "Bref\Messenger\Sqs\SqsTransportFactory" has a dependency on a non-existent service "Aws\Sqs\SqsClient". ``` I've realised that I...
You can configure messenger like: ``` transports: workqueue: dsn: '%env(WORKQUEUE_DSN)%' options: { message_group_id: foobar } ``` You also need to enable `Content-Based Deduplication` on your (SQS) queue option.