Estou tentando alocar um conjunto de CPUs em um servidor NUMA de 2 nós conforme abaixo:
Abaixo está o coreinfo que mostra processadores físicos, processadores lógicos e nós NUMA no servidor.
Logical to Physical Processor Map:
**-------------- Physical Processor 0 (Hyperthreaded)
--**------------ Physical Processor 1 (Hyperthreaded)
----**---------- Physical Processor 2 (Hyperthreaded)
------**-------- Physical Processor 3 (Hyperthreaded)
--------**------ Physical Processor 4 (Hyperthreaded)
----------**---- Physical Processor 5 (Hyperthreaded)
------------**-- Physical Processor 6 (Hyperthreaded)
--------------** Physical Processor 7 (Hyperthreaded)
Logical Processor to Socket Map:
********-------- Socket 0
--------******** Socket 1
Logical Processor to NUMA Node Map:
********-------- NUMA Node 0
--------******** NUMA Node 1
Estou executando 2 instâncias do SQL Server 2008R2 Standard Edition.
O que tenho feito é:
Vincule o NÓ 0 à Instância 1. Assim , a instância 1 terá 8 processadores lógicos.
ALTER SERVER CONFIGURATION SET PROCESS AFFINITY NUMANODE = 0
GO
2013-11-07 13:01:20.79 Server Processor affinity turned on: node 0, processor mask 0x00000000000000ff. Threads will execute on CPUs per affinity settings. This is an informational message; no user action is required.
2013-11-07 13:01:20.79 Server Processor affinity turned on: node 1, processor mask 0x0000000000000000. Threads will execute on CPUs per affinity settings. This is an informational message; no user action is required.
2013-11-07 13:01:20.82 Server Using dynamic lock allocation. Initial allocation of 2500 Lock blocks and 5000 Lock Owner blocks per node. This is an informational message only. No user action is required.
2013-11-07 13:01:20.82 Server Lock partitioning is enabled. This is an informational message only. No user action is required.
2013-11-07 13:01:20.83 Server Node configuration: node 0: CPU mask: 0x00000000000000ff:0 Active CPU mask: 0x00000000000000ff:0. This message provides a description of the NUMA configuration for this computer. This is an informational message only. No user action is required.
2013-11-07 13:01:20.83 Server Node configuration: node 1: CPU mask: 0x000000000000ff00:0 Active CPU mask: 0x0000000000000000:0. This message provides a description of the NUMA configuration for this computer. This is an informational message only. No user action is required.
Eu posso ver a instância 1 capaz de ouvir no NODE 0 conforme abaixo:
2013-11-07 13:01:21.05 Interfaces de rede do servidor SQL Server inicializaram ouvintes no nó 0 de uma configuração de servidor de vários nós (NUMA) com máscara de afinidade de nó 0x0000000000000001 . Esta é apenas uma mensagem informativa. Não é necessária nenhuma ação do usuário.
AGORA NA INSTANCE2:
Vincule o NÓ 1 à instância 2. Assim , a instância 2 terá 8 processadores lógicos.
ALTER SERVER CONFIGURATION SET PROCESS AFFINITY NUMANODE = 1
GO
O log de erros também confirma isso:
2013-11-07 13:03:51.16 Server Detected 16 CPUs. This is an informational message; no user action is required.
2013-11-07 13:03:51.49 Server Processor affinity turned on: node 0, processor mask 0x000000000000ff00. Threads will execute on CPUs per affinity settings. This is an informational message; no user action is required.
2013-11-07 13:03:51.49 Server Processor affinity turned on: node 1, processor mask 0x0000000000000000. Threads will execute on CPUs per affinity settings. This is an informational message; no user action is required.
2013-11-07 13:03:51.52 Server Using dynamic lock allocation. Initial allocation of 2500 Lock blocks and 5000 Lock Owner blocks per node. This is an informational message only. No user action is required.
2013-11-07 13:03:51.52 Server Lock partitioning is enabled. This is an informational message only. No user action is required.
2013-11-07 13:03:51.53 Server Node configuration: node 0: CPU mask: 0x000000000000ff00:0 Active CPU mask: 0x000000000000ff00:0. This message provides a description of the NUMA configuration for this computer. This is an informational message only. No user action is required.
2013-11-07 13:03:51.53 Server Node configuration: node 1: CPU mask: 0x00000000000000ff:0 Active CPU mask: 0x0000000000000000:0. This message provides a description of the NUMA configuration for this computer. This is an informational message only. No user action is required.
Mas por que INSTANCE2 está ouvindo em NUMA 0 e NÃO NUMA 1?
Ambas as instâncias terão MAXDOP definido como 4.
2013-11-07 13:03:51.78 Interfaces de rede do servidor SQL Server inicializaram ouvintes no nó 0 de uma configuração de servidor de vários nós (NUMA) com máscara de afinidade de nó 0x0000000000000001. Esta é apenas uma mensagem informativa. Não é necessária nenhuma ação do usuário.
Além disso, abaixo estão minhas CONFIGURAÇÕES TCP/IP:
Observação:
Eu tentei as coisas abaixo também:
desligue primeiro a afinidade da CPU e depois vincule as portas para ver se funciona. Isso funciona bem e consigo ver NUMA 0 ouvindo em uma porta e NUMA 1 ouvindo na segunda porta. Isso é o que eu quero, mas não quero desligar o CPU Affinity. Estou na direção certa?
Afinidade da CPU LIGADA. Tente atribuir NUMA às portas. Isso não funciona no sentido de que Instance1 está vinculado a NUMA 0 e Instance 2 não mostra no log de erros que está escutando em NUMA 1.
Obrigado !
Como você afinizou cada instância a um nó NUMA com ALTER SERVER CONFIGURATION, isso é tudo o que você precisa fazer e o mapeamento de porta não é necessário para esta configuração. A razão pela qual não é necessário é que as instâncias só podem atribuir tarefas ao nó ONLINE e, como cada uma possui apenas um nó ONLINE, é onde todas as tarefas devem ser atribuídas como parte da afinidade de CPU da instância. No Soft NUMA, você pode subdividir e isolar ainda mais as instâncias individuais, mas não vejo razão para fazê-lo.