BrainyBeeBrainyBee
ExploreBlogStart Studying
HomeDesigning Microsoft Azure Infrastructure Solutions (AZ-305)Quick Note — Recommend a Messaging Architecture
LO Quick Note800 words

Quick Note — Recommend a Messaging Architecture

AZ-305 › Unit 4: Design infrastructure solutions › Design an application architecture › Recommend a messaging architecture

Quick Note — Recommend a Messaging Architecture

An e-commerce platform processes orders with a chain of services: order capture, inventory, fulfilment, billing, notification. The architect's first design uses HTTP calls between services — synchronous, "simple", and beautiful in the architecture diagram. The first Black Friday it falls over: the billing service slows down for an unrelated reason, every upstream service backs up, and within ten minutes nothing accepts new orders. The fix is one architectural change: replace the HTTP chain with an async messaging path through Service Bus.…

Retrieval target

Objective
Recommend a Messaging Architecture
Mode
Closed-book recall
Target time
5 minutes
Escalation
Open the full lesson after a miss

Decision anchors

PromptCompact answer
Azure Service BusMicrosoft's enterprise messaging service — supports both queues (point-to-point) and topics + subscriptions (pub/sub). Designed for command-style messaging with strict delivery guarantees: ordered FIFO via sessions, transactional sends, dead-letter queues, scheduled delivery, duplicate detection. Tiers: Standard (multi-tenant) and Premium (dedicated capacity, VNet, larger messages).
Service Bus Queue vs Storage QueueService Bus Queue — enterprise features: sessions (FIFO), DLQ, peek-lock, transactions, max 256 KB (1 MB Premium) message size, max queue size 80 GB. Storage Queue — simple, cheap, REST-only; 64 KB messages, unlimited queue size (up to storage account cap), no sessions / DLQ / transactions.…
Topic + Subscription (Service Bus)Pub/sub primitive: publisher sends to a Topic, every Subscription under the topic gets a copy filtered by a SQL-like rule. Subscriptions are independent queues — multiple consumers can each get the messages they care about. Use for fan-out patterns (one event → many handlers). Up to 2,0002{,}0002,000 subscriptions per topic.
Dead-Letter Queue (DLQ)A sub-queue on every Service Bus queue / subscription that receives messages the system couldn't deliver — exceeded max delivery count, expired TTL, or explicitly dead-lettered by app code. Lets you isolate poison messages without blocking the main queue. Inspect, replay, or discard from DLQ via the SDK. Always monitor DLQ depth as an alert signal.

Read the answers once, then cover the right-hand column and reconstruct each one from the prompt. A useful answer names the requirement, the recommended control or service boundary, and the nearest alternative it rejects. If you can only recognize the answer after seeing it, retrieval is not yet secure.

Turn recall into an architecture answer

For recommend a messaging architecture, state: choose X because constraints A and B apply; reject Y because it fails C; validate with evidence D.

Ninety-second explanation

Without notes, explain:

  1. What requirement signals this learning objective rather than a neighbouring one?
  2. Which two solution families are most likely to be compared?
  3. Which hard constraint eliminates the strongest distractor?
  4. What identity, network, data, or failure boundary must appear in the design?
  5. Which operational test would prove the recommendation works?

Then compare your explanation with the full lesson. Record the missing decision rule—not merely the missed product name—in your error log.

Loading flashcards…

When to open the full lesson

Open the curriculum-linked lesson when you cannot explain a comparison, when a scenario depends on a numeric limit or SKU feature, or when the service is on a retirement path. Use current Microsoft Learn documentation for availability, limits, pricing, naming, and migration milestones; the quick note is intentionally compact.

Source and freshness

Derived from the linked AZ-305 lesson and retrieval deck, grounded in both attached course sources. Reviewed 2026-08-02. Current Microsoft documentation controls changing product contracts.

All Designing Microsoft Azure Infrastructure Solutions (AZ-305) Study Resources

Related Notes

  • Recommend a Messaging Architecture — Lesson4,496 words
  • AZ-305 Exam Map and Design Decision Playbook652 words
  • Unit 1 Capstone — Design identity, governance, and monitoring solutions668 words
  • Unit 1 Roadmap — Design identity, governance, and monitoring solutions639 words
  • Cram Sheet — Design authentication and authorization solutions632 words
  • Design Authentication and Authorization Solutions — Lesson4,263 words
  • Design Studio — Design authentication and authorization solutions734 words
  • Quick Note — Recommend an Authentication Solution758 words
  • Recommend an Authentication Solution — Lesson4,868 words
  • Quick Note — Recommend an Identity Management Solution796 words
  • Recommend an Identity Management Solution — Lesson5,982 words
  • Quick Note — Recommend a Solution for Authorizing Access to Azure Resources745 words

Ready to study Designing Microsoft Azure Infrastructure Solutions (AZ-305)?

Practice tests, flashcards, and all study notes — free, no sign-up.

Start Studying

Ready to study Designing Microsoft Azure Infrastructure Solutions (AZ-305)?

Practice tests, flashcards, and all study notes — free, no sign-up needed.

Start Studying — Free
Designing Microsoft Azure Infrastructure Solutions (AZ-305) ResourcesExplore All HivesBlogHome

© 2026 BrainyBee. Free AI-powered exam prep.

Recommend a Messaging Architecture — quick retrieval

Card 1 of 4

Front of flashcard 1 of 4

Azure Service Bus

easy

Microsoft's enterprise messaging service — supports both queues (point-to-point) and topics + subscriptions (pub/sub). Designed for command-style messaging with strict delivery guarantees: ordered FIFO via sessions, transactional sends, dead-letter queues, scheduled delivery, duplicate detection. Tiers: Standard (multi-tenant) and Premium (dedicated capacity, VNet, larger messages).

service-bus

Recommend a Messaging Architecture — quick retrieval

Card 1

Front

Azure Service Bus

Back

Microsoft's enterprise messaging service — supports both queues (point-to-point) and topics + subscriptions (pub/sub). Designed for command-style messaging with strict delivery guarantees: ordered FIFO via sessions, transactional sends, dead-letter queues, scheduled delivery, duplicate detection. Tiers: Standard (multi-tenant) and Premium (dedicated capacity, VNet, larger messages).

Card 2

Front

Service Bus Queue vs Storage Queue

Back

Service Bus Queue — enterprise features: sessions (FIFO), DLQ, peek-lock, transactions, max 256256256 KB (111 MB Premium) message size, max queue size 808080 GB. Storage Queue — simple, cheap, REST-only; 646464 KB messages, unlimited queue size (up to storage account cap), no sessions / DLQ / transactions.…

Card 3

Front

Topic + Subscription (Service Bus)

Back

Pub/sub primitive: publisher sends to a Topic, every Subscription under the topic gets a copy filtered by a SQL-like rule. Subscriptions are independent queues — multiple consumers can each get the messages they care about. Use for fan-out patterns (one event → many handlers). Up to 2,0002{,}0002,000 subscriptions per topic.

Card 4

Front

Dead-Letter Queue (DLQ)

Back

A sub-queue on every Service Bus queue / subscription that receives messages the system couldn't deliver — exceeded max delivery count, expired TTL, or explicitly dead-lettered by app code. Lets you isolate poison messages without blocking the main queue. Inspect, replay, or discard from DLQ via the SDK. Always monitor DLQ depth as an alert signal.

Recommend a Messaging Architecture — quick retrieval

Card 1

Front

Azure Service Bus

Back

Microsoft's enterprise messaging service — supports both queues (point-to-point) and topics + subscriptions (pub/sub). Designed for command-style messaging with strict delivery guarantees: ordered FIFO via sessions, transactional sends, dead-letter queues, scheduled delivery, duplicate detection. Tiers: Standard (multi-tenant) and Premium (dedicated capacity, VNet, larger messages).

Card 2

Front

Service Bus Queue vs Storage Queue

Back

Service Bus Queue — enterprise features: sessions (FIFO), DLQ, peek-lock, transactions, max 256256256 KB (111 MB Premium) message size, max queue size 808080 GB. Storage Queue — simple, cheap, REST-only; 646464 KB messages, unlimited queue size (up to storage account cap), no sessions / DLQ / transactions.…

Card 3

Front

Topic + Subscription (Service Bus)

Back

Pub/sub primitive: publisher sends to a Topic, every Subscription under the topic gets a copy filtered by a SQL-like rule. Subscriptions are independent queues — multiple consumers can each get the messages they care about. Use for fan-out patterns (one event → many handlers). Up to 2,0002{,}0002,000 subscriptions per topic.

Card 4

Front

Dead-Letter Queue (DLQ)

Back

A sub-queue on every Service Bus queue / subscription that receives messages the system couldn't deliver — exceeded max delivery count, expired TTL, or explicitly dead-lettered by app code. Lets you isolate poison messages without blocking the main queue. Inspect, replay, or discard from DLQ via the SDK. Always monitor DLQ depth as an alert signal.