Connect your services together | Queue Storage Flashcards

1
Q

How do application components access a storage queue?

A

Using a REST API or an Azure-supplied client library.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How big can a storage queue be?

A

A single queue can be up to 500 TB in size, so it can potentially store millions of messages.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

To which storage accounts can you add queues?

A

Only general purpose storage accounts V1 en V2. You cannot add them to Blob storage.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Every request to a queue must be authorized. Which 3 options are there to authorize?

A

Azure Active Directory, Shared Key, Shared access signature.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is a connection string for queue storage?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Where to find the connection string?

A

from the Security + Networking > Access keys section of your storage account. Or CLI command az storage account show-connection-string .

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How to send to queue message with code?

A

you call the a SendMessageAsync method on a QueueClient object.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly