You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: "violating NUMA allocations because given affinity asks for NUMA ID 1 which is on different cells group",
3909
+
machineState: map[int]*state.NUMANodeState{
3910
+
0: {
3911
+
NumberOfAssignments: 1,
3912
+
Cells: []int{0, 1},
3913
+
},
3914
+
1: {
3915
+
NumberOfAssignments: 1,
3916
+
Cells: []int{0, 1},
3917
+
},
3918
+
2: {
3919
+
NumberOfAssignments: 1,
3920
+
Cells: []int{2},
3921
+
},
3922
+
3: {
3923
+
NumberOfAssignments: 0,
3924
+
Cells: []int{3},
3925
+
},
3926
+
},
3927
+
topologyHint: &topologymanager.TopologyHint{
3928
+
NUMANodeAffinity: newNUMAAffinity(1, 2),
3929
+
},
3930
+
isViolationExpected: true,
3931
+
},
3932
+
{
3933
+
description: "violating NUMA allocations because given affinity with multiple nodes asks for NUMA ID 1 which is used for a single NUMA node memory allocation",
3934
+
machineState: map[int]*state.NUMANodeState{
3935
+
0: {
3936
+
NumberOfAssignments: 0,
3937
+
Cells: []int{0, 1},
3938
+
},
3939
+
1: {
3940
+
NumberOfAssignments: 1,
3941
+
Cells: []int{1},
3942
+
},
3943
+
},
3944
+
topologyHint: &topologymanager.TopologyHint{
3945
+
NUMANodeAffinity: newNUMAAffinity(0, 1),
3946
+
},
3947
+
isViolationExpected: true,
3948
+
},
3949
+
{
3950
+
description: "valid affinity, no prior assignments",
0 commit comments