forked from cmu-db/noisepage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
610 lines (551 loc) · 36.4 KB
/
Jenkinsfile
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
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
def utils // common build functions are loaded from Jenkinsfile-utils into this object
String utilsFileName = 'Jenkinsfile-utils'
pipeline {
agent none
options {
buildDiscarder(logRotator(daysToKeepStr: '30'))
parallelsAlwaysFailFast()
}
stages {
stage('Ready For CI') {
agent {
docker {
image 'noisepage:focal'
args '-v /jenkins/ccache:/home/jenkins/.ccache'
}
}
when {
not {
branch 'master'
}
}
steps {
script {
ready_for_build = sh script: 'python3 ./build-support/check_github_labels.py', returnStatus: true
if(ready_for_build != 0) {
currentBuild.result = 'ABORTED'
error('Not ready for CI. Please add ready-for-ci tag in Github when you are ready to build your PR.')
}
}
}
post {
cleanup {
deleteDir()
}
}
}
stage('Check') {
parallel {
stage('ubuntu-20.04/gcc-9.3 (Debug/format/lint/censored)') {
agent {
docker {
image 'noisepage:focal'
}
}
steps {
sh 'echo $NODE_NAME'
sh script: './build-support/print_docker_info.sh', label: 'Print image information.'
sh script: 'echo y | sudo ./script/installation/packages.sh build', label: 'Installing packages'
sh 'cd apidoc && doxygen -u Doxyfile.in && doxygen Doxyfile.in 2>warnings.txt && if [ -s warnings.txt ]; then cat warnings.txt; false; fi'
sh 'mkdir build'
sh 'cd build && cmake -GNinja ..'
sh 'cd build && timeout 20m ninja check-format'
sh 'cd build && timeout 20m ninja check-lint'
sh 'cd build && timeout 20m ninja check-censored'
sh 'cd build && ninja check-clang-tidy'
}
post {
cleanup {
deleteDir()
}
}
}
stage('ubuntu-20.04/clang-8.0 (Debug/format/lint/censored)') {
agent {
docker {
image 'noisepage:focal'
}
}
environment {
CC="/usr/bin/clang-8"
CXX="/usr/bin/clang++-8"
}
steps {
sh 'echo $NODE_NAME'
sh script: './build-support/print_docker_info.sh', label: 'Print image information.'
sh script: 'echo y | sudo ./script/installation/packages.sh build', label: 'Installing packages'
sh 'cd apidoc && doxygen -u Doxyfile.in && doxygen Doxyfile.in 2>warnings.txt && if [ -s warnings.txt ]; then cat warnings.txt; false; fi'
sh 'mkdir build'
sh 'cd build && cmake -GNinja ..'
sh 'cd build && timeout 20m ninja check-format'
sh 'cd build && timeout 20m ninja check-lint'
sh 'cd build && timeout 20m ninja check-censored'
sh 'cd build && ninja check-clang-tidy'
}
post {
cleanup {
deleteDir()
}
}
}
}
}
stage('Microbenchmark (Build only)') {
agent {
docker {
image 'noisepage:focal'
args '-v /jenkins/ccache:/home/jenkins/.ccache'
}
}
steps {
sh 'echo $NODE_NAME'
sh script: './build-support/print_docker_info.sh', label: 'Print image information.'
script{
utils = utils ?: load(utilsFileName)
utils.noisePageBuild(isBuildTests:false, isBuildBenchmarks:true)
}
}
post {
cleanup {
deleteDir()
}
}
}
stage('Test') {
parallel {
stage('ubuntu-20.04/gcc-9.3 (Debug/ASAN/jumbotests)') {
agent {
docker {
image 'noisepage:focal'
args '--cap-add sys_ptrace -v /jenkins/ccache:/home/jenkins/.ccache'
}
}
steps {
sh 'echo $NODE_NAME'
sh script: './build-support/print_docker_info.sh', label: 'Print image information.'
script{
utils = utils ?: load(utilsFileName)
utils.noisePageBuild(useASAN:true, isJumboTest:true)
}
sh script: 'cd build && timeout 10s sudo python3 -B ../script/testing/kill_server.py 15721', label: 'Kill PID(15721)'
sh script: 'cd build && timeout 10s sudo python3 -B ../script/testing/kill_server.py 15722', label: 'Kill PID(15722)'
sh script: 'cd build && timeout 10s sudo python3 -B ../script/testing/kill_server.py 15723', label: 'Kill PID(15723)'
sh script: 'sudo lsof -i -P -n | grep LISTEN || true', label: 'Check ports.'
sh script: 'cd build/bin && PYTHONPATH=../.. timeout 20m python3 -m script.testing.replication.tests_simple --build-type=debug', label: 'Replication (Simple)'
sh script: 'cd build && PYTHONPATH=.. timeout 20m python3 -m script.testing.junit --build-type=debug --query-mode=simple', label: 'UnitTest (Simple)'
sh script: 'cd build && PYTHONPATH=.. timeout 60m python3 -m script.testing.junit --build-type=debug --query-mode=simple -a "compiled_query_execution=True" -a "bytecode_handlers_path=./bytecode_handlers_ir.bc"', label: 'UnitTest (Simple, Compiled Execution)'
sh script: 'cd build && PYTHONPATH=.. timeout 20m python3 -m script.testing.junit --build-type=debug --query-mode=extended', label: 'UnitTest (Extended)'
sh script: 'cd build && PYTHONPATH=.. timeout 60m python3 -m script.testing.junit --build-type=debug --query-mode=extended -a "compiled_query_execution=True" -a "bytecode_handlers_path=./bytecode_handlers_ir.bc"', label: 'UnitTest (Extended, Compiled Execution)'
sh script: 'cd build && PYTHONPATH=.. timeout 20m python3 -m script.testing.junit --build-type=debug --query-mode=extended -a "pipeline_metrics_enable=True" -a "pipeline_metrics_sample_rate=100" -a "counters_enable=True" -a "query_trace_metrics_enable=True"', label: 'UnitTest (Extended with pipeline metrics, counters, and query trace metrics)'
sh script: 'cd build && PYTHONPATH=.. timeout 60m python3 -m script.testing.junit --build-type=debug --query-mode=extended -a "pipeline_metrics_enable=True" -a "pipeline_metrics_sample_rate=100" -a "counters_enable=True" -a "query_trace_metrics_enable=True" -a "compiled_query_execution=True" -a "bytecode_handlers_path=./bytecode_handlers_ir.bc"', label: 'UnitTest (Extended, Compiled Execution with pipeline metrics, counters, and query trace metrics)'
sh script: 'sudo lsof -i -P -n | grep LISTEN || true', label: 'Check ports.'
sh 'cd build && timeout 1h ninja check-tpl'
sh 'cd build && timeout 1h ninja jumbotests'
sh script: 'sudo lsof -i -P -n | grep LISTEN || true', label: 'Check ports.'
}
post {
always {
archiveArtifacts(artifacts: 'build/Testing/**/*.xml', fingerprint: true)
xunit reduceLog: false, tools: [CTest(deleteOutputFiles: false, failIfNotNew: false, pattern: 'build/Testing/**/*.xml', skipNoTestFiles: false, stopProcessingIfError: false)]
}
cleanup {
deleteDir()
}
}
}
stage('ubuntu-20.04/gcc-9.3 (Debug/Coverage/unittest)') {
agent {
docker {
image 'noisepage:focal'
label 'dgb'
args '--cap-add sys_ptrace -v /jenkins/ccache:/home/jenkins/.ccache'
}
}
environment {
CODECOV_TOKEN=credentials('codecov-token')
}
steps {
sh 'echo $NODE_NAME'
sh script: './build-support/print_docker_info.sh', label: 'Print image information.'
script{
utils = utils ?: load(utilsFileName)
utils.noisePageBuild(isCodeCoverage:true)
}
sh script: 'cd build && timeout 10s sudo python3 -B ../script/testing/kill_server.py 15721', label: 'Kill PID(15721)'
sh script: 'cd build && timeout 10s sudo python3 -B ../script/testing/kill_server.py 15722', label: 'Kill PID(15722)'
sh script: 'cd build && timeout 10s sudo python3 -B ../script/testing/kill_server.py 15723', label: 'Kill PID(15723)'
sh script: 'sudo lsof -i -P -n | grep LISTEN || true', label: 'Check ports.'
sh script: 'cd build && PYTHONPATH=.. timeout 20m python3 -m script.testing.junit --build-type=debug --query-mode=simple', label: 'UnitTest (Simple)'
sh script: 'cd build && PYTHONPATH=.. timeout 60m python3 -m script.testing.junit --build-type=debug --query-mode=simple -a "compiled_query_execution=True" -a "bytecode_handlers_path=./bytecode_handlers_ir.bc"', label: 'UnitTest (Simple, Compiled Execution)'
sh script: 'cd build && PYTHONPATH=.. timeout 20m python3 -m script.testing.junit --build-type=debug --query-mode=extended', label: 'UnitTest (Extended)'
sh script: 'cd build && PYTHONPATH=.. timeout 60m python3 -m script.testing.junit --build-type=debug --query-mode=extended -a "compiled_query_execution=True" -a "bytecode_handlers_path=./bytecode_handlers_ir.bc"', label: 'UnitTest (Extended, Compiled Execution)'
sh script: 'sudo lsof -i -P -n | grep LISTEN || true', label: 'Check ports.'
sh 'cd build && timeout 1h ninja check-tpl'
sh 'cd build && timeout 1h ninja unittest'
sh script: 'sudo lsof -i -P -n | grep LISTEN || true', label: 'Check ports.'
script{
utils = utils ?: load(utilsFileName)
utils.cppCoverage()
}
}
post {
always {
archiveArtifacts(artifacts: 'build/Testing/**/*.xml', fingerprint: true)
xunit reduceLog: false, tools: [CTest(deleteOutputFiles: false, failIfNotNew: false, pattern: 'build/Testing/**/*.xml', skipNoTestFiles: false, stopProcessingIfError: false)]
}
cleanup {
deleteDir()
}
}
}
stage('ubuntu-20.04/clang-8.0 (Debug/ASAN/jumbotests)') {
agent {
docker {
image 'noisepage:focal'
args '--cap-add sys_ptrace -v /jenkins/ccache:/home/jenkins/.ccache'
}
}
environment {
CC="/usr/bin/clang-8"
CXX="/usr/bin/clang++-8"
}
steps {
sh 'echo $NODE_NAME'
sh script: './build-support/print_docker_info.sh', label: 'Print image information.'
script{
utils = utils ?: load(utilsFileName)
utils.noisePageBuild(useASAN:true, isJumboTest:true)
}
sh script: 'cd build && timeout 10s sudo python3 -B ../script/testing/kill_server.py 15721', label: 'Kill PID(15721)'
sh script: 'cd build && timeout 10s sudo python3 -B ../script/testing/kill_server.py 15722', label: 'Kill PID(15722)'
sh script: 'cd build && timeout 10s sudo python3 -B ../script/testing/kill_server.py 15723', label: 'Kill PID(15723)'
sh script: 'sudo lsof -i -P -n | grep LISTEN || true', label: 'Check ports.'
sh script: 'cd build/bin && PYTHONPATH=../.. timeout 20m python3 -m script.testing.replication.tests_simple --build-type=debug', label: 'Replication (Simple)'
sh script: 'cd build && PYTHONPATH=.. timeout 20m python3 -m script.testing.junit --build-type=debug --query-mode=simple', label: 'UnitTest (Simple)'
sh script: 'cd build && PYTHONPATH=.. timeout 60m python3 -m script.testing.junit --build-type=debug --query-mode=simple -a "compiled_query_execution=True" -a "bytecode_handlers_path=./bytecode_handlers_ir.bc"', label: 'UnitTest (Simple, Compiled Execution)'
sh script: 'cd build && PYTHONPATH=.. timeout 20m python3 -m script.testing.junit --build-type=debug --query-mode=extended', label: 'UnitTest (Extended)'
sh script: 'cd build && PYTHONPATH=.. timeout 60m python3 -m script.testing.junit --build-type=debug --query-mode=extended -a "compiled_query_execution=True" -a "bytecode_handlers_path=./bytecode_handlers_ir.bc"', label: 'UnitTest (Extended, Compiled Execution)'
sh script: 'sudo lsof -i -P -n | grep LISTEN || true', label: 'Check ports.'
sh 'cd build && timeout 1h ninja check-tpl'
sh 'cd build && timeout 1h ninja jumbotests'
sh script: 'sudo lsof -i -P -n | grep LISTEN || true', label: 'Check ports.'
}
post {
always {
archiveArtifacts(artifacts: 'build/Testing/**/*.xml', fingerprint: true)
xunit reduceLog: false, tools: [CTest(deleteOutputFiles: false, failIfNotNew: false, pattern: 'build/Testing/**/*.xml', skipNoTestFiles: false, stopProcessingIfError: false)]
}
cleanup {
deleteDir()
}
}
}
stage('ubuntu-20.04/gcc-9.3 (Release/jumbotests)') {
agent {
docker {
image 'noisepage:focal'
args '--cap-add sys_ptrace -v /jenkins/ccache:/home/jenkins/.ccache'
}
}
steps {
sh 'echo $NODE_NAME'
sh script: './build-support/print_docker_info.sh', label: 'Print image information.'
script{
utils = utils ?: load(utilsFileName)
utils.noisePageBuild(buildType:utils.RELEASE_BUILD, isJumboTest:true)
}
sh script: 'cd build && timeout 10s sudo python3 -B ../script/testing/kill_server.py 15721', label: 'Kill PID(15721)'
sh script: 'cd build && timeout 10s sudo python3 -B ../script/testing/kill_server.py 15722', label: 'Kill PID(15722)'
sh script: 'cd build && timeout 10s sudo python3 -B ../script/testing/kill_server.py 15723', label: 'Kill PID(15723)'
sh script: 'sudo lsof -i -P -n | grep LISTEN || true', label: 'Check ports.'
sh script: 'cd build/bin && PYTHONPATH=../.. timeout 20m python3 -m script.testing.replication.tests_simple --build-type=release', label: 'Replication (Simple)'
sh script: 'cd build && PYTHONPATH=.. timeout 20m python3 -m script.testing.junit --build-type=release --query-mode=simple', label: 'UnitTest (Simple)'
sh script: 'cd build && PYTHONPATH=.. timeout 60m python3 -m script.testing.junit --build-type=release --query-mode=simple -a "compiled_query_execution=True" -a "bytecode_handlers_path=./bytecode_handlers_ir.bc"', label: 'UnitTest (Simple, Compiled Execution)'
sh script: 'cd build && PYTHONPATH=.. timeout 20m python3 -m script.testing.junit --build-type=release --query-mode=extended', label: 'UnitTest (Extended)'
sh script: 'cd build && PYTHONPATH=.. timeout 60m python3 -m script.testing.junit --build-type=release --query-mode=extended -a "compiled_query_execution=True" -a "bytecode_handlers_path=./bytecode_handlers_ir.bc"', label: 'UnitTest (Extended, Compiled Execution)'
sh script: 'sudo lsof -i -P -n | grep LISTEN || true', label: 'Check ports.'
sh 'cd build && timeout 1h ninja check-tpl'
sh 'cd build && timeout 1h ninja jumbotests'
sh script: 'sudo lsof -i -P -n | grep LISTEN || true', label: 'Check ports.'
}
post {
always {
archiveArtifacts(artifacts: 'build/Testing/**/*.xml', fingerprint: true)
xunit reduceLog: false, tools: [CTest(deleteOutputFiles: false, failIfNotNew: false, pattern: 'build/Testing/**/*.xml', skipNoTestFiles: false, stopProcessingIfError: false)]
}
cleanup {
deleteDir()
}
}
}
stage('ubuntu-20.04/clang-8.0 (Release/jumbotests)') {
agent {
docker {
image 'noisepage:focal'
args '--cap-add sys_ptrace -v /jenkins/ccache:/home/jenkins/.ccache'
}
}
environment {
CC="/usr/bin/clang-8"
CXX="/usr/bin/clang++-8"
}
steps {
sh 'echo $NODE_NAME'
sh script: './build-support/print_docker_info.sh', label: 'Print image information.'
script{
utils = utils ?: load(utilsFileName)
utils.noisePageBuild(buildType:utils.RELEASE_BUILD, isJumboTest:true)
}
sh script: 'cd build && timeout 10s sudo python3 -B ../script/testing/kill_server.py 15721', label: 'Kill PID(15721)'
sh script: 'cd build && timeout 10s sudo python3 -B ../script/testing/kill_server.py 15722', label: 'Kill PID(15722)'
sh script: 'cd build && timeout 10s sudo python3 -B ../script/testing/kill_server.py 15723', label: 'Kill PID(15723)'
sh script: 'sudo lsof -i -P -n | grep LISTEN || true', label: 'Check ports.'
sh script: 'cd build/bin && PYTHONPATH=../.. timeout 20m python3 -m script.testing.replication.tests_simple --build-type=release', label: 'Replication (Simple)'
sh script: 'cd build && PYTHONPATH=.. timeout 20m python3 -m script.testing.junit --build-type=release --query-mode=simple', label: 'UnitTest (Simple)'
sh script: 'cd build && PYTHONPATH=.. timeout 60m python3 -m script.testing.junit --build-type=release --query-mode=simple -a "compiled_query_execution=True" -a "bytecode_handlers_path=./bytecode_handlers_ir.bc"', label: 'UnitTest (Simple, Compiled Execution)'
sh script: 'cd build && PYTHONPATH=.. timeout 20m python3 -m script.testing.junit --build-type=release --query-mode=extended', label: 'UnitTest (Extended)'
sh script: 'cd build && PYTHONPATH=.. timeout 60m python3 -m script.testing.junit --build-type=release --query-mode=extended -a "compiled_query_execution=True" -a "bytecode_handlers_path=./bytecode_handlers_ir.bc"', label: 'UnitTest (Extended, Compiled Execution)'
sh script: 'sudo lsof -i -P -n | grep LISTEN || true', label: 'Check ports.'
sh 'cd build && timeout 1h ninja check-tpl'
sh 'cd build && timeout 1h ninja jumbotests'
sh script: 'sudo lsof -i -P -n | grep LISTEN || true', label: 'Check ports.'
}
post {
always {
archiveArtifacts(artifacts: 'build/Testing/**/*.xml', fingerprint: true)
xunit reduceLog: false, tools: [CTest(deleteOutputFiles: false, failIfNotNew: false, pattern: 'build/Testing/**/*.xml', skipNoTestFiles: false, stopProcessingIfError: false)]
}
cleanup {
deleteDir()
}
}
}
}
}
stage('End-to-End') {
parallel {
stage('Debug') {
agent {
docker {
image 'noisepage:focal'
args '--cap-add sys_ptrace -v /jenkins/ccache:/home/jenkins/.ccache'
}
}
steps {
sh 'echo $NODE_NAME'
sh script: './build-support/print_docker_info.sh', label: 'Print image information.'
script{
utils = utils ?: load(utilsFileName)
utils.noisePageBuild(useASAN:true, isBuildTests:false)
}
sh script: 'sudo lsof -i -P -n | grep LISTEN || true', label: 'Check ports.'
sh script: '''
cd build
PYTHONPATH=.. timeout 10m python3 -m script.testing.oltpbench --config-file=../script/testing/oltpbench/configs/end_to_end_debug/tatp.json --build-type=debug
''', label:'OLTPBench (TATP)'
sh script: '''
cd build
PYTHONPATH=.. timeout 10m python3 -m script.testing.oltpbench --config-file=../script/testing/oltpbench/configs/end_to_end_debug/tatp_wal_disabled.json --build-type=debug
''', label: 'OLTPBench (No WAL)'
sh script: '''
cd build
PYTHONPATH=.. timeout 10m python3 -m script.testing.oltpbench --config-file=../script/testing/oltpbench/configs/end_to_end_debug/smallbank.json --build-type=debug
''', label:'OLTPBench (Smallbank)'
sh script: '''
cd build
PYTHONPATH=.. timeout 10m python3 -m script.testing.oltpbench --config-file=../script/testing/oltpbench/configs/end_to_end_debug/ycsb.json --build-type=debug
''', label: 'OLTPBench (YCSB)'
sh script: '''
cd build
PYTHONPATH=.. timeout 5m python3 -m script.testing.oltpbench --config-file=../script/testing/oltpbench/configs/end_to_end_debug/noop.json --build-type=debug
''', label: 'OLTPBench (NOOP)'
// TODO: Need to fix OLTP-Bench's TPC-C to support scalefactor correctly
sh script: '''
cd build
PYTHONPATH=.. timeout 30m python3 -m script.testing.oltpbench --config-file=../script/testing/oltpbench/configs/end_to_end_debug/tpcc.json --build-type=debug
''', label: 'OLTPBench (TPCC)'
sh script: '''
cd build
PYTHONPATH=.. timeout 30m python3 -m script.testing.oltpbench --config-file=../script/testing/oltpbench/configs/end_to_end_debug/tpcc_parallel_disabled.json --build-type=debug
''', label: 'OLTPBench (No Parallel)'
sh script: 'sudo lsof -i -P -n | grep LISTEN || true', label: 'Check ports.'
}
post {
cleanup {
deleteDir()
}
}
}
stage('Performance') {
agent { label 'benchmark' }
environment {
//Do not change.
//Performance Storage Service(Django) authentication information. The credentials can only be changed on Jenkins webpage
PSS_CREATOR = credentials('pss-creator')
}
steps {
sh 'echo $NODE_NAME'
sh script: './build-support/print_docker_info.sh', label: 'Print image information.'
script{
utils = utils ?: load(utilsFileName)
utils.noisePageBuild(buildType:utils.RELEASE_BUILD, isBuildTests:false)
}
sh script: 'sudo lsof -i -P -n | grep LISTEN || true', label: 'Check ports.'
sh script:'''
cd build
PYTHONPATH=.. timeout 10m python3 -m script.testing.oltpbench --config-file=../script/testing/oltpbench/configs/end_to_end_performance/tatp.json --build-type=release --publish-results=prod --publish-username=${PSS_CREATOR_USR} --publish-password=${PSS_CREATOR_PSW}
''', label: 'OLTPBench (TATP)'
sh script:'''
cd build
PYTHONPATH=.. timeout 10m python3 -m script.testing.oltpbench --config-file=../script/testing/oltpbench/configs/end_to_end_performance/tatp_wal_disabled.json --build-type=release --publish-results=prod --publish-username=${PSS_CREATOR_USR} --publish-password=${PSS_CREATOR_PSW}
''', label: 'OLTPBench (TATP No WAL)'
sh script:'''
cd build
PYTHONPATH=.. timeout 10m python3 -m script.testing.oltpbench --config-file=../script/testing/oltpbench/configs/end_to_end_performance/tatp_wal_ramdisk.json --build-type=release --publish-results=prod --publish-username=${PSS_CREATOR_USR} --publish-password=${PSS_CREATOR_PSW}
''', label: 'OLTPBench (TATP RamDisk WAL)'
sh script:'''
cd build
PYTHONPATH=.. timeout 30m python3 -m script.testing.oltpbench --config-file=../script/testing/oltpbench/configs/end_to_end_performance/tpcc.json --build-type=release --publish-results=prod --publish-username=${PSS_CREATOR_USR} --publish-password=${PSS_CREATOR_PSW}
''', label: 'OLTPBench (TPCC HDD WAL)'
sh script:'''
cd build
PYTHONPATH=.. timeout 30m python3 -m script.testing.oltpbench --config-file=../script/testing/oltpbench/configs/end_to_end_performance/tpcc_wal_disabled.json --build-type=release --publish-results=prod --publish-username=${PSS_CREATOR_USR} --publish-password=${PSS_CREATOR_PSW}
''', label: 'OLTPBench (TPCC No WAL)'
sh script:'''
cd build
PYTHONPATH=.. timeout 30m python3 -m script.testing.oltpbench --config-file=../script/testing/oltpbench/configs/end_to_end_performance/tpcc_wal_ramdisk.json --build-type=release --publish-results=prod --publish-username=${PSS_CREATOR_USR} --publish-password=${PSS_CREATOR_PSW}
''', label: 'OLTPBench (TPCC RamDisk WAL)'
}
post {
cleanup {
deleteDir()
}
}
}
}
}
stage('Self-Driving') {
parallel {
stage('Workload Forecasting'){
agent {
docker {
image 'noisepage:focal'
args '--cap-add sys_ptrace -v /jenkins/ccache:/home/jenkins/.ccache'
}
}
steps {
sh 'echo $NODE_NAME'
sh script: './build-support/print_docker_info.sh', label: 'Print image information.'
script{
utils = utils ?: load(utilsFileName)
utils.noisePageBuild(buildType:utils.RELEASE_BUILD, isBuildTests:false)
}
// This scripts runs TPCC benchmark with query trace enabled. It also uses SET command to turn
// on query trace.
// --pattern_iter determines how many times a sequence of TPCC phases is run. Set to 3 so that
// enough trace could be generated for training and testing.
sh script :'''
cd build
PYTHONPATH=.. python3 -m script.self_driving.forecasting.forecaster_standalone --generate_data --pattern_iter=3
''', label: 'Generate trace and perform training'
sh script: 'sudo lsof -i -P -n | grep LISTEN || true', label: 'Check ports.'
sh script :'''
cd build
PYTHONPATH=.. python3 -m script.self_driving.forecasting.forecaster_standalone --model_save_path=model.pickle --models=LSTM
''', label: 'Generate trace and perform training'
sh script: 'sudo lsof -i -P -n | grep LISTEN || true', label: 'Check ports.'
sh script: '''
cd build
PYTHONPATH=.. python3 -m script.self_driving.forecasting.forecaster_standalone --test_file=query_trace.csv --model_load_path=model.pickle --test_model=LSTM
''', label: 'Perform inference on the trained model'
sh script: 'sudo lsof -i -P -n | grep LISTEN || true', label: 'Check ports.'
}
post {
cleanup {
deleteDir()
}
}
}
stage('Modeling'){
agent {
docker {
image 'noisepage:focal'
label 'dgb'
args '--cap-add sys_ptrace -v /jenkins/ccache:/home/jenkins/.ccache'
}
}
environment {
CODECOV_TOKEN=credentials('codecov-token')
}
steps {
sh 'echo $NODE_NAME'
sh script: './build-support/print_docker_info.sh', label: 'Print image information.'
script{
utils = utils ?: load(utilsFileName)
utils.noisePageBuild(buildType:utils.RELEASE_BUILD, isBuildTests:false, isBuildSelfDrivingE2ETests: true)
}
// This scripts runs TPCC benchmark with query trace enabled. It also uses SET command to turn
// on query trace.
// --pattern_iter determines how many times a sequence of TPCC phases is run. Set to 3 so that
// enough trace could be generated for training and testing.
sh script :'''
cd build
PYTHONPATH=.. python3 -m script.self_driving.forecasting.forecaster_standalone --generate_data --pattern_iter=3
''', label: 'Forecasting model training data generation'
sh script: 'sudo lsof -i -P -n | grep LISTEN || true', label: 'Check ports.'
// This scripts runs TPCC benchmark with pipeline metrics enabled.
sh script :'''
cd build
PYTHONPATH=.. python3 -m script.self_driving.forecasting.forecaster_standalone --generate_data --record_pipeline_metrics --pattern_iter=1
mkdir concurrent_runner_input
mv pipeline.csv concurrent_runner_input
''', label: 'Interference model training data generation'
sh script: 'sudo lsof -i -P -n | grep LISTEN || true', label: 'Check ports.'
// The parameters to the execution_runners target are (arbitrarily picked to complete tests within a reasonable time / picked to exercise all OUs).
// Specifically, the parameters chosen are:
// - execution_runner_rows_limit=100, which sets the maximal number of rows/tuples processed to be 100 (small table)
// - rerun=0, which skips rerun since we are not testing benchmark performance here
// - warm_num=1, which also tests the warm up phase for the execution_runners.
// With the current set of parameters, the input generation process will finish under 10min
sh script :'''
cd build/bin
../benchmark/execution_runners --execution_runner_rows_limit=100 --rerun=0 --warm_num=1
''', label: 'OU model training data generation'
sh script: 'sudo lsof -i -P -n | grep LISTEN || true', label: 'Check ports.'
// Recompile the c++ binaries in Debug mode to generate code coverage. We had to compile in
// Release mode first to efficiently generate the data required by the tests
script{
utils = utils ?: load(utilsFileName)
utils.noisePageBuild(isCodeCoverage:true, isBuildTests:false, isBuildSelfDrivingE2ETests: true)
}
sh script: '''
cd build
export BUILD_ABS_PATH=`pwd`
timeout 10m ninja self_driving_e2e_test
''', label: 'Running self-driving end-to-end test'
sh script: 'sudo lsof -i -P -n | grep LISTEN || true', label: 'Check ports.'
// We need `coverage combine` because coverage files are generated separately for each test and
// then moved into the build root by `run-test.sh`
sh script :'''
cd build
coverage combine
''', label: 'Combine Python code coverage'
script{
utils = utils ?: load(utilsFileName)
utils.cppCoverage()
}
}
post {
always {
archiveArtifacts(artifacts: 'build/Testing/**/*.xml', fingerprint: true)
xunit reduceLog: false, tools: [CTest(deleteOutputFiles: false, failIfNotNew: false, pattern: 'build/Testing/**/*.xml', skipNoTestFiles: false, stopProcessingIfError: false)]
}
cleanup {
deleteDir()
}
}
}
}
}
}
}