-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdbt3.py
164 lines (156 loc) · 4.98 KB
/
dbt3.py
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
"""
These are DBT-3 specific testing steps.
"""
from buildbot.plugins import steps, util
import general
import postgres
CMD = "%(prop:builddir)s/../test/dbt3.conf | tail -n 1 | cut -d '=' -f 2"
SCALE = f"$(grep -i ^scale_factor {CMD})"
DBT3PROPERTIES = [
util.IntParameter(
name="scale",
label="Scale Factor",
default=1,
required=True,
),
] + \
general.PROPERTIES
DBT3STEPS = general.CLEANUP + \
[steps.RemoveDirectory(
name="Remove previous dbgen files",
dir=util.Interpolate("%(prop:builddir)s/load"),
)] + \
postgres.PGINSTALL + \
[steps.Compile(
name="Install auto_explain extension",
command=['make', 'install'],
workdir='build/contrib/auto_explain',
haltOnFailure=True,
)] + \
[steps.Git(
name="Clone DBT-3",
repourl='https://github.com/osdldbt/dbt3.git',
mode='full',
method='fresh',
workdir='dbt3',
branch='main',
alwaysUseLatest=True,
haltOnFailure=True,
)] + \
general.PATCHDBT + \
[steps.Configure(
name="Configure DBT-3",
command=[
'cmake',
'-H.',
'-Bbuilds/release',
'-DCMAKE_INSTALL_PREFIX=/usr',
],
workdir='dbt3',
haltOnFailure=True,
)] + \
[steps.Compile(
name="Build DBT-3",
command=['make', '-f', 'Makefile.cmake', 'release'],
workdir='dbt3',
env={
'PATH': util.Interpolate("%(prop:builddir)s/usr/bin:${PATH}"),
},
haltOnFailure=True,
)] + \
[steps.Compile(
name="Install DBT-3",
command=['make', 'install'],
workdir='dbt3/builds/release',
env={'DESTDIR': util.Interpolate("%(prop:builddir)s")},
haltOnFailure=True,
)] + \
postgres.PGINITDB + \
postgres.PGSTART + \
[steps.Compile(
name="Create database",
command=['createdb', 'dbt3'],
env={
'PATH': util.Interpolate("%(prop:builddir)s/usr/bin:${PATH}"),
},
haltOnFailure=True,
)] + \
[steps.ShellCommand(
name="Performance test",
doStepIf=general.IsNotForceScheduler,
command=[
'/bin/sh', '-c',
util.Interpolate(
"dbt3 run "
"--dss=%(prop:builddir)s/dss "
"--explain "
"--relax "
f"--scale-factor {SCALE} "
"--stats "
"--tpchtools=%(prop:builddir)s/../dbgen "
"pgsql %(prop:builddir)s/results"
)
],
timeout=None,
env={
'PATH': util.Interpolate("%(prop:builddir)s/usr/bin:${PATH}"),
'PGHOST': '/tmp',
},
)] + \
[steps.ShellCommand(
name="Performance test (force)",
doStepIf=general.IsForceScheduler,
command=[
'/bin/sh', '-c',
util.Interpolate(
"dbt3 run "
"--dss=%(prop:builddir)s/dss "
"--explain "
"--relax "
"--scale-factor %(prop:scale)s "
"--stats "
"--tpchtools=%(prop:builddir)s/../dbgen "
"pgsql %(prop:builddir)s/results"
)
],
timeout=None,
env={
'PATH': util.Interpolate("%(prop:builddir)s/usr/bin:${PATH}"),
'PGHOST': '/tmp',
},
)] + \
postgres.PGSTOP + \
[steps.ShellCommand(
name="DBT-3 Metrics",
command=[
'cat',
util.Interpolate("%(prop:builddir)s/results/score.txt"),
],
)] + \
[steps.ShellCommand(
name="DBT-3 Summary",
command=[
'cat',
util.Interpolate("%(prop:builddir)s/results/summary.rst"),
],
)] + \
general.STATS_SYSTEM + \
general.STATS_DSS
for i in range(1, 22):
DBT3STEPS.append(
steps.ShellCommand(
name=f"Power Query {i}",
command=['cat', f"{i}.txt"],
workdir='results/power/results',
alwaysRun=True,
)
)
for i in [1, 2]:
DBT3STEPS.append(
steps.ShellCommand(
name=f"Power Refresh Stream {i}",
command=['cat', f"rf{i}.txt"],
workdir='results/power/results',
alwaysRun=True,
)
)