When should you use Service Bus Queues?
When should you use Storage Queues?
What is a Service Bus Message?
A container decorated with metadata that contains data.
How can the data in Service Bus messages be encoded?
In any way.
What are the differences between Premium and Standard Service Bus tiers?
What are the two modes you can use when receiving Service Bus messages?
Receive and Delete, and Peek Lock
How does Receive and Delete mode work?
If the consumer crashes, the message is lost.
How does Peek Lock mode work?
The receive operation is two-stage.
If the application is unable to process the message it can request the Service Bus abandon the process, Service Bus then unlocks the message.
If the application fails to process the message within the timeout, Service Bus unlocks the message.
What do Topics and Subscriptions allow?
Multiple consumers to process a single message
How do Topics and Subscriptions work?
A publisher sends a message to a topic; one or more subscribers to the topic receive the message.
Filter rules can further restrict the messages received by the subscriber.
Do consumers receive messages directly from the topic?
No. Consumers receiver messages from subscribers
What is the maximum size of a message in a Storage Queue?
64KB
What is the default TTL for a message in a Storage Queue?
7 days