-
Notifications
You must be signed in to change notification settings - Fork 0
/
tpcds.py
349 lines (345 loc) · 18.1 KB
/
tpcds.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
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
"""
:Date: 2023-01-25
:Version: 1.0
:Authors: Patrick K. Erdelt
Performs a TPC-DS experiment.
Data is generated and stored in a distributed filesystem (Ceph).
Last character in each line of generated data is removed.
Data is then loaded from filesystem.
Loading pods are synched.
Different numbers of parallel loaders can be compared.
It can verified that all databases contain the same data, using short profiling (only keys).
Monitoring is activated.
Optionally we set some indexes and constraints after import.
Nodes can be fixed.
"""
from bexhoma import *
from dbmsbenchmarker import *
import logging
import urllib3
import logging
import argparse
import time
from timeit import default_timer
import datetime
import subprocess
import psutil
import math
urllib3.disable_warnings()
logging.basicConfig(level=logging.ERROR)
if __name__ == '__main__':
description = """Performs a TPC-DS experiment. Data is generated and imported into a DBMS from a distributed filesystem (shared disk)."""
# argparse
parser = argparse.ArgumentParser(description=description)
parser.add_argument('mode', help='profile the import or run the TPC-DS queries', choices=['profiling', 'run', 'start', 'load', 'empty', 'summary'])
parser.add_argument('-aws', '--aws', help='fix components to node groups at AWS', action='store_true', default=False)
parser.add_argument('-dbms','--dbms', help='DBMS', choices=['PostgreSQL', 'MonetDB', 'MySQL', 'MariaDB'], default=[], action='append')
parser.add_argument('-lit', '--limit-import-table', help='limit import to one table, name of this table', default='')
parser.add_argument('-db', '--debug', help='dump debug informations', action='store_true')
parser.add_argument('-sl', '--skip-loading', help='do not ingest, start benchmarking immediately', action='store_true', default=False)
parser.add_argument('-cx', '--context', help='context of Kubernetes (for a multi cluster environment), default is current context', default=None)
parser.add_argument('-e', '--experiment', help='sets experiment code for continuing started experiment', default=None)
parser.add_argument('-m', '--monitoring', help='activates monitoring', action='store_true')
parser.add_argument('-mc', '--monitoring-cluster', help='activates monitoring for all nodes of cluster', action='store_true', default=False)
parser.add_argument('-ms', '--max-sut', help='maximum number of parallel DBMS configurations, default is no limit', default=None)
parser.add_argument('-dt', '--datatransfer', help='activates transfer of data per query (not only execution)', action='store_true', default=False)
parser.add_argument('-nr', '--num-run', help='number of runs per query', default=1)
parser.add_argument('-nc', '--num-config', help='number of runs per configuration', default=1)
parser.add_argument('-ne', '--num-query-executors', help='comma separated list of number of parallel clients', default="1")
parser.add_argument('-nls', '--num-loading-split', help='portion of loaders that should run in parallel', default="1")
parser.add_argument('-nlp', '--num-loading-pods', help='total number of loaders per configuration', default="1")
parser.add_argument('-nlt', '--num-loading-threads', help='total number of threads per loading process', default="1")
parser.add_argument('-nbp', '--num-benchmarking-pods', help='comma separated list of number of benchmarkers per configuration', default="1")
parser.add_argument('-nbt', '--num-benchmarking-threads', help='total number of threads per benchmarking process', default="1")
parser.add_argument('-sf', '--scaling-factor', help='scaling factor (SF)', default=1)
parser.add_argument('-t', '--timeout', help='timeout for a run of a query', default=600)
parser.add_argument('-rr', '--request-ram', help='request ram for sut, default 16Gi', default='16Gi')
parser.add_argument('-rc', '--request-cpu', help='request cpus for sut, default 4', default='4')
parser.add_argument('-rct', '--request-cpu-type', help='request node for sut to have node label cpu=', default='')
parser.add_argument('-rg', '--request-gpu', help='request number of gpus for sut', default=1)
parser.add_argument('-rgt', '--request-gpu-type', help='request node for sut to have node label gpu=', default='')
parser.add_argument('-rst', '--request-storage-type', help='request persistent storage of certain type', default=None, choices=[None, '', 'local-hdd', 'shared'])
parser.add_argument('-rss', '--request-storage-size', help='request persistent storage of certain size', default='10Gi')
parser.add_argument('-rnn', '--request-node-name', help='request a specific node for sut', default=None)
parser.add_argument('-rnl', '--request-node-loading', help='request a specific node for loading pods', default=None)
parser.add_argument('-rnb', '--request-node-benchmarking', help='request a specific node for benchmarking pods', default=None)
parser.add_argument('-tr', '--test-result', help='test if result fulfills some basic requirements', action='store_true', default=False)
parser.add_argument('-ii', '--init-indexes', help='adds indexes to tables after ingestion', action='store_true', default=False)
parser.add_argument('-ic', '--init-constraints', help='adds constraints to tables after ingestion', action='store_true', default=False)
parser.add_argument('-is', '--init-statistics', help='recomputes statistics of tables after ingestion', action='store_true', default=False)
parser.add_argument('-rcp', '--recreate-parameter', help='recreate parameter for randomized queries', action='store_true', default=False)
parser.add_argument('-shq', '--shuffle-queries', help='have different orderings per stream', action='store_true', default=False)
# evaluate args
args = parser.parse_args()
if args.debug:
logging.basicConfig(level=logging.DEBUG)
#logging.basicConfig(level=logging.DEBUG)
debugging = int(args.debug)
if args.debug:
logger_bexhoma = logging.getLogger('bexhoma')
logger_bexhoma.setLevel(logging.DEBUG)
logger_loader = logging.getLogger('load_data_asynch')
logger_loader.setLevel(logging.DEBUG)
##############
### set parameters
##############
command_args = vars(args)
##############
### workflow parameters
##############
# start with old experiment?
code = args.experiment
# only create testbed or also run a benchmark?
mode = str(args.mode)
# scaling of data
SF = str(args.scaling_factor)
# timeout of a benchmark
timeout = int(args.timeout)
# how often to repeat experiment?
num_experiment_to_apply = int(args.num_config)
# should results be tested for validity?
test_result = args.test_result
# configure number of clients per config
list_clients = args.num_query_executors.split(",")
if len(list_clients) > 0:
list_clients = [int(x) for x in list_clients if len(x) > 0]
else:
list_clients = []
# do not ingest, start benchmarking immediately
skip_loading = args.skip_loading
##############
### specific to: dbmsbenchmarker TPC-DS
##############
# shuffle ordering and random parameters
recreate_parameter = args.recreate_parameter
shuffle_queries = args.shuffle_queries
# limit to one table
limit_import_table = args.limit_import_table
##############
### set cluster
##############
aws = args.aws
if aws:
cluster = clusters.aws(context=args.context)
# scale up
node_sizes = {
'auxiliary': 1,
'sut-mid': 1,
'benchmarker': 1
}
#cluster.scale_nodegroups(node_sizes)
else:
cluster = clusters.kubernetes(context=args.context)
cluster_name = cluster.contextdata['clustername']
# limit number of sut
if args.max_sut is not None:
cluster.max_sut = int(args.max_sut)
# set experiment
if code is None:
code = cluster.code
##############
### prepare and configure experiment
##############
experiment = experiments.tpcds(cluster=cluster, SF=SF, timeout=timeout, code=code, num_experiment_to_apply=num_experiment_to_apply)
experiment.prometheus_interval = "30s"
experiment.prometheus_timeout = "30s"
# remove running dbms
#experiment.clean()
experiment.prepare_testbed(command_args)
num_loading_pods = experiment.get_parameter_as_list('num_loading_pods')
num_loading_threads = experiment.get_parameter_as_list('num_loading_threads')
num_loading_split = experiment.get_parameter_as_list('num_loading_split')
num_benchmarking_pods = experiment.get_parameter_as_list('num_benchmarking_pods')
num_benchmarking_threads = experiment.get_parameter_as_list('num_benchmarking_threads')
# set node groups for components
if aws:
# set node labes for components
experiment.set_nodes(
sut = 'sut',
loading = 'auxiliary',
monitoring = 'auxiliary',
benchmarking = 'auxiliary',
)
# add labels about the use case
experiment.set_additional_labels(
usecase="tpc-ds",
experiment_design="parallel-loading"
)
##############
### add configs of dbms to be tested
##############
for loading_pods_split in num_loading_split: # should be a number of splits, e.g. 4 for 1/4th of all pods
for loading_pods_total in num_loading_pods: # number of loading pods in total
# split number of loading pods into parallel potions
if loading_pods_total < loading_pods_split:
# thats not possible
continue
# how many in parallel?
split_portion = int(loading_pods_total/loading_pods_split)
if ("PostgreSQL" in args.dbms or len(args.dbms) == 0):
# PostgreSQL
name_format = 'PostgreSQL-{cluster}-{pods}'
config = configurations.default(experiment=experiment, docker='PostgreSQL', configuration=name_format.format(cluster=cluster_name, pods=loading_pods_total, split=split_portion), dialect='PostgreSQL', alias='DBMS A2')
config.set_storage(
storageConfiguration = 'postgresql'
)
config.jobtemplate_loading = "jobtemplate-loading-tpcds-PostgreSQL.yml"
config.set_loading_parameters(
SF = SF,
PODS_TOTAL = str(loading_pods_total),
PODS_PARALLEL = str(split_portion),
STORE_RAW_DATA = 1,
STORE_RAW_DATA_RECREATE = 0,
BEXHOMA_SYNCH_LOAD = 1,
BEXHOMA_SYNCH_GENERATE = 1,
TRANSFORM_RAW_DATA = 1,
TPCDS_TABLE = limit_import_table,
)
config.set_benchmarking_parameters(
SF = SF,
DBMSBENCHMARKER_RECREATE_PARAMETER = recreate_parameter,
DBMSBENCHMARKER_SHUFFLE_QUERIES = shuffle_queries,
DBMSBENCHMARKER_DEV = debugging,
)
config.set_loading(parallel=split_portion, num_pods=loading_pods_total)
if ("MonetDB" in args.dbms or len(args.dbms) == 0):
# MonetDB
name_format = 'MonetDB-{cluster}-{pods}'
config = configurations.default(experiment=experiment, docker='MonetDB', configuration=name_format.format(cluster=cluster_name, pods=loading_pods_total, split=split_portion), dialect='MonetDB', alias='DBMS A1')
config.set_storage(
storageConfiguration = 'monetdb'
)
config.jobtemplate_loading = "jobtemplate-loading-tpcds-MonetDB.yml"
config.set_loading_parameters(
SF = SF,
PODS_TOTAL = str(loading_pods_total),
PODS_PARALLEL = str(split_portion),
STORE_RAW_DATA = 1,
STORE_RAW_DATA_RECREATE = 0,
BEXHOMA_SYNCH_LOAD = 1,
BEXHOMA_SYNCH_GENERATE = 1,
TRANSFORM_RAW_DATA = 1,
TPCDS_TABLE = limit_import_table,
)
config.set_benchmarking_parameters(
SF = SF,
DBMSBENCHMARKER_RECREATE_PARAMETER = recreate_parameter,
DBMSBENCHMARKER_SHUFFLE_QUERIES = shuffle_queries,
DBMSBENCHMARKER_DEV = debugging,
)
config.set_loading(parallel=split_portion, num_pods=loading_pods_total)
if ("MariaDB" in args.dbms or len(args.dbms) == 0):
# MariaDB
name_format = 'MariaDB-{cluster}-{pods}'
config = configurations.default(experiment=experiment, docker='MariaDB', configuration=name_format.format(cluster=cluster_name, pods=loading_pods_total, split=split_portion), dialect='MySQL', alias='DBMS A1')
config.set_storage(
storageConfiguration = 'mariadb'
)
config.jobtemplate_loading = "jobtemplate-loading-tpcds-MariaDB.yml"
config.set_loading_parameters(
SF = SF,
PODS_TOTAL = str(loading_pods_total),
PODS_PARALLEL = str(split_portion),
STORE_RAW_DATA = 1,
STORE_RAW_DATA_RECREATE = 0,
BEXHOMA_SYNCH_LOAD = 1,
BEXHOMA_SYNCH_GENERATE = 1,
TRANSFORM_RAW_DATA = 1,
TPCDS_TABLE = limit_import_table,
MYSQL_LOADING_FROM = "LOCAL",
)
config.set_benchmarking_parameters(
SF = SF,
DBMSBENCHMARKER_RECREATE_PARAMETER = recreate_parameter,
DBMSBENCHMARKER_SHUFFLE_QUERIES = shuffle_queries,
DBMSBENCHMARKER_DEV = debugging,
)
config.set_loading(parallel=split_portion, num_pods=loading_pods_total)
if ("MySQL" in args.dbms or len(args.dbms) == 0):
#if ("MySQL" in args.dbms): # must be chosen explicitly
# MySQL
for threads in num_loading_threads:
pods_times_threads=int(loading_pods_total)*int(threads)
name_format = 'MySQL-{cluster}-{pods_times_threads}'
config = configurations.default(experiment=experiment, docker='MySQL', configuration=name_format.format(cluster=cluster_name, pods=loading_pods_total, split=split_portion, threads=threads, pods_times_threads=pods_times_threads), dialect='MySQL', alias='DBMS A1')
config.set_storage(
storageConfiguration = 'mysql'
)
config.jobtemplate_loading = "jobtemplate-loading-tpcds-MySQL.yml"
config.set_loading_parameters(
SF = SF,
PODS_TOTAL = str(loading_pods_total),
PODS_PARALLEL = str(split_portion),
STORE_RAW_DATA = 1,
STORE_RAW_DATA_RECREATE = 0,
BEXHOMA_SYNCH_LOAD = 1,
BEXHOMA_SYNCH_GENERATE = 1,
TRANSFORM_RAW_DATA = 1,
MYSQL_LOADING_THREADS = int(threads),#int(num_loading_threads),#int(loading_pods_total),
MYSQL_LOADING_PARALLEL = 1, # not possible from RAM disk, only filesystem
TPCDS_TABLE = limit_import_table,
)
config.set_benchmarking_parameters(
SF = SF,
DBMSBENCHMARKER_RECREATE_PARAMETER = recreate_parameter,
DBMSBENCHMARKER_SHUFFLE_QUERIES = shuffle_queries,
DBMSBENCHMARKER_DEV = debugging,
)
config.set_loading(parallel=split_portion, num_pods=loading_pods_total)
##############
### wait for necessary nodegroups to have planned size
##############
if aws:
#cluster.wait_for_nodegroups(node_sizes)
pass
##############
### branch for workflows
##############
if args.mode == 'start':
experiment.start_sut()
elif args.mode == 'load':
# start all DBMS
experiment.start_sut()
# configure number of clients per config = 0
list_clients = []
# total time of experiment
experiment.add_benchmark_list(list_clients)
start = default_timer()
start_datetime = str(datetime.datetime.now())
# run workflow
experiment.work_benchmark_list()
# total time of experiment
end = default_timer()
end_datetime = str(datetime.datetime.now())
duration_experiment = end - start
elif args.mode == 'summary':
experiment.show_summary()
else:
experiment.add_benchmark_list(list_clients)
# total time of experiment
start = default_timer()
start_datetime = str(datetime.datetime.now())
print("{:30s}: has code {}".format("Experiment",experiment.code))
print("{:30s}: starts at {} ({})".format("Experiment",start_datetime, start))
print("{:30s}: {}".format("Experiment",experiment.workload['info']))
# run workflow
experiment.work_benchmark_list()
# total time of experiment
end = default_timer()
end_datetime = str(datetime.datetime.now())
duration_experiment = end - start
print("{:30s}: ends at {} ({}) - {:.2f}s total".format("Experiment",end_datetime, end, duration_experiment))
experiment.workload['duration'] = math.ceil(duration_experiment)
##################
experiment.evaluate_results()
experiment.store_workflow_results()
experiment.stop_benchmarker()
experiment.stop_sut()
#experiment.zip() # OOM? exit code 137
if test_result:
test_result_code = experiment.test_results()
if test_result_code == 0:
print("Test successful!")
cluster.restart_dashboard()
experiment.show_summary()
exit()