ASYNC_NETWORK_IO

MEDIUM Latency
#network#client#result-set
Related diagnostic scripts:

Overview

Occurs when the task is waiting for the network to send data to the client. High values often indicate the client application is not consuming results fast enough — the classic ‘slow client’ signal.

Key Metrics

MetricDescription
Wait TypeASYNC_NETWORK_IO
CategoryLatency
SeverityMEDIUM

Troubleshooting

1. Identify the source

Use the following query to identify the top queries contributing to ASYNC_NETWORK_IO waits:

SELECT TOP 10
 [Wait Type] = wait_type,
 [Wait Seconds] = wait_time_ms / 1000,
 [Wait Count] = waiting_tasks_count,
 [Avg Wait Ms] = wait_time_ms / NULLIF(waiting_tasks_count, 0)
FROM sys.dm_os_wait_stats
WHERE wait_type = 'ASYNC_NETWORK_IO'
ORDER BY wait_time_ms DESC;

See Also