Amazon SQS Scope Changes / Fixes
See original GitHub issueI’m configuring amazon sqs host like below, At the description of Scope it is written that this will be used as a prefix for queues and topics. But when I look to the aws console I don’t see any prefixes in the queues and topics. My intention was to use it for creating different environments for queues so when e.g. I publish something in development it will not be consumed in Prod
x.Host(new Uri($"amazonsqs://{_config.Region}/"), h => { h.AccessKey(_config.AccessKey); h.SecretKey(_config.SecretKey); h.Scope(_config.Environment); });
Issue Analytics
- State:
- Created 3 years ago
- Comments:8 (4 by maintainers)
Top Results From Across the Web
set-queue-attributes — AWS CLI 1.29.30 Command ...
Sets the value of one or more queue attributes. When you change a queue's attributes, the change can take up to 60 seconds...
Read more >Scope, strategy, and timeline - AWS Prescriptive Guidance
The scope will change, because large migrations come with unknowns. These unknowns could be in the form of systems that have become part...
Read more >Documentation history - Amazon Simple Queue Service
High throughput for Amazon SQS FIFO queues is in preview release and is subject to change. This feature provides a higher number of...
Read more >Class: AWS.SQS — AWS SDK for JavaScript
Amazon SQS is a reliable, highly-scalable hosted queue for storing ... Changes the visibility timeout of a specified message in a queue to...
Read more >create-queue — AWS CLI 1.29.28 Command Reference
You can't change the queue type after you create it and you can't convert an existing standard queue into a FIFO queue. You...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Okay, that settles it. @Crozin you were the one I was most concerned about, and if you’re still fighting with it, it’s settled.
And I think I’ll make topics scoped by default as well. It’s a one-time breakage that actually fixes itself once services are upgraded.
Makes sense. Agreed - the docs have great complete working examples but as soon as I need to deviate from them a little bit I find myself doing a lot of googling/code spelunking to trying to piece together the solution.