-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbenchmark_plans.go
157 lines (145 loc) · 5.31 KB
/
benchmark_plans.go
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
package main
import (
"sync"
"time"
docker "github.com/fsouza/go-dockerclient"
"github.com/random-liu/docker_micro_benchmark/helpers"
)
var (
wg = &sync.WaitGroup{}
)
func benchmarkContainerStart(client *docker.Client) {
cfg := containerOpConfig
period := cfg["period"].(time.Duration)
routine := cfg["routine"].(int)
helpers.LogTitle("container_op")
helpers.LogEVar(map[string]interface{}{
"period": period,
"routine": routine,
})
helpers.LogLabels("qps", "cps")
for _, q := range cfg["qps"].([]float64) {
start := time.Now()
latencies := helpers.DoParalContainerStartBenchmark(client, q, period, routine)
cps := float64(len(latencies)) / time.Now().Sub(start).Seconds()
helpers.LogResult(latencies, helpers.Ftoas(q, cps)...)
start = time.Now()
latencies = helpers.DoParalContainerStopBenchmark(client, q, routine)
cps = float64(len(latencies)) / time.Now().Sub(start).Seconds()
helpers.LogResult(latencies, helpers.Ftoas(q, cps)...)
}
}
func benchmarkVariesContainerNumber(client *docker.Client) {
cfg := variesContainerNumConfig
deadContainers := cfg["dead"].([]int)
aliveContainers := cfg["alive"].([]int)
period := cfg["period"].(time.Duration)
interval := cfg["interval"].(time.Duration)
dead := deadContainers[0]
alive := aliveContainers[0]
ids := append(helpers.CreateDeadContainers(client, dead), helpers.CreateAliveContainers(client, alive)...)
helpers.LogTitle("varies_container")
helpers.LogEVar(map[string]interface{}{
"period": period,
"interval": interval,
})
helpers.LogLabels("#dead", "#alive", "#total")
for i, num := range append(deadContainers, aliveContainers...) {
if i < len(deadContainers) {
// Create more dead containers
ids = append(ids, helpers.CreateDeadContainers(client, num-dead)...)
dead = num
} else {
// Create more alive containers
ids = append(ids, helpers.CreateAliveContainers(client, num-alive)...)
alive = num
}
total := dead + alive
latencies := helpers.DoListContainerBenchmark(client, interval, period, true, nil)
helpers.LogResult(latencies, helpers.Itoas(dead, alive, total)...)
latencies = helpers.DoListContainerBenchmark(client, interval, period, false, nil)
helpers.LogResult(latencies, helpers.Itoas(dead, alive, total)...)
latencies = helpers.DoInspectContainerBenchmark(client, interval, period, ids)
helpers.LogResult(latencies, helpers.Itoas(dead, alive, total)...)
}
}
func benchmarkVariesInterval(client *docker.Client) {
alive := helpers.GetContainerNum(client, false)
dead := helpers.GetContainerNum(client, true) - alive
containerIds := helpers.GetContainerIds(client)
cfg := variesIntervalConfig
listIntervals := cfg["list interval"].([]time.Duration)
listPeriod := cfg["list period"].(time.Duration)
helpers.LogTitle("list_all")
helpers.LogEVar(map[string]interface{}{
"#alive": alive,
"#dead": dead,
"all": true,
"period": listPeriod,
})
helpers.LogLabels("interval")
for _, curInterval := range listIntervals {
latencies := helpers.DoListContainerBenchmark(client, curInterval, listPeriod, true, nil)
helpers.LogResult(latencies, helpers.Itoas(int(curInterval/time.Millisecond))...)
}
helpers.LogTitle("list_alive")
helpers.LogEVar(map[string]interface{}{
"#alive": alive,
"#dead": dead,
"all": false,
"period": listPeriod,
})
helpers.LogLabels("interval")
for _, curInterval := range listIntervals {
latencies := helpers.DoListContainerBenchmark(client, curInterval, listPeriod, false, nil)
helpers.LogResult(latencies, helpers.Itoas(int(curInterval/time.Millisecond))...)
}
inspectIntervals := cfg["inspect interval"].([]time.Duration)
inspectPeriod := cfg["inspect period"].(time.Duration)
helpers.LogTitle("inspect")
helpers.LogEVar(map[string]interface{}{
"#alive": alive,
"#dead": dead,
"period": inspectPeriod,
})
helpers.LogLabels("interval")
for _, curInterval := range inspectIntervals {
latencies := helpers.DoInspectContainerBenchmark(client, curInterval, inspectPeriod, containerIds)
helpers.LogResult(latencies, helpers.Itoas(int(curInterval/time.Millisecond))...)
}
}
func benchmarkVariesRoutineNumber(client *docker.Client) {
alive := helpers.GetContainerNum(client, false)
dead := helpers.GetContainerNum(client, true) - alive
containerIds := helpers.GetContainerIds(client)
cfg := variesRoutineNumConfig
routines := cfg["routines"].([]int)
period := cfg["period"].(time.Duration)
listInterval := cfg["list interval"].(time.Duration)
helpers.LogTitle("list_all")
helpers.LogEVar(map[string]interface{}{
"#alive": alive,
"#dead": dead,
"all": true,
"interval": listInterval,
"period": period,
})
helpers.LogLabels("#routines")
for _, curRoutineNumber := range routines {
latencies := helpers.DoParalListContainerBenchmark(client, listInterval, period, curRoutineNumber, true)
helpers.LogResult(latencies, helpers.Itoas(curRoutineNumber)...)
}
inspectInterval := cfg["inspect interval"].(time.Duration)
helpers.LogTitle("inspect")
helpers.LogEVar(map[string]interface{}{
"#alive": alive,
"#dead": dead,
"interval": inspectInterval,
"period": period,
})
helpers.LogLabels("#routines")
for _, curRoutineNumber := range routines {
latencies := helpers.DoParalInspectContainerBenchmark(client, inspectInterval, period, curRoutineNumber, containerIds)
helpers.LogResult(latencies, helpers.Itoas(curRoutineNumber)...)
}
}