SQL Server TempDB PAGELATCH contention: allocation page latch waits on PFS, GAM, and SGAM
CPU is moderate, I/O latency is normal, the buffer pool is healthy, and throughput has dropped. Wait statistics show PAGELATCH_UP or PAGELATCH_EX dominating, and sys.dm_os_waiting_tasks shows sessions waiting on pages like 2:1:1, 2:1:2, or 2:1:3.
This is TempDB allocation page latch contention. Every temp table, spilled sort, or worktable allocation needs space in TempDB. SQL Server tracks free space and allocation state in bitmap pages: PFS (Page Free Space), GAM (Global Allocation Map), and SGAM (Shared Global Allocation Map). When sessions contend for the same allocation pages, they serialize on in-memory latches. Disk and CPU are not the bottleneck. The problem is logical contention on a fixed set of pages in the buffer pool.
The classic cause is a single TempDB data file on a multi-core server. The fix is to add equally sized data files so allocation requests spread across independent sets of allocation pages.
What this means
PAGELATCH waits are in-memory latch waits on pages already in the buffer pool, distinct from PAGEIOLATCH waits that wait for a page to be read from disk. Allocation pages (PFS, GAM, SGAM) are updated on every extent or page allocation or deallocation in a file.
In TempDB (database_id 2), these allocation pages live at fixed locations in each data file. In file_id 1:
| Page | Address | Role |
|---|---|---|
| PFS | 2:1:1 | Tracks free space per page (one byte per page) |
| GAM | 2:1:2 | Tracks which extents are fully allocated (uniform extents) |
| SGAM | 2:1:3 | Tracks which extents have at least one free mixed page |
Each additional data file gets its own set of these pages at the same offsets within that file. With one TempDB file, every allocation in TempDB serializes through the same PFS, GAM, and SGAM pages. With eight files, allocation requests spread across eight independent sets of allocation pages, reducing per-page contention roughly eightfold.
flowchart TD
subgraph Single["1 TempDB data file"]
A1["Alloc req 1"] -->|"latch OK"| P1["PFS page 2:1:1"]
A2["Alloc req 2"] -.->|"waits"| P1
A3["Alloc req 3"] -.->|"waits"| P1
end
subgraph Multi["4 TempDB data files"]
B1["Alloc req 1"] --> P2["PFS 2:1:1"]
B2["Alloc req 2"] --> P3["PFS 2:2:1"]
B3["Alloc req 3"] --> P4["PFS 2:3:1"]
B4["Alloc req 4"] --> P5["PFS 2:4:1"]
endThe constraint is a latch on a single in-memory page, which is why CPU and I/O are both underutilized relative to the throughput drop.
Common causes
| Cause | What it looks like | First thing to check |
|---|---|---|
| Single TempDB data file | PAGELATCH_UP dominant, resource_description 2:1:1 or 2:1:3 | Count TempDB data files via sys.master_files WHERE database_id = 2 AND type = 0 |
| Too few files for core count | Contention persists after adding some files, still on early allocation pages | Compare file count to logical CPU count from sys.dm_os_sys_info |
| Unequal file sizes | Contention returns after uneven autogrowth | Check size column in sys.master_files for TempDB across all files |
| Metadata contention misdiagnosed as allocation | PAGELATCH_EX on non-allocation pages (not 2:1:1/2/3) | Check exact page IDs in resource_description |
Quick checks
All of these are read-only and safe to run during an active incident.
-- PAGELATCH waits. Snapshot twice 30s apart and compute the delta.
SELECT wait_type, waiting_tasks_count, wait_time_ms,
wait_time_ms - signal_wait_time_ms AS resource_wait_ms
FROM sys.dm_os_wait_stats
WHERE wait_type LIKE 'PAGELATCH_%'
ORDER BY wait_time_ms DESC;
-- Confirm the waits are on TempDB (database_id = 2).
SELECT session_id, wait_type, wait_duration_ms, resource_description
FROM sys.dm_os_waiting_tasks
WHERE wait_type LIKE 'PAGELATCH_%'
AND resource_description LIKE '2:%';
-- Count TempDB data files and check they are equally sized.
SELECT file_id, name, size * 8 / 1024 AS size_mb, growth, is_percent_growth
FROM sys.master_files
WHERE database_id = 2 AND type = 0
ORDER BY file_id;
-- Logical CPU count drives the target file count.
SELECT cpu_count FROM sys.dm_os_sys_info;
-- SQL Server version determines which engine improvements apply.
SELECT @@VERSION;
-- TempDB space consumers (rule out exhaustion as a separate problem).
SELECT
SUM(user_object_reserved_page_count) * 8 / 1024 AS user_objects_mb,
SUM(internal_object_reserved_page_count) * 8 / 1024 AS internal_objects_mb,
SUM(version_store_reserved_page_count) * 8 / 1024 AS version_store_mb,
SUM(unallocated_extent_page_count) * 8 / 1024 AS free_space_mb
FROM tempdb.sys.dm_db_file_space_usage;
How to diagnose it
Confirm PAGELATCH is the top wait category. Snapshot
sys.dm_os_wait_statstwice, 30 seconds apart, and compute deltas. If PAGELATCH_UP or PAGELATCH_EX appears in the top waits by resource wait time (after excluding idle waits like LAZYWRITER_SLEEP, WAITFOR, and BROKER_*), proceed.Confirm the waits are on TempDB. Query
sys.dm_os_waiting_tasksfiltering forwait_type LIKE 'PAGELATCH_%' AND resource_description LIKE '2:%'. The2prefix means database_id 2 (TempDB). PAGELATCH waits on other database IDs are hot page contention in a user database, not TempDB allocation contention.Identify which allocation pages are contended.
resource_descriptionreturns the page address asdb_id:file_id:page_id. For allocation contention, expect pages like2:1:1through2:1:3(PFS, GAM, SGAM in file 1), or the same low page numbers in other files (2:2:1,2:3:1, and so on).Rule out metadata contention. If
resource_descriptionshows higher page IDs (for example2:1:128or other non-allocation pages), this is metadata latch contention on system tables (such assys.sysobjvalues), not allocation contention. Adding TempDB data files will not fix it. On SQL Server 2016 and 2017, KB4058174 addressed a knownsysobjvaluescontention bug that caused PAGELATCH_EX on non-allocation pages during heavy temp table DDL. On SQL Server 2019+, memory-optimized TempDB metadata can eliminate metadata latch contention on these system tables.Verify file count and sizing. Check
sys.master_filesfor database_id 2. Count the data files (type = 0). A single file on a multi-core machine is the root cause. If files exist but are unequally sized, proportional fill sends more allocations to the larger file and recreates contention on that file’s allocation pages.Rule out TempDB space exhaustion as a compounding issue. Allocation contention and space exhaustion are independent problems that can coexist. If free space is low, queries may also fail with error 1105. Address both.
Metrics and signals to monitor
| Signal | Why it matters | Warning sign |
|---|---|---|
| PAGELATCH_UP/EX as percentage of total waits | Indicates allocation page contention severity | Sustained above 5% of total wait time |
resource_description pattern 2:1:% | Confirms TempDB allocation pages, not user database hot pages | Repeated waits on pages 1, 2, or 3 in file 1 |
| TempDB data file count | Must scale with logical CPU count | Single file, or fewer than 8 on a multi-core box |
| TempDB file size equality | Unequal sizes cause uneven allocation via proportional fill | Any file more than a few MB different from others |
| Batch requests/sec during contention | Quantifies throughput impact | Drop in batch requests while connections remain steady |
| Version store size | RCSI and snapshot workloads add TempDB allocation pressure | Version store above 50% of TempDB space |
Fixes
Add TempDB data files
This is the primary fix. The recommendation is one data file per logical CPU, up to 8. If contention persists after reaching 8 files, add files in multiples of 4, up to the number of logical processors.
All files must be the same size. SQL Server uses proportional fill: it weights new allocations toward files with more free space. If one file is larger, it gets a disproportionate share of allocations and its allocation pages become the new bottleneck.
-- Current file configuration
SELECT file_id, name, physical_name, size * 8 / 1024 AS size_mb,
growth, is_percent_growth
FROM sys.master_files
WHERE database_id = 2 AND type = 0
ORDER BY file_id;
-- Example: add a second TempDB data file matching existing file size.
-- Replace the path and SIZE/FILEGROWTH with your existing file's values.
-- Verify the target directory exists and the SQL Server service account can write to it.
ALTER DATABASE tempdb ADD FILE (
NAME = N'tempdev2',
FILENAME = N'E:\SQLData\tempdb2.ndf',
SIZE = 25600MB,
FILEGROWTH = 256MB
);
The new file is created on disk immediately and SQL Server begins using it for new allocations. No restart is required. The catalog change is permanent across restarts. If the existing primary file is much larger than the new files, resize it down or grow the new files to match so all files are equal.
Disable percent growth
If TempDB files use percent growth (is_percent_growth = 1), each autogrow event makes the file larger by a percentage of its current size, causing files to diverge. Switch to fixed-size growth increments applied equally to all files.
Pre-size TempDB files
TempDB is recreated at its configured initial size on every restart. If the initial size is too small, the instance pays for autogrowth events during startup and early workload warmup. Pre-size all TempDB files to handle the expected working set at peak, with the same initial size and the same fixed growth increment on every file.
Version-specific engine improvements
The fundamental fix (multiple equally sized files) is the standard recommendation across all versions, but newer engines reduce the per-page serialization:
SQL Server 2016+: Uniform extent allocation is enabled by default for TempDB, and all data files autogrow together. Trace flags 1117 and 1118, previously needed to enable these behaviors, are no longer required for TempDB. TF 1118 still applies to user databases on older versions for the same purpose.
SQL Server 2019+: PFS page updates use shared latches instead of exclusive latches, reducing PFS contention natively. SQL Server 2019 also introduced memory-optimized TempDB metadata, which moves system tables (such as
sys.sysobjvalues,sys.sysschobjs) into latch-free in-memory structures. This eliminates metadata latch contention but requiresALTER SERVER CONFIGURATION SET MEMORY_OPTIMIZED_TEMPDB_METADATA = ONfollowed by a restart, and it is not enabled by default. Tradeoffs: a single transaction cannot access memory-optimized tables in more than one database, and columnstore indexes on temp tables are not supported when it is enabled.SQL Server 2022+: GAM and SGAM page updates also use shared latches, allowing concurrent updates. Microsoft states that TempDB allocation contention is near-completely addressed in SQL Server 2022 and these improvements are on by default.
Even on SQL Server 2022, Microsoft recommends keeping multiple equally sized TempDB data files. The concurrent latch improvements reduce per-page serialization but do not eliminate the benefit of distributing allocations across files.
What does NOT fix allocation contention
- Adding more CPU. The constraint is logical serialization on a page, not CPU throughput.
- Faster storage. PAGELATCH waits do not involve disk I/O. PAGEIOLATCH waits do.
- More memory. The contended pages are already in the buffer pool.
- Adding TempDB files when the waits are on metadata pages, not allocation pages. Check the exact page IDs in
resource_descriptionfirst.
Prevention
- Start with the right file count at deployment. On SQL Server 2016+, Setup creates multiple TempDB data files by default (one per logical CPU up to 8). Do not override this to a single file.
- Equal sizing is ongoing, not one-time. Monitor file sizes after autogrowth. If one file grew larger than the others, resize all files to match.
- Monitor PAGELATCH waits as a time series. A single cumulative query against
sys.dm_os_wait_statsshows the entire uptime profile and is useless for identifying current problems. Snapshot every 30 to 60 seconds and compute deltas. A sudden spike in PAGELATCH_UP as a proportion of total waits is the leading indicator. - Watch for workload changes that increase TempDB allocation pressure. RCSI enablement, new temp-table-heavy stored procedures, and increased sort/hash spills all raise allocation page churn. These changes may not trigger alerts individually but compound to produce contention under load.
How Netdata helps
- Per-second wait statistics collection shows PAGELATCH_UP/EX emerging in real time. Correlating the wait spike with batch requests/sec and user connections confirms whether throughput is affected.
- TempDB space metrics (user objects, internal objects, version store, free space) distinguish allocation contention from space exhaustion, which present similar symptoms but need different fixes.
- I/O latency per file confirms that PFS, GAM, and SGAM latch waits are not masking a storage problem. If PAGELATCH is high but PAGEIOLATCH and I/O stall are flat, allocation contention is confirmed.
- CPU utilization and runnable scheduler backlog help rule out CPU pressure. PAGELATCH contention often presents as low CPU with high wait time, which looks paradoxical without wait-stats context.
- Anomaly detection on wait-type distributions surfaces the moment PAGELATCH_UP shifts from baseline, even before it becomes the dominant wait.
Netdata’s Microsoft SQL Server monitoring with Netdata brings these signals together with per-second metrics and ML anomaly detection.
Related guides
- SQL Server buffer cache hit ratio low: when the working set no longer fits in memory
- SQL Server user connections climbing: connection pool leaks and retry storms
- SQL Server CPU utilization high: telling query load apart from a bad plan
- SQL Server CXPACKET and CXCONSUMER waits: parallelism, MAXDOP, and what is actually wrong
- SQL Server Error 9002: the transaction log for the database is full
- SQL Server high compilations per second: plan cache pollution and CPU burn
- How Microsoft SQL Server actually works in production: a mental model for operators
- SQL Server log autogrow stall: why every write pauses while the log file grows
- SQL Server log backups missing: the full-recovery log that grows forever
- SQL Server log_reuse_wait_desc: why the transaction log will not truncate
- SQL Server transaction log percent used climbing toward full
- SQL Server max server memory: setting it so the OS and buffer pool both survive






