Additional SQL Server features and topics not covered by specific categories
I shall suggest you to go through the following :
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
This SQL Server documentation page states that:
SQL Server ignores NUMA configuration when hardware NUMA has four or less CPUs and at least one node has only one CPU.
less_then_or_equal_to_4 = true
for node in all_numa_nodes:
if node.cpu_count() > 4:
less_then_or_equal_to_4 = false
return one_node_has_one_cpu && less_then_or_equal_to_4
} Additional SQL Server features and topics not covered by specific categories
Answer accepted by question author
I shall suggest you to go through the following :
Hi @Robert L. Streicher ,
> This sentence seems indicate that different physical NUMA node could have different number of physical CPUs. Is this true?
Yes, you are right.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".