1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
|
package hst
import (
"bufio"
"errors"
"fmt"
"os"
"os/exec"
"strconv"
"strings"
. "github.com/onsi/ginkgo/v2"
)
var CgroupPath = "/sys/fs/cgroup/"
type CpuContext struct {
cpuAllocator *CpuAllocatorT
cpus []int
}
type CpuAllocatorT struct {
cpus []int
runningInCi bool
buildNumber int
maxContainerCount int
}
func iterateAndAppend(start int, end int, slice []int) []int {
for i := start; i <= end; i++ {
slice = append(slice, i)
}
return slice
}
var cpuAllocator *CpuAllocatorT = nil
func (c *CpuAllocatorT) Allocate(containerCount int, nCpus int) (*CpuContext, error) {
var cpuCtx CpuContext
// indexes, not actual cores
var minCpu, maxCpu int
if c.runningInCi {
minCpu = ((c.buildNumber) * c.maxContainerCount * nCpus)
maxCpu = ((c.buildNumber + 1) * c.maxContainerCount * nCpus) - 1
} else {
minCpu = ((GinkgoParallelProcess() - 1) * c.maxContainerCount * nCpus)
maxCpu = (GinkgoParallelProcess() * c.maxContainerCount * nCpus) - 1
}
if len(c.cpus)-1 < maxCpu {
err := fmt.Errorf("could not allocate %d CPUs; available count: %d; attempted to allocate cores with index %d-%d; max index: %d;\n"+
"available cores: %v", nCpus*containerCount, len(c.cpus), minCpu, maxCpu, len(c.cpus)-1, c.cpus)
return nil, err
}
if containerCount == 1 {
cpuCtx.cpus = c.cpus[minCpu : minCpu+nCpus]
} else if containerCount > 1 && containerCount <= c.maxContainerCount {
cpuCtx.cpus = c.cpus[minCpu+(nCpus*(containerCount-1)) : minCpu+(nCpus*containerCount)]
} else {
return nil, fmt.Errorf("too many containers; CPU allocation for >%d containers is not implemented", c.maxContainerCount)
}
cpuCtx.cpuAllocator = c
return &cpuCtx, nil
}
func (c *CpuAllocatorT) readCpus() error {
var first, second, third, fourth int
var file *os.File
var err error
if c.runningInCi {
// non-debug build runs on node0, debug on node1
if *IsDebugBuild {
file, err = os.Open("/sys/devices/system/node/node1/cpulist")
} else {
file, err = os.Open("/sys/devices/system/node/node0/cpulist")
}
if err != nil {
return err
}
defer file.Close()
sc := bufio.NewScanner(file)
sc.Scan()
line := sc.Text()
_, err = fmt.Sscanf(line, "%d-%d,%d-%d", &first, &second, &third, &fourth)
if err != nil {
return err
}
c.cpus = iterateAndAppend(first, second, c.cpus)
c.cpus = iterateAndAppend(third, fourth, c.cpus)
} else if NumaAwareCpuAlloc {
var fifth, sixth int
var tmpCpus []int
file, err := os.Open("/sys/devices/system/node/online")
if err != nil {
return err
}
defer file.Close()
sc := bufio.NewScanner(file)
sc.Scan()
line := sc.Text()
// get numa node range
_, err = fmt.Sscanf(line, "%d-%d", &first, &second)
if err != nil {
return err
}
for i := first; i <= second; i++ {
file, err := os.Open("/sys/devices/system/node/node" + fmt.Sprint(i) + "/cpulist")
if err != nil {
return err
}
defer file.Close()
// get numa node cores
sc := bufio.NewScanner(file)
sc.Scan()
line := sc.Text()
_, err = fmt.Sscanf(line, "%d-%d,%d-%d", &third, &fourth, &fifth, &sixth)
if err != nil {
return err
}
// get numa node cores from first range
tmpCpus = iterateAndAppend(third, fourth, tmpCpus)
// discard cpu 0
if tmpCpus[0] == 0 && !*UseCpu0 {
tmpCpus = tmpCpus[1:]
}
// get numa node cores from second range
tmpCpus = iterateAndAppend(fifth, sixth, tmpCpus)
// make c.cpus divisible by maxContainerCount * nCpus, so we don't have to check which numa will be used
// and we can use offsets
count_to_remove := len(tmpCpus) % (c.maxContainerCount * *NConfiguredCpus)
c.cpus = append(c.cpus, tmpCpus[:len(tmpCpus)-count_to_remove]...)
tmpCpus = tmpCpus[:0]
}
} else {
// Path depends on cgroup version. We need to check which version is in use.
// For that following command can be used: 'stat -fc %T /sys/fs/cgroup/'
// In case the output states 'cgroup2fs' then cgroups v2 is used, 'tmpfs' in case cgroups v1.
cmd := exec.Command("stat", "-fc", "%T", "/sys/fs/cgroup/")
byteOutput, err := cmd.CombinedOutput()
if err != nil {
return err
}
CpuPath := CgroupPath
if strings.Contains(string(byteOutput), "tmpfs") {
CpuPath += "cpuset/cpuset.effective_cpus"
} else if strings.Contains(string(byteOutput), "cgroup2fs") {
CpuPath += "cpuset.cpus.effective"
} else {
return errors.New("cgroup unknown fs: " + string(byteOutput))
}
file, err := os.Open(CpuPath)
if err != nil {
return err
}
defer file.Close()
sc := bufio.NewScanner(file)
sc.Scan()
line := sc.Text()
_, err = fmt.Sscanf(line, "%d-%d", &first, &second)
if err != nil {
return err
}
c.cpus = iterateAndAppend(first, second, c.cpus)
}
// discard cpu 0
if c.cpus[0] == 0 && !*UseCpu0 {
c.cpus = c.cpus[1:]
}
return nil
}
func CpuAllocator() (*CpuAllocatorT, error) {
if cpuAllocator == nil {
var err error
cpuAllocator = new(CpuAllocatorT)
cpuAllocator.maxContainerCount = 4
buildNumberStr := os.Getenv("BUILD_NUMBER")
if buildNumberStr != "" {
cpuAllocator.runningInCi = true
// get last digit of build number
cpuAllocator.buildNumber, err = strconv.Atoi(buildNumberStr[len(buildNumberStr)-1:])
if err != nil {
return nil, err
}
}
err = cpuAllocator.readCpus()
if err != nil {
return nil, err
}
}
return cpuAllocator, nil
}
|