SQL Server CPU and Memory impact analysis is a vital process to evaluate resource usage and performance.

By monitoring query execution, workload patterns, and memory consumption, it enables efficient resource allocation, identifies bottlenecks, and ensures optimal database operations, leading to a more responsive and stable system.

SQL OS implements a hierarchy of system objects that provide the framework of scheduling, from workers, tasks and memory nodes. Memory node is a logical container associated with CPU share memory which can either be NUMA or soft Numa (Non-Uniform Memory Access).

Nowadays, current NUMA:

Is NUMA still matters? Yes, because..

select mg.node_id, mg.memory_node_id,mg.node_state_desc,mg.cpu_affinity_mask, gm.virtual_address_space_reserved_kbfrom sys.dm_os_nodes as mginner join sys.dm_os_memory_nodes as gmon mg.node_id = gm.memory_node_id

Not sure about the problem, Do NOT do this unless you want to masked the root cause.

> It will remove the actual issue like parameter sniffing and recompiled plans so problem will not resolve.


By default configuration of 0

> Actual number is (NumberOfScheduler - 4)*8) +256

> Actual number is (NumberOfScheduler - 4)*16) +512


select max_workers_countfrom sys.dm_os_sys_info

Queries responsible for minor amount of I/O:

Resolving an IO often solve CPU issues:


> Standard Edition - 4 sockets & 16 cores

> Enterprise Server + CAL limited to 20 cores


> MAXDOP of the database applied

> Check TempDB & #temp tables - tempDB MAXDOP may apply

> 32GB additional for In-memory OLTP

> 32GB additional for Column Store

> Windows Server 2016 = up to 24TB

> Windows Server 2012R2 = up to 4TB



Symptoms: (Windows OS Pressure)

Cause:

Resolution:

> Procedure cache and system rowset cache.

> Schema manager, security and metadata cache


Cause:

Resolution:

> Data page cache

> Procedure cache on 64-bit instance


> incorrect configuration of Resource Governor

> Resolve by re-writing the queries and use store procedure to improve plan cache reuse through parameterization.

Sources and good reads: