Connect your services together | Queue Storage Flashcards
How do application components access a storage queue?
Using a REST API or an Azure-supplied client library.
How big can a storage queue be?
A single queue can be up to 500 TB in size, so it can potentially store millions of messages.
To which storage accounts can you add queues?
Only general purpose storage accounts V1 en V2. You cannot add them to Blob storage.
Every request to a queue must be authorized. Which 3 options are there to authorize?
Azure Active Directory, Shared Key, Shared access signature.
What is a connection string for queue storage?
A connection String is a string that combines a storage account name and account key and must be known to the application to access the storage account.
Where to find the connection string?
from the Security + Networking > Access keys section of your storage account. Or CLI command az storage account show-connection-string .
How to send to queue message with code?
you call the a SendMessageAsync method on a QueueClient object.