BrainyBeeBrainyBee
ExploreBlogStart Studying
HomeDesigning Microsoft Azure Infrastructure Solutions (AZ-305)Quick Note — Recommend a Serverless-Based Solution
LO Quick Note882 words

Quick Note — Recommend a Serverless-Based Solution

AZ-305 › Unit 4: Design infrastructure solutions › Design compute solutions › Recommend a serverless-based solution

Quick Note — Recommend a Serverless-Based Solution

A fintech team builds a webhook receiver for a payment provider. Volume is bursty — silent for hours, then 5,0005{,}0005,000 events in two minutes when reconciliation runs. The team originally builds it on a 2-instance App Service plan (∼$150\sim $150∼$150/month, always on). The bill is fine, but the architect asks two questions during review: "What happens when reconciliation overlaps with a partner integration burst?" and "Why are you paying $24/7 for a workload that runs 4 hours a day?". A redesign onto `Azure Functions` Consumption plan cuts the bill to $$\sim $3/month and removes the capacity-overlap risk entirely. The Functions plan handles a 50{×\times×}$ burst without intervention.…

Retrieval target

Objective
Recommend a Serverless-Based Solution
Mode
Closed-book recall
Target time
5 minutes
Escalation
Open the full lesson after a miss

Decision anchors

PromptCompact answer
Azure FunctionsAn event-driven serverless compute service. Write a function (Node, .NET, Python, Java, PowerShell), attach a trigger (HTTP, Timer, Blob, Queue, Event Grid, Service Bus, Cosmos, Event Hub), and the platform invokes it. Adjacent bindings wire inputs and outputs (Storage, Cosmos, Service Bus) without manual SDK code. Pay-per-execution + per-GB-second on Consumption; per-instance on Premium/Dedicated.
Functions Consumption planTrue serverless Functions plan: scale-to-zero, pay only for executions (1M free + 400,000400{,}000400,000 GB-s / month). Auto-scales to 200 instances max, cold start can be seconds, function timeout default 5 min, max 10 min (configurable). No VNet integration by default (Flex Consumption is the modern variant that adds VNet + warmth). Pick for spiky / bursty / dev / low-volume.
Functions Premium planFunctions running on pre-warmed instances: no cold start, VNet integration built-in, longer execution time (no 10-min cap), more memory (14 GB). You pay for the pre-warmed instance (24/7) plus consumption above it. Pick when you need predictable latency, VNet access to private resources (DB, App Gateway), or long-running functions (>10> 10>10 min).
Functions on the App Service (Dedicated) planFunctions sharing an App Service Plan with web apps — runs on plan VMs you've already paid for. No serverless properties (no scale-to-zero, no per-execution pricing). Useful when you have spare ASP capacity and want to colocate a small function with an app. Pick only when you can't justify Premium or Consumption — i.e., when the ASP is already paid for.

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 serverless-based solution, 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 Serverless-Based Solution — Lesson4,408 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 Serverless-Based Solution — quick retrieval

Card 1 of 4

Front of flashcard 1 of 4

Azure Functions

easy

An event-driven serverless compute service. Write a function (Node, .NET, Python, Java, PowerShell), attach a trigger (HTTP, Timer, Blob, Queue, Event Grid, Service Bus, Cosmos, Event Hub), and the platform invokes it. Adjacent bindings wire inputs and outputs (Storage, Cosmos, Service Bus) without manual SDK code. Pay-per-execution + per-GB-second on Consumption; per-instance on Premium/Dedicated.

azure-functionsserverless

Recommend a Serverless-Based Solution — quick retrieval

Card 1

Front

Azure Functions

Back

An event-driven serverless compute service. Write a function (Node, .NET, Python, Java, PowerShell), attach a trigger (HTTP, Timer, Blob, Queue, Event Grid, Service Bus, Cosmos, Event Hub), and the platform invokes it. Adjacent bindings wire inputs and outputs (Storage, Cosmos, Service Bus) without manual SDK code. Pay-per-execution + per-GB-second on Consumption; per-instance on Premium/Dedicated.

Card 2

Front

Functions Consumption plan

Back

True serverless Functions plan: scale-to-zero, pay only for executions (111M free + 400,000400{,}000400,000 GB-s / month). Auto-scales to 200200200 instances max, cold start can be seconds, function timeout default 555 min, max 101010 min (configurable). No VNet integration by default (Flex Consumption is the modern variant that adds VNet + warmth). Pick for spiky / bursty / dev / low-volume.

Card 3

Front

Functions Premium plan

Back

Functions running on pre-warmed instances: no cold start, VNet integration built-in, longer execution time (no 101010-min cap), more memory (141414 GB). You pay for the pre-warmed instance (242424/777) plus consumption above it. Pick when you need predictable latency, VNet access to private resources (DB, App Gateway), or long-running functions (>10> 10>10 min).

Card 4

Front

Functions on the App Service (Dedicated) plan

Back

Functions sharing an App Service Plan with web apps — runs on plan VMs you've already paid for. No serverless properties (no scale-to-zero, no per-execution pricing). Useful when you have spare ASP capacity and want to colocate a small function with an app. Pick only when you can't justify Premium or Consumption — i.e., when the ASP is already paid for.

Recommend a Serverless-Based Solution — quick retrieval

Card 1

Front

Azure Functions

Back

An event-driven serverless compute service. Write a function (Node, .NET, Python, Java, PowerShell), attach a trigger (HTTP, Timer, Blob, Queue, Event Grid, Service Bus, Cosmos, Event Hub), and the platform invokes it. Adjacent bindings wire inputs and outputs (Storage, Cosmos, Service Bus) without manual SDK code. Pay-per-execution + per-GB-second on Consumption; per-instance on Premium/Dedicated.

Card 2

Front

Functions Consumption plan

Back

True serverless Functions plan: scale-to-zero, pay only for executions (111M free + 400,000400{,}000400,000 GB-s / month). Auto-scales to 200200200 instances max, cold start can be seconds, function timeout default 555 min, max 101010 min (configurable). No VNet integration by default (Flex Consumption is the modern variant that adds VNet + warmth). Pick for spiky / bursty / dev / low-volume.

Card 3

Front

Functions Premium plan

Back

Functions running on pre-warmed instances: no cold start, VNet integration built-in, longer execution time (no 101010-min cap), more memory (141414 GB). You pay for the pre-warmed instance (242424/777) plus consumption above it. Pick when you need predictable latency, VNet access to private resources (DB, App Gateway), or long-running functions (>10> 10>10 min).

Card 4

Front

Functions on the App Service (Dedicated) plan

Back

Functions sharing an App Service Plan with web apps — runs on plan VMs you've already paid for. No serverless properties (no scale-to-zero, no per-execution pricing). Useful when you have spare ASP capacity and want to colocate a small function with an app. Pick only when you can't justify Premium or Consumption — i.e., when the ASP is already paid for.