This repository has been archived by the owner on Feb 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 503
/
Jenkinsfile-utils.groovy
425 lines (356 loc) · 18.6 KB
/
Jenkinsfile-utils.groovy
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
#!/usr/bin/env groovy
// General structure of this file:
//
// SECTION: Stage functions.
// - stagePre() : Function that should be invoked at the start of every stageFoo() function.
// - stagePost() : Function that should be invoked at the end of every stageFoo() function.
// - stageFoo() : A Jenkins stage.
//
// SECTION: Utility functions.
// Random helper functions.
//
// You should probably know about Groovy's elvis operator ?:,
// where a ?: b means
// if (a) { return a; } else { return b; }
// SECTION: Stage functions.
/** This should be invoked before every stage. */
void stagePre() {
sh script: 'echo $NODE_NAME', label: 'Print node name.'
sh script: './build-support/print_docker_info.sh', label: 'Print image information.'
}
/** This should be invoked after every stage. */
void stagePost() {
// No-op.
}
/** Test if the GitHub "ready-for-ci" label is present. Otherwise, abort the build. */
void stageGithub() {
stagePre()
ready_for_build = sh script: 'python3 ./build-support/check_github_labels.py', returnStatus: true, label: 'Test Github labels.'
if (0 != ready_for_build) {
currentBuild.result = 'ABORTED'
error('Not ready for CI. Please add ready-for-ci tag in Github when you are ready to build your PR.')
}
stagePost()
}
/** Test if the codebase passes basic checks: format, documentation, lint, clang-tidy. */
void stageCheck() {
stagePre()
installPackages('build')
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'
if (env.BRANCH_NAME != 'master') {
sh 'cd build && ninja check-clang-tidy'
} else {
sh 'cd build && ninja check-clang-tidy-full'
}
stagePost()
}
/** Build and run the default "ninja" target. */
void stageBuildDefault(Map args = [:]) {
stagePre()
installPackages()
buildNoisePage(args)
stagePost()
}
/** Run the C++ unit tests, TPL tests, optionally generate coverage. */
void stageTest(Boolean runPipelineMetrics, Map args = [:]) {
stagePre()
installPackages()
buildNoisePage(args)
sh script: 'cd build && timeout 10s sudo python3 -B ../script/testing/kill_server.py 15721', label: 'Kill port (15721)'
sh script: 'cd build && timeout 10s sudo python3 -B ../script/testing/kill_server.py 15722', label: 'Kill port (15722)'
sh script: 'cd build && timeout 10s sudo python3 -B ../script/testing/kill_server.py 15723', label: 'Kill port (15723)'
buildType = (args.cmake.toUpperCase().contains("CMAKE_BUILD_TYPE=RELEASE")) ? "release" : "debug"
sh script: "cd build && PYTHONPATH=.. timeout 20m python3 -m script.testing.junit --build-type=$buildType --query-mode=simple", label: 'UnitTest (Simple)'
sh script: "cd build && PYTHONPATH=.. timeout 60m python3 -m script.testing.junit --build-type=$buildType --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=$buildType --query-mode=extended", label: 'UnitTest (Extended)'
sh script: "cd build && PYTHONPATH=.. timeout 60m python3 -m script.testing.junit --build-type=$buildType --query-mode=extended -a 'compiled_query_execution=True' -a 'bytecode_handlers_path=./bytecode_handlers_ir.bc'", label: 'UnitTest (Extended, Compiled Execution)'
if (runPipelineMetrics) {
sh script: "cd build && PYTHONPATH=.. timeout 20m python3 -m script.testing.junit --build-type=$buildType --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=$buildType --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 'cd build && timeout 1h ninja check-tpl'
if (args.cmake.toUpperCase().contains("NOISEPAGE_USE_JUMBOTESTS=ON")) {
sh 'cd build && export BUILD_ABS_PATH=`pwd` && timeout 1h ninja jumbotests'
} else {
sh 'cd build && export BUILD_ABS_PATH=`pwd` && timeout 1h ninja unittest'
}
if (args.cmake.toUpperCase().contains("NOISEPAGE_GENERATE_COVERAGE=ON")) {
uploadCoverage()
}
stagePost()
}
/** Run OLTPBench tests in debug mode. */
void stageOltpbenchDebug() {
stagePre()
installPackages()
buildNoisePage([buildCommand:'ninja noisepage', cmake:
'-DCMAKE_BUILD_TYPE=Debug -DNOISEPAGE_UNITY_BUILD=ON -DNOISEPAGE_USE_ASAN=ON'
])
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)'
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)'
stagePost()
}
/** Run OLTPBench tests in release mode, additionally publishing results. */
void stageOltpbenchRelease() {
stagePre()
installPackages()
buildNoisePage([buildCommand:'ninja noisepage', cmake:
'-DCMAKE_BUILD_TYPE=Release -DNOISEPAGE_UNITY_BUILD=ON -DNOISEPAGE_USE_JEMALLOC=ON'
])
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)'
stagePost()
}
void stageForecasting() {
stagePre()
installPackages()
buildNoisePage([buildCommand:'ninja noisepage', cmake:
'-DCMAKE_BUILD_TYPE=Release -DNOISEPAGE_UNITY_BUILD=ON -DNOISEPAGE_USE_JEMALLOC=ON'
])
// The forecaster_standalone script runs TPC-C with query trace enabled.
// The forecaster_standalone script uses SET to enable query trace.
// --pattern_iter determines how many times to run a sequence of TPC-C phases.
// --pattern_iter is set to 3 (magic number) to generate enough data for training and testing.
sh script :'''
cd build
PYTHONPATH=.. python3 -m script.self_driving.forecasting.forecaster_standalone --generate_data --pattern_iter=3
''', label: 'Generate training data for forecasting model.'
sh script :'''
cd build
PYTHONPATH=.. python3 -m script.self_driving.forecasting.forecaster_standalone --model_save_path=model.pickle --models=LSTM
''', label: 'Train the model.'
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.'
stagePost()
}
void stageModeling() {
stagePre()
installPackages()
// Build the noisepage DBMS and the execution_runners binary in release mode for efficient data generation.
buildNoisePage([buildCommand:'ninja noisepage', cmake:
'-DCMAKE_BUILD_TYPE=Release -DNOISEPAGE_UNITY_BUILD=ON -DNOISEPAGE_USE_JEMALLOC=ON'
])
buildNoisePageTarget("execution_runners")
// The forecaster_standalone script runs TPC-C with query trace enabled.
// The forecaster_standalone script uses SET to enable query trace.
// --pattern_iter determines how many times to run a sequence of TPC-C phases.
// --pattern_iter is set to 3 (magic number) to generate enough data for training and testing.
sh script :'''
cd build
PYTHONPATH=.. python3 -m script.self_driving.forecasting.forecaster_standalone --generate_data --pattern_iter=3
''', label: 'Generate training data for forecasting model.'
// This script runs TPC-C with pipeline metrics enabled, saving to build/concurrent_runner_input/pipeline.csv.
sh script :'''
cd build
PYTHONPATH=.. python3 -m script.self_driving.forecasting.forecaster_standalone --generate_data --record_pipeline_metrics_with_counters --pattern_iter=1
mkdir concurrent_runner_input
mv pipeline.csv concurrent_runner_input
''', label: 'Interference model training data generation'
// The parameters to the execution_runners target are arbitrarily picked to complete tests within 10 minutes while
// still exercising all OUs and generating a reasonable amount of training data.
//
// Specifically, the parameters chosen are:
// - execution_runner_rows_limit=100, which sets the max 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.
sh script :'''
cd build/bin
../benchmark/execution_runners --execution_runner_rows_limit=100 --rerun=0 --warm_num=1
''', label: 'OU model training data generation'
// Recompile the noisepage DBMS in Debug mode with code coverage.
buildNoisePage([buildCommand:'ninja noisepage', cmake:
'-DCMAKE_BUILD_TYPE=Debug -DNOISEPAGE_UNITY_BUILD=OFF -DNOISEPAGE_GENERATE_COVERAGE=ON'
])
// Run the self_driving_e2e_test.
sh script: '''
cd build
export BUILD_ABS_PATH=`pwd`
timeout 10m ninja self_driving_e2e_test
''', label: 'Running self-driving end-to-end test'
// We need `coverage combine` because coverage files are generated separately for each test and then moved into the
// the build root by `run-test.sh`
sh script :'''
cd build
coverage combine
''', label: 'Combine Python code coverage.'
uploadCoverage()
stagePost()
}
void stageArchive() {
archiveArtifacts(artifacts: 'build/Testing/**/*.xml', fingerprint: true)
xunit reduceLog: false, tools: [CTest(deleteOutputFiles: false, failIfNotNew: false, pattern: 'build/Testing/**/*.xml', skipNoTestFiles: false, stopProcessingIfError: false)]
}
void stageNightlyArtifact() {
stagePre()
installPackages()
buildNoisePage([useCache: false, shouldRecordTime:true, buildCommand:'ninja noisepage', cmake:
'-DCMAKE_BUILD_TYPE=Release -DNOISEPAGE_UNITY_BUILD=ON -DNOISEPAGE_USE_JEMALLOC=ON'
])
sh script: '''
cd build
PYTHONPATH=.. python3 -m script.testing.artifact_stats --publish-results=prod --publish-username=${PSS_CREATOR_USR} --publish-password=${PSS_CREATOR_PSW}
''', label: 'Artifact Stats'
stagePost()
}
void stageNightlyPerformance() {
stagePre()
installPackages()
buildNoisePage([buildCommand:'ninja noisepage', cmake:
'-DCMAKE_BUILD_TYPE=Release -DNOISEPAGE_UNITY_BUILD=ON -DNOISEPAGE_USE_JEMALLOC=ON'
])
// catchError: set the overall stage to fail, but continue to execute subsequent steps.
catchError(stageResult: 'Failure'){
sh script:'''
cd build
PYTHONPATH=.. timeout 3h python3 -m script.testing.oltpbench --config-file=../script/testing/oltpbench/configs/nightly/nightly.json --build-type=release --publish-results=prod --publish-username=${PSS_CREATOR_USR} --publish-password=${PSS_CREATOR_PSW}
''', label: 'OLTPBench (HDD WAL)'
}
catchError(stageResult: 'Failure'){
sh script:'''
cd build
PYTHONPATH=.. timeout 3h python3 -m script.testing.oltpbench --config-file=../script/testing/oltpbench/configs/nightly/nightly_ramdisk.json --build-type=release --publish-results=prod --publish-username=${PSS_CREATOR_USR} --publish-password=${PSS_CREATOR_PSW}
''', label: 'OLTPBench (RamDisk WAL)'
}
catchError(stageResult: 'Failure'){
sh script:'''
cd build
PYTHONPATH=.. timeout 3h python3 -m script.testing.oltpbench --config-file=../script/testing/oltpbench/configs/nightly/nightly_wal_disabled.json --build-type=release --publish-results=prod --publish-username=${PSS_CREATOR_USR} --publish-password=${PSS_CREATOR_PSW}
''', label: 'OLTPBench (No WAL)'
}
archiveArtifacts(artifacts: 'build/oltp_result/**/*.*', excludes: 'build/oltp_result/**/*.csv', fingerprint: true)
stagePost()
}
void stageNightlyMicrobenchmark() {
stagePre()
installPackages()
buildNoisePage([buildCommand:'ninja', cmake:
'-DCMAKE_BUILD_TYPE=Release -DNOISEPAGE_BUILD_BENCHMARKS=ON -DNOISEPAGE_UNITY_BUILD=ON -DNOISEPAGE_USE_JEMALLOC=ON -DNOISEPAGE_USE_LOGGING=OFF'
])
// The micro_bench configuration has to be consistent because we currently check against previous runs with the same config
// # of Threads: 4
// WAL Path: Ramdisk
sh script:'''
cd script/testing
PYTHONPATH=../.. python3 -m script.testing.microbench --num-threads=4 --benchmark-path $(pwd)/../../build/benchmark --logfile-path=/mnt/ramdisk/benchmark.log --publish-results=prod --publish-username=${PSS_CREATOR_USR} --publish-password=${PSS_CREATOR_PSW}
''', label:'Microbenchmark'
archiveArtifacts 'script/testing/*.json'
stagePost()
}
// SECTION: Utility functions.
/** Install the packages. installType = {build, all}. */
void installPackages(String installType='all') {
sh script:"echo y | sudo ./script/installation/packages.sh $installType", label: 'Installing packages.'
}
/** Create a build folder, set up CMake flags, and build NoisePage. */
void buildNoisePage(Map args = [:]) {
// Disable most options by default. Callers should be explicit.
Map config = [
useCache: true,
shouldRecordTime: false,
buildCommand: 'ninja',
cmake: '',
]
config << args
String cmakeCmd = 'cmake -GNinja'
if (config.useCache) {
cmakeCmd += ' -DCMAKE_CXX_COMPILER_LAUNCHER=ccache'
}
cmakeCmd += ' '
cmakeCmd += config.cmake
cmakeCmd += ' ..'
String buildCmd = config.buildCommand
buildScript = '''
mkdir -p build
cd build
'''
buildScript += "$cmakeCmd"
if (config.shouldRecordTime) {
buildScript += """
/usr/bin/time -o /tmp/noisepage-compiletime.txt -f %e sh -c \"$buildCmd\"
"""
} else {
buildScript += """
$buildCmd
"""
}
sh script:buildScript, label: 'Build NoisePage.'
}
/** Build the specified target. buildNoisePage() MUST have been called! */
void buildNoisePageTarget(String target) {
sh script:"""
cd build
ninja $target
"""
}
/** Collect and process coverage information from the build directory; upload coverage to Codecov. */
void uploadCoverage() {
sh script :'''
cd build
lcov --directory . --capture --output-file coverage.info
lcov --remove coverage.info \'/usr/*\' --output-file coverage.info
lcov --remove coverage.info \'*/build/*\' --output-file coverage.info
lcov --remove coverage.info \'*/third_party/*\' --output-file coverage.info
lcov --remove coverage.info \'*/benchmark/*\' --output-file coverage.info
lcov --remove coverage.info \'*/test/*\' --output-file coverage.info
lcov --remove coverage.info \'*/src/main/*\' --output-file coverage.info
lcov --remove coverage.info \'*/src/include/common/error/*\' --output-file coverage.info
lcov --list coverage.info
curl -s https://codecov.io/bash | bash -s -- -X gcov
''', label: 'Process code coverage and upload to Codecov.'
}
return this