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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
|
/*
* Copyright (c) 2020 AtLarge Research
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package org.opendc.experiments.base
import org.junit.jupiter.api.Assertions.assertEquals
import org.junit.jupiter.api.Test
import org.junit.jupiter.api.assertAll
import org.opendc.compute.simulator.service.ServiceTask
import org.opendc.experiments.base.experiment.specs.TraceBasedFailureModelSpec
import org.opendc.simulator.compute.workload.trace.TraceFragment
import java.util.ArrayList
/**
* An integration test suite for the Scenario experiments.
*/
class FailuresAndCheckpointingTest {
/**
* Failure test 1: Single Task, Single Failure
* In this test, a single task is scheduled that is interrupted by a failure after 5 min.
* Because there is no checkpointing, the full task has to be rerun.
*
* This means the final runtime is 20 minutes
*
* When the task is running, it is using 50% of the cpu.
* This means that half of the time is active, and half is idle.
* When the task is failed, all time is idle.
*/
@Test
fun testFailures1() {
val workload: ArrayList<ServiceTask> =
arrayListOf(
createTestTask(
id = 0,
fragments =
arrayListOf(
TraceFragment(10 * 60 * 1000, 1000.0),
),
cpuCoreCount = 1,
),
)
val failureModelSpec =
TraceBasedFailureModelSpec(
"src/test/resources/failureTraces/single_failure.parquet",
repeat = false,
)
val topology = createTopology("single_1_2000.json")
val monitor = runTest(topology, workload, failureModelSpec)
assertAll(
{ assertEquals(20 * 60 * 1000, monitor.maxTimestamp) { "Total runtime incorrect" } },
{ assertEquals(((15 * 30000) + (5 * 60000)).toLong(), monitor.hostCpuIdleTimes["H01"]?.sum()) { "Idle time incorrect" } },
{ assertEquals((15 * 30000).toLong(), monitor.hostCpuActiveTimes["H01"]?.sum()) { "Active time incorrect" } },
{ assertEquals(9000.0, monitor.hostEnergyUsages["H01"]?.get(0)) { "Incorrect energy usage" } },
{ assertEquals(6000.0, monitor.hostEnergyUsages["H01"]?.get(5)) { "Incorrect energy usage" } },
{ assertEquals(9000.0, monitor.hostEnergyUsages["H01"]?.get(10)) { "Incorrect energy usage" } },
{ assertEquals((15 * 60 * 150.0) + (5 * 60 * 100.0), monitor.hostEnergyUsages["H01"]?.sum()) { "Incorrect energy usage" } },
)
}
/**
* Failure test 2: Single Task, Failure much later
* In this test, a single task is scheduled, with a failure trace.
*
* However, the first failure occurs after 500 min and should thus not affect the Task.
*/
@Test
fun testFailures2() {
val workload: ArrayList<ServiceTask> =
arrayListOf(
createTestTask(
id = 0,
fragments =
arrayListOf(
TraceFragment(10 * 60 * 1000, 1000.0),
),
cpuCoreCount = 1,
),
)
val failureModelSpec =
TraceBasedFailureModelSpec(
"src/test/resources/failureTraces/single_failure_2.parquet",
repeat = false,
)
val topology = createTopology("single_1_2000.json")
val monitor = runTest(topology, workload, failureModelSpec)
assertAll(
{ assertEquals(10 * 60 * 1000, monitor.maxTimestamp) { "Total runtime incorrect" } },
{ assertEquals((10 * 30000).toLong(), monitor.hostCpuIdleTimes["H01"]?.sum()) { "Idle time incorrect" } },
{ assertEquals((10 * 30000).toLong(), monitor.hostCpuActiveTimes["H01"]?.sum()) { "Active time incorrect" } },
{ assertEquals(9000.0, monitor.hostEnergyUsages["H01"]?.get(0)) { "Incorrect energy usage" } },
{ assertEquals((600 * 150.0), monitor.hostEnergyUsages["H01"]?.sum()) { "Incorrect energy usage" } },
)
}
/**
* Failure test 3: Single Task, Single Failure
* In this test, a single task is scheduled that is interrupted by a failure after 5 min.
* Because there is no checkpointing, the full task has to be rerun.
*
* This means the final runtime is 20 minutes
*
* When the task is running, it is using 50% of the cpu.
* This means that half of the time is active, and half is idle.
* When the task is failed, all time is idle.
*/
@Test
fun testFailures3() {
val workload: ArrayList<ServiceTask> =
arrayListOf(
createTestTask(
id = 0,
fragments =
arrayListOf(
TraceFragment(10 * 60 * 1000, 1000.0),
),
cpuCoreCount = 1,
),
)
val failureModelSpec =
TraceBasedFailureModelSpec(
"src/test/resources/failureTraces/two_failures.parquet",
repeat = false,
)
val topology = createTopology("single_1_2000.json")
val monitor = runTest(topology, workload, failureModelSpec)
assertAll(
{ assertEquals(37 * 60 * 1000, monitor.maxTimestamp) { "Total runtime incorrect" } },
{ assertEquals(((22 * 30000) + (15 * 60000)).toLong(), monitor.hostCpuIdleTimes["H01"]?.sum()) { "Idle time incorrect" } },
{ assertEquals((22 * 30000).toLong(), monitor.hostCpuActiveTimes["H01"]?.sum()) { "Active time incorrect" } },
{ assertEquals(9000.0, monitor.hostEnergyUsages["H01"]?.get(0)) { "Incorrect energy usage" } },
{ assertEquals(6000.0, monitor.hostEnergyUsages["H01"]?.get(5)) { "Incorrect energy usage" } },
{ assertEquals(9000.0, monitor.hostEnergyUsages["H01"]?.get(10)) { "Incorrect energy usage" } },
{ assertEquals((22 * 60 * 150.0) + (15 * 60 * 100.0), monitor.hostEnergyUsages["H01"]?.sum()) { "Incorrect energy usage" } },
)
}
/**
* Failure test 4: Single Task, repeated failure
* In this test, a single task is scheduled that is interrupted by a failure after 5 min.
* Because there is no checkpointing, the full task has to be rerun.
*
* This means the final runtime is 20 minutes
*
* When the task is running, it is using 50% of the cpu.
* This means that half of the time is active, and half is idle.
* When the task is failed, all time is idle.
*/
@Test
fun testFailures4() {
val workload: ArrayList<ServiceTask> =
arrayListOf(
createTestTask(
id = 0,
fragments =
arrayListOf(
TraceFragment(10 * 60 * 1000, 1000.0),
),
cpuCoreCount = 1,
),
)
val failureModelSpec =
TraceBasedFailureModelSpec(
"src/test/resources/failureTraces/single_failure.parquet",
repeat = true,
)
val topology = createTopology("single_1_2000.json")
val monitor = runTest(topology, workload, failureModelSpec)
assertAll(
{ assertEquals(95 * 60000, monitor.maxTimestamp) { "Total runtime incorrect" } },
{ assertEquals(((50 * 60000) + (20 * 60000)).toLong(), monitor.hostCpuIdleTimes["H01"]?.sum()) { "Idle time incorrect" } },
{ assertEquals((25 * 60000).toLong(), monitor.hostCpuActiveTimes["H01"]?.sum()) { "Active time incorrect" } },
{ assertEquals(9000.0, monitor.hostEnergyUsages["H01"]?.get(0)) { "Incorrect energy usage" } },
{ assertEquals(6000.0, monitor.hostEnergyUsages["H01"]?.get(5)) { "Incorrect energy usage" } },
{ assertEquals(9000.0, monitor.hostEnergyUsages["H01"]?.get(10)) { "Incorrect energy usage" } },
{ assertEquals(6000.0, monitor.hostEnergyUsages["H01"]?.get(15)) { "Incorrect energy usage" } },
{ assertEquals(9000.0, monitor.hostEnergyUsages["H01"]?.get(20)) { "Incorrect energy usage" } },
{ assertEquals(6000.0, monitor.hostEnergyUsages["H01"]?.get(25)) { "Incorrect energy usage" } },
{ assertEquals(9000.0, monitor.hostEnergyUsages["H01"]?.get(30)) { "Incorrect energy usage" } },
{ assertEquals(6000.0, monitor.hostEnergyUsages["H01"]?.get(35)) { "Incorrect energy usage" } },
{ assertEquals(9000.0, monitor.hostEnergyUsages["H01"]?.get(40)) { "Incorrect energy usage" } },
{ assertEquals(6000.0, monitor.hostEnergyUsages["H01"]?.get(45)) { "Incorrect energy usage" } },
{ assertEquals(9000.0, monitor.hostEnergyUsages["H01"]?.get(50)) { "Incorrect energy usage" } },
{ assertEquals(6000.0, monitor.hostEnergyUsages["H01"]?.get(55)) { "Incorrect energy usage" } },
{ assertEquals(9000.0, monitor.hostEnergyUsages["H01"]?.get(60)) { "Incorrect energy usage" } },
{ assertEquals(6000.0, monitor.hostEnergyUsages["H01"]?.get(65)) { "Incorrect energy usage" } },
{ assertEquals(9000.0, monitor.hostEnergyUsages["H01"]?.get(70)) { "Incorrect energy usage" } },
{ assertEquals(6000.0, monitor.hostEnergyUsages["H01"]?.get(75)) { "Incorrect energy usage" } },
{ assertEquals(9000.0, monitor.hostEnergyUsages["H01"]?.get(80)) { "Incorrect energy usage" } },
{ assertEquals(6000.0, monitor.hostEnergyUsages["H01"]?.get(85)) { "Incorrect energy usage" } },
{ assertEquals(9000.0, monitor.hostEnergyUsages["H01"]?.get(90)) { "Incorrect energy usage" } },
{ assertEquals(0.0, monitor.hostEnergyUsages["H01"]?.get(95)) { "Incorrect energy usage" } },
{ assertEquals((10 * 300 * 150.0) + (9 * 300 * 100.0), monitor.hostEnergyUsages["H01"]?.sum()) { "Incorrect energy usage" } },
)
}
/**
* Checkpointing test 1: Single Task with checkpointing
* In this test, a single task is scheduled that is interrupted by a failure after 5 min.
* The system is using checkpointing, taking snapshots every minute.
*
* This means that after failure, only 6 minutes of the task is left.
* However, taking a snapshot takes 1 second, which means 9 seconds have to be added to the total runtime.
*/
@Test
fun testCheckpoints1() {
val workload: ArrayList<ServiceTask> =
arrayListOf(
createTestTask(
id = 0,
fragments =
arrayListOf(
TraceFragment(10 * 60 * 1000, 1000.0),
),
cpuCoreCount = 1,
checkpointInterval = 60 * 1000L,
checkpointDuration = 1000L,
),
)
val failureModelSpec =
TraceBasedFailureModelSpec(
"src/test/resources/failureTraces/single_failure.parquet",
repeat = false,
)
val topology = createTopology("single_1_2000.json")
val monitor = runTest(topology, workload, failureModelSpec)
assertAll(
// Task run time + Time node is in failed state + checkpoint time + time waiting to be scheduled
{
assertEquals(
(10 * 60 * 1000) + (5 * 60 * 1000) + (9 * 1000) + (56 * 1000),
monitor.maxTimestamp,
) { "Total runtime incorrect" }
},
{
assertEquals(
(10 * 60 * 150.0) + (5 * 60 * 100.0) + (9 * 150.0) + (56 * 150.0),
monitor.hostEnergyUsages["H01"]?.sum(),
) { "Incorrect energy usage" }
},
)
}
/**
* Checkpointing test 2: Single Task with checkpointing, higher cpu demand
* In this test, a single task is scheduled that is interrupted by a failure after 5 min.
* The system is using checkpointing, taking snapshots every minute.
*
* This means that after failure, only 16 minutes of the task is left.
* However, taking a snapshot takes 1 second, which means 19 seconds have to be added to the total runtime.
*
* This is similar to the previous test, but the cpu demand of taking a snapshot is higher.
* The cpu demand of taking a snapshot is as high as the highest fragment
*/
@Test
fun testCheckpoints2() {
val workload: ArrayList<ServiceTask> =
arrayListOf(
createTestTask(
id = 0,
fragments =
arrayListOf(
TraceFragment(10 * 60 * 1000, 2000.0),
TraceFragment(10 * 60 * 1000, 1000.0),
),
cpuCoreCount = 1,
checkpointInterval = 60 * 1000L,
checkpointDuration = 1000L,
),
)
val failureModelSpec =
TraceBasedFailureModelSpec(
"src/test/resources/failureTraces/single_failure.parquet",
repeat = false,
)
val topology = createTopology("single_1_2000.json")
val monitor = runTest(topology, workload, failureModelSpec)
assertAll(
{
assertEquals(
(20 * 60000) + (5 * 60 * 1000) + (19 * 1000) + (56 * 1000),
monitor.maxTimestamp,
) { "Total runtime incorrect" }
},
{
assertEquals(
(10 * 60 * 200.0) + (10 * 60 * 150.0) + (5 * 60 * 100.0) + (19 * 200.0) + (56 * 200.0),
monitor.hostEnergyUsages["H01"]?.sum(),
) { "Incorrect energy usage" }
},
)
}
/**
* Checkpointing test 3: Single Task with checkpointing, higher cpu demand
* In this test, a single task is scheduled that is interrupted by a failure after 5 min.
* The system is using checkpointing, taking snapshots every minute.
*
* This means that after failure, only 16 minutes of the task is left.
* However, taking a snapshot takes 1 second, which means 19 seconds have to be added to the total runtime.
*
* This is similar to the previous test, but the fragments are reversed
*
*/
@Test
fun testCheckpoints3() {
val workload: ArrayList<ServiceTask> =
arrayListOf(
createTestTask(
id = 0,
fragments =
arrayListOf(
TraceFragment(10 * 60 * 1000, 1000.0),
TraceFragment(10 * 60 * 1000, 2000.0),
),
cpuCoreCount = 1,
checkpointInterval = 60 * 1000L,
checkpointDuration = 1000L,
),
)
val failureModelSpec =
TraceBasedFailureModelSpec(
"src/test/resources/failureTraces/single_failure.parquet",
repeat = false,
)
val topology = createTopology("single_1_2000.json")
val monitor = runTest(topology, workload, failureModelSpec)
assertAll(
{
assertEquals(
(20 * 60000) + (5 * 60 * 1000) + (19 * 1000) + (56 * 1000),
monitor.maxTimestamp,
) { "Total runtime incorrect" }
},
{
assertEquals(
(10 * 60 * 200.0) + (10 * 60 * 150.0) + (5 * 60 * 100.0) + (19 * 200.0) + (56 * 150.0),
monitor.hostEnergyUsages["H01"]?.sum(),
) { "Incorrect energy usage" }
},
)
}
/**
* Checkpointing test 4: Single Task with scaling checkpointing
* In this test, checkpointing is used, with a scaling factor of 1.5
*
* This means that the interval between checkpoints starts at 1 min, but is multiplied by 1.5 every snapshot.
*
*/
@Test
fun testCheckpoints4() {
val workload: ArrayList<ServiceTask> =
arrayListOf(
createTestTask(
id = 0,
fragments =
arrayListOf(
TraceFragment(10 * 60 * 1000, 1000.0),
),
cpuCoreCount = 1,
checkpointInterval = 60 * 1000L,
checkpointDuration = 1000L,
checkpointIntervalScaling = 1.5,
),
)
val failureModelSpec =
TraceBasedFailureModelSpec(
"src/test/resources/failureTraces/single_failure.parquet",
repeat = false,
)
val topology = createTopology("single_1_2000.json")
val monitor = runTest(topology, workload, failureModelSpec)
assertAll(
{ assertEquals((10 * 60000) + (5 * 60 * 1000) + (4 * 1000) + (14 * 1000), monitor.maxTimestamp) { "Total runtime incorrect" } },
{
assertEquals((10 * 60 * 150.0) + (5 * 60 * 100.0) + (4 * 150.0) + (14 * 150.0), monitor.hostEnergyUsages["H01"]?.sum()) {
"Incorrect energy usage"
}
},
)
}
/**
* Checkpointing test 5: Single Task, single failure with checkpointing
* In this test, a single task is scheduled that is interrupted by a failure after 5 min.
* Because there is no checkpointing, the full task has to be rerun.
*
*/
@Test
fun testCheckpoints5() {
val workload: ArrayList<ServiceTask> =
arrayListOf(
createTestTask(
id = 0,
fragments =
arrayListOf(
TraceFragment(10 * 60 * 1000, 1000.0),
),
cpuCoreCount = 1,
checkpointInterval = 60 * 1000L,
checkpointDuration = 1000L,
),
)
val failureModelSpec =
TraceBasedFailureModelSpec(
"src/test/resources/failureTraces/single_failure.parquet",
repeat = false,
)
val topology = createTopology("single_1_2000.json")
val monitor = runTest(topology, workload, failureModelSpec)
assertAll(
{ assertEquals((960 * 1000) + 5000, monitor.maxTimestamp) { "Total runtime incorrect" } },
{
assertEquals(
(665 * 150.0) + (300 * 100.0),
monitor.hostEnergyUsages["H01"]?.sum(),
) { "Incorrect energy usage" }
},
)
}
/**
* Checkpointing test 6: Single Task, repeated failure with checkpointing
* In this test, a single task is scheduled that is interrupted by a failure after 5 min.
* Because there is no checkpointing, the full task has to be rerun.
*
*/
@Test
fun testCheckpoints6() {
val workload: ArrayList<ServiceTask> =
arrayListOf(
createTestTask(
id = 0,
fragments =
arrayListOf(
TraceFragment(10 * 60 * 1000, 1000.0),
),
cpuCoreCount = 1,
checkpointInterval = 60 * 1000L,
checkpointDuration = 1000L,
),
)
val failureModelSpec =
TraceBasedFailureModelSpec(
"src/test/resources/failureTraces/single_failure.parquet",
repeat = true,
)
val topology = createTopology("single_1_2000.json")
val monitor = runTest(topology, workload, failureModelSpec)
assertAll(
{ assertEquals((22 * 60000) + 1000, monitor.maxTimestamp) { "Total runtime incorrect" } },
{
assertEquals(
(300 * 150.0) + (300 * 100.0) + (300 * 150.0) + (300 * 100.0) + (121 * 150.0),
monitor.hostEnergyUsages["H01"]?.sum(),
) { "Incorrect energy usage" }
},
)
}
}
|