Skip to content

Commit

Permalink
Add support for windows CPU affinity
Browse files Browse the repository at this point in the history
Signed-off-by: Kirtana Ashok <[email protected]>
  • Loading branch information
kiashok committed Jun 26, 2024
1 parent 2d3f72e commit e85a1c8
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
2 changes: 2 additions & 0 deletions config-windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ The following parameters can be specified (mutually exclusive):
* **`count`** *(uint64, OPTIONAL)* - specifies the number of CPUs available to the container. It represents the fraction of the configured processor `count` in a container in relation to the processors available in the host. The fraction ultimately determines the portion of processor cycles that the threads in a container can use during each scheduling interval, as the number of cycles per 10,000 cycles.
* **`shares`** *(uint16, OPTIONAL)* - limits the share of processor time given to the container relative to other workloads on the processor. The processor `shares` (`weight` at the platform level) is a value between 0 and 10,000.
* **`maximum`** *(uint16, OPTIONAL)* - determines the portion of processor cycles that the threads in a container can use during each scheduling interval, as the number of cycles per 10,000 cycles. Set processor `maximum` to a percentage times 100.
* **`affinityCPUs`** *(object, OPTIONAL)* - specifies the set of CPU to affinitize for this container.
* **`affinityPreferredNumaNodes`** *(uint32, OPTIONAL)* - specifies referred set of numa node numbers to affinitize for this container.

Ref: https://docs.microsoft.com/en-us/virtualization/api/hcs/schemareference#Container_Processor

Expand Down
13 changes: 13 additions & 0 deletions specs-go/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -627,6 +627,19 @@ type WindowsCPUResources struct {
// cycles per 10,000 cycles. Set processor `maximum` to a percentage times
// 100.
Maximum *uint16 `json:"maximum,omitempty"`
// Set of CPUs to affinitize for this container.
AffinityCPUs []WindowsCPUGroupAffinity `json:"affinityCPUs,omitempty"`
// Specifies preferred set of numa node numbers to affinitize for this container.
AffinityPreferredNumaNodes []uint32 `json:"affinityPreferredNumaNodes,omitempty"`
}

// Similar to _GROUP_AFFINITY struct defined in
// https://learn.microsoft.com/en-us/windows-hardware/drivers/ddi/miniport/ns-miniport-_group_affinity
type WindowsCPUGroupAffinity struct {
// CPU mask relative to this CPU group.
CPUMask uint64 `json:"cpuMask,omitempty"`
// Processor group the mask refers to, as returned by GetLogicalProcessorInformationEx.
CPUGroup uint32 `json:"cpuGroup,omitempty"`
}

// WindowsStorageResources contains storage resource management settings.
Expand Down

0 comments on commit e85a1c8

Please sign in to comment.