XK0-004 · Question #433
Which of the following will MOST likely fix the issue?
The correct answer is E. Exclude the web root directory from antivirus scanning. Antivirus software performing real-time scanning of the web root directory introduces per-request I/O latency that directly degrades web server response times.
Question
Which of the following will MOST likely fix the issue?
Options
- AAdd more CPUs to the server
- BReplace the network cable
- CAdd a second web server and a load balancer
- DAdd more RAM to the server
- EExclude the web root directory from antivirus scanning
How the community answered
(32 responses)- A6% (2)
- C9% (3)
- D3% (1)
- E81% (26)
Why each option
Antivirus software performing real-time scanning of the web root directory introduces per-request I/O latency that directly degrades web server response times.
Additional CPUs address CPU-bound bottlenecks; slow response caused by AV-intercepted file I/O is not a compute-bound problem.
A network cable replacement fixes physical-layer connectivity faults and does not affect software-level file access latency introduced by antivirus scanning.
A second web server with a load balancer distributes incoming traffic but replicates the same antivirus overhead on each node, leaving the root cause unresolved.
More RAM helps memory-bound or cache-starved workloads; AV-induced I/O interception is not resolved by increasing available memory.
Real-time antivirus scanning intercepts every file-read operation the web server performs against the web root, adding overhead to each HTTP request served. Excluding the web root directory from antivirus scanning eliminates this I/O bottleneck and restores expected response times. This is a standard performance tuning step recommended by most AV vendors when protecting web server hosts.
Concept tested: Web server performance impact of antivirus real-time scanning
Source: https://learn.microsoft.com/en-us/defender-endpoint/configure-exclusions-microsoft-defender-antivirus
Topics
Community Discussion
No community discussion yet for this question.