BrainyBeeBrainyBee
ExploreBlogStart Studying
HomeDesigning Microsoft Azure Infrastructure Solutions (AZ-305)Quick Note — Recommend a Solution to Optimize Network Performance
LO Quick Note928 words

Quick Note — Recommend a Solution to Optimize Network Performance

AZ-305 › Unit 4: Design infrastructure solutions › Design network solutions › Recommend a solution to optimize network performance

Quick Note — Recommend a Solution to Optimize Network Performance

A global e-commerce platform with users on five continents finds its p99p99p99 checkout latency creeping past 2 seconds. The team's first instinct is to scale up the App Service plan to a higher SKU. The architect runs a network path trace instead and quickly finds the latency is not in compute at all — it's in network hops: clients in Sydney are routed to a single regional Application Gateway in West Europe via the public internet, adding ∼300\sim 300∼300 ms of round-trip latency to every single request.…

Retrieval target

Objective
Recommend a Solution to Optimize Network Performance
Mode
Closed-book recall
Target time
5 minutes
Escalation
Open the full lesson after a miss

Decision anchors

PromptCompact answer
Accelerated NetworkingSR-IOV on the VM's NIC — bypasses the hypervisor's software switch so packets go from the physical NIC straight to the VM. Result: higher throughput, lower latency, lower CPU overhead. Available on most D / E / F / M / N sizes with ≥4\geq 4≥4 vCores. Off by default on legacy images; turn on at NIC create time. Always enable for any latency-sensitive or high-throughput workload.
VNet Peering — Regional vs GlobalRegional peering — two VNets in the same Azure region connected via the Microsoft backbone. Throughput limited only by VM NIC; sub-ms latency. Global peering — VNets in different regions. Same backbone path but higher latency (geographic distance) and no transit through a remote VNet's NVA / VPN GW. Costs slightly more per GB. Both are non-transitive: A↔B + B↔C does NOT give A↔C.
Private Link / Private EndpointA NIC inside your VNet that gives you a private IP for an Azure PaaS service (Storage, SQL DB, Key Vault, App Service, etc.). Traffic stays on the Microsoft backbone — no public endpoint, no SNAT, no internet egress. Lowest-latency path to PaaS from inside Azure. Solves both perf (avoid public path) and security (no public exposure).
Proximity Placement Group (PPG) for networkA logical pin that keeps selected VMs physically close (same data-center row / building) for minimum inter-VM latency. Pair with Availability Zones / Sets to maintain HA. Use for chatty multi-tier apps where every microsecond matters — HPC, SAP HANA scale-out, latency-critical financial systems. Trade-off: less placement flexibility — Azure may not be able to fulfil the PPG in a full zone.

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 solution to optimize network performance, 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 Solution to Optimize Network Performance — Lesson4,000 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 Solution to Optimize Network Performance — quick retrieval

Card 1 of 4

Front of flashcard 1 of 4

Accelerated Networking

easy

SR-IOV on the VM's NIC — bypasses the hypervisor's software switch so packets go from the physical NIC straight to the VM. Result: higher throughput, lower latency, lower CPU overhead. Available on most D / E / F / M / N sizes with ≥4\geq 4≥4 vCores. Off by default on legacy images; turn on at NIC create time. Always enable for any latency-sensitive or high-throughput workload.

accelerated-networking

Recommend a Solution to Optimize Network Performance — quick retrieval

Card 1

Front

Accelerated Networking

Back

SR-IOV on the VM's NIC — bypasses the hypervisor's software switch so packets go from the physical NIC straight to the VM. Result: higher throughput, lower latency, lower CPU overhead. Available on most D / E / F / M / N sizes with ≥4\geq 4≥4 vCores. Off by default on legacy images; turn on at NIC create time. Always enable for any latency-sensitive or high-throughput workload.

Card 2

Front

VNet Peering — Regional vs Global

Back

Regional peering — two VNets in the same Azure region connected via the Microsoft backbone. Throughput limited only by VM NIC; sub-ms latency. Global peering — VNets in different regions. Same backbone path but higher latency (geographic distance) and no transit through a remote VNet's NVA / VPN GW. Costs slightly more per GB. Both are non-transitive: A↔B + B↔C does NOT give A↔C.

Card 3

Front

Private Link / Private Endpoint

Back

A NIC inside your VNet that gives you a private IP for an Azure PaaS service (Storage, SQL DB, Key Vault, App Service, etc.). Traffic stays on the Microsoft backbone — no public endpoint, no SNAT, no internet egress. Lowest-latency path to PaaS from inside Azure. Solves both perf (avoid public path) and security (no public exposure).

Card 4

Front

Proximity Placement Group (PPG) for network

Back

A logical pin that keeps selected VMs physically close (same data-center row / building) for minimum inter-VM latency. Pair with Availability Zones / Sets to maintain HA. Use for chatty multi-tier apps where every microsecond matters — HPC, SAP HANA scale-out, latency-critical financial systems. Trade-off: less placement flexibility — Azure may not be able to fulfil the PPG in a full zone.

Recommend a Solution to Optimize Network Performance — quick retrieval

Card 1

Front

Accelerated Networking

Back

SR-IOV on the VM's NIC — bypasses the hypervisor's software switch so packets go from the physical NIC straight to the VM. Result: higher throughput, lower latency, lower CPU overhead. Available on most D / E / F / M / N sizes with ≥4\geq 4≥4 vCores. Off by default on legacy images; turn on at NIC create time. Always enable for any latency-sensitive or high-throughput workload.

Card 2

Front

VNet Peering — Regional vs Global

Back

Regional peering — two VNets in the same Azure region connected via the Microsoft backbone. Throughput limited only by VM NIC; sub-ms latency. Global peering — VNets in different regions. Same backbone path but higher latency (geographic distance) and no transit through a remote VNet's NVA / VPN GW. Costs slightly more per GB. Both are non-transitive: A↔B + B↔C does NOT give A↔C.

Card 3

Front

Private Link / Private Endpoint

Back

A NIC inside your VNet that gives you a private IP for an Azure PaaS service (Storage, SQL DB, Key Vault, App Service, etc.). Traffic stays on the Microsoft backbone — no public endpoint, no SNAT, no internet egress. Lowest-latency path to PaaS from inside Azure. Solves both perf (avoid public path) and security (no public exposure).

Card 4

Front

Proximity Placement Group (PPG) for network

Back

A logical pin that keeps selected VMs physically close (same data-center row / building) for minimum inter-VM latency. Pair with Availability Zones / Sets to maintain HA. Use for chatty multi-tier apps where every microsecond matters — HPC, SAP HANA scale-out, latency-critical financial systems. Trade-off: less placement flexibility — Azure may not be able to fulfil the PPG in a full zone.