-
Notifications
You must be signed in to change notification settings - Fork 95
/
longevity_test.py
516 lines (425 loc) · 24.8 KB
/
longevity_test.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
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
#!/usr/bin/env python
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#
# See LICENSE for more details.
#
# Copyright (c) 2016 ScyllaDB
import json
import os
import re
import string
import tempfile
import itertools
import contextlib
import yaml
from cassandra import AlreadyExists, InvalidRequest
from cassandra.query import SimpleStatement # pylint: disable=no-name-in-module
from sdcm.sct_events.group_common_events import \
ignore_large_collection_warning, \
ignore_max_memory_for_unlimited_query_soft_limit
from sdcm.tester import ClusterTester
from sdcm.utils import loader_utils
from sdcm.utils.adaptive_timeouts import adaptive_timeout, Operations
from sdcm.utils.common import skip_optional_stage
from sdcm.utils.decorators import optional_stage
from sdcm.utils.operations_thread import ThreadParams
from sdcm.sct_events.system import InfoEvent
from sdcm.sct_events import Severity
from sdcm.cluster import MAX_TIME_WAIT_FOR_NEW_NODE_UP
class LongevityTest(ClusterTester, loader_utils.LoaderUtilsMixin):
"""
Test a Scylla cluster stability over a time period.
"""
def __init__(self, *args, **kwargs): # pylint: disable=too-many-statements,too-many-locals,too-many-branches
super().__init__(*args)
# This ignores large_data warning messages "Writing large collection" for large collections to prevent
# creating SCT Events from these warnings.
# During large collections test thousands of warnings are being created.
self.validate_large_collections = self.params.get('validate_large_collections')
if self.validate_large_collections:
self.stack = contextlib.ExitStack()
self.stack.enter_context(ignore_large_collection_warning())
self.stack.enter_context(ignore_max_memory_for_unlimited_query_soft_limit())
default_params = {'timeout': 650000}
def _get_tombstone_gc_verification_params(self) -> dict:
params = {}
if tombstone_params := self.params.get('run_tombstone_gc_verification'):
params = json.loads(tombstone_params)
self.log.info('Tombstone GC verification params are: %s', params)
return params
def _get_scan_operation_params(self) -> list[ThreadParams]:
params = self.params.get("run_fullscan")
self.log.info('Scan operation params are: %s', params)
sla_role_name, sla_role_password = None, None
if fullscan_role := getattr(self, "fullscan_role", None):
sla_role_name = fullscan_role.name
sla_role_password = fullscan_role.password
scan_operation_params_list = []
for item in params:
item_dict = json.loads(item)
scan_operation_params_list.append(ThreadParams(
db_cluster=self.db_cluster,
termination_event=self.db_cluster.nemesis_termination_event,
user=sla_role_name,
user_password=sla_role_password,
duration=self.get_duration(item_dict.get("duration")),
**item_dict
))
self.log.info('Scan operation scan_operation_params_list are: %s', scan_operation_params_list)
return scan_operation_params_list
@optional_stage('prepare_write')
def run_pre_create_schema(self):
pre_create_schema = self.params.get('pre_create_schema')
keyspace_num = self.params.get('keyspace_num')
if pre_create_schema:
self._pre_create_schema(keyspace_num, scylla_encryption_options=self.params.get(
'scylla_encryption_options'))
@optional_stage('prepare_write')
def run_pre_create_keyspace(self):
if self.params.get('pre_create_keyspace'):
self._pre_create_keyspace()
@optional_stage('main_load')
def _run_validate_large_collections_in_system(self, node, table='table_with_large_collection'):
self.log.info("Verifying large collections in system tables on node: {}".format(node))
with self.db_cluster.cql_connection_exclusive(node=node) as session:
query = "SELECT * from system.large_cells WHERE keyspace_name='large_collection_test'" \
f" AND table_name='{table}' ALLOW FILTERING"
statement = SimpleStatement(query, fetch_size=10)
data = list(session.execute(statement))
if not data:
InfoEvent("Did not find expected row in system.large_cells", severity=Severity.ERROR)
@optional_stage('main_load')
def _run_validate_large_collections_warning_in_logs(self, node):
self.log.info("Verifying warning for large collections in logs on node: {}".format(node))
msg = "Writing large collection"
res = list(node.follow_system_log(patterns=[msg], start_from_beginning=True))
if not res:
InfoEvent("Did not find expected log message warning: {}".format(msg), severity=Severity.ERROR)
def test_custom_time(self):
"""
Run cassandra-stress with params defined in data_dir/scylla.yaml
"""
# pylint: disable=too-many-locals,too-many-branches,too-many-statements
self.db_cluster.add_nemesis(nemesis=self.get_nemesis_class(),
tester_obj=self)
stress_queue = []
# prepare write workload
prepare_write_cmd = self.params.get('prepare_write_cmd')
keyspace_num = self.params.get('keyspace_num')
self.pre_create_alternator_tables()
self.run_pre_create_keyspace()
self.run_pre_create_schema()
self.kafka_configure()
if scan_operation_params := self._get_scan_operation_params():
for scan_param in scan_operation_params:
self.log.info("Starting fullscan operation thread with the following params: %s", scan_param)
self.run_fullscan_thread(fullscan_params=scan_param,
thread_name=str(scan_operation_params.index(scan_param)))
if tombstone_gc_verification_params := self._get_tombstone_gc_verification_params():
self.run_tombstone_gc_verification_thread(**tombstone_gc_verification_params)
self.run_prepare_write_cmd()
# Grow cluster to target size if requested
if cluster_target_size := self.params.get('cluster_target_size'):
add_node_cnt = self.params.get('add_node_cnt')
node_cnt = len(self.db_cluster.data_nodes)
InfoEvent(message=f"Starting to grow cluster from {node_cnt} to {cluster_target_size}").publish()
while node_cnt < cluster_target_size:
InfoEvent(message=f"Adding node number {node_cnt + 1}").publish()
new_nodes = self.db_cluster.add_nodes(count=add_node_cnt, enable_auto_bootstrap=True)
self.monitors.reconfigure_scylla_monitoring()
up_timeout = MAX_TIME_WAIT_FOR_NEW_NODE_UP
with adaptive_timeout(Operations.NEW_NODE, node=self.db_cluster.data_nodes[0], timeout=up_timeout):
self.db_cluster.wait_for_init(node_list=new_nodes, timeout=up_timeout, check_node_health=False)
self.db_cluster.wait_for_nodes_up_and_normal(nodes=new_nodes)
node_cnt = len(self.db_cluster.data_nodes)
InfoEvent(message=f"Growing cluster finished, new cluster size is {node_cnt}").publish()
# Collect data about partitions and their rows amount
if self.partitions_attrs and self.partitions_attrs.validate_partitions:
self.partitions_attrs.collect_initial_partitions_info()
stress_cmd = self.params.get('stress_cmd')
self.assemble_and_run_all_stress_cmd(stress_queue, stress_cmd, keyspace_num)
customer_profiles = self.params.get('cs_user_profiles')
if customer_profiles:
cs_duration = self.params.get('cs_duration')
for cs_profile in customer_profiles:
assert os.path.exists(cs_profile), 'File not found: {}'.format(cs_profile)
self.log.debug('Run stress test with user profile {}, duration {}'.format(cs_profile, cs_duration))
profile_dst = os.path.join('/tmp', os.path.basename(cs_profile))
with open(cs_profile, encoding="utf-8") as pconf:
cont = pconf.readlines()
user_profile_table_count = self.params.get( # pylint: disable=invalid-name
'user_profile_table_count')
for _ in range(user_profile_table_count):
for cmd in [line.lstrip('#').strip() for line in cont if line.find('cassandra-stress') > 0]:
stress_cmd = (cmd.format(profile_dst, cs_duration))
params = {'stress_cmd': stress_cmd, 'profile': cs_profile}
self.log.debug('Stress cmd: {}'.format(stress_cmd))
if not skip_optional_stage('main_load'):
self._run_all_stress_cmds(stress_queue, params)
# Check if we shall wait for total_used_space or if nemesis wasn't started
if not prepare_write_cmd or not self.params.get('nemesis_during_prepare'):
self.db_cluster.wait_total_space_used_per_node(keyspace=None)
self.db_cluster.start_nemesis()
stress_read_cmd = self.params.get('stress_read_cmd')
if stress_read_cmd and not skip_optional_stage('main_load'):
params = {'keyspace_num': keyspace_num, 'stress_cmd': stress_read_cmd}
self._run_all_stress_cmds(stress_queue, params)
for stress in stress_queue:
self.verify_stress_thread(cs_thread_pool=stress)
if self.partitions_attrs and self.partitions_attrs.validate_partitions:
self.partitions_attrs.validate_rows_per_partitions(ignore_limit_rows_number=True)
if (stress_read_cmd or stress_cmd) and self.validate_large_collections:
with ignore_large_collection_warning():
for node in self.db_cluster.data_nodes:
self._run_validate_large_collections_in_system(node)
self._run_validate_large_collections_warning_in_logs(node)
def test_batch_custom_time(self):
"""
The test runs like test_custom_time but designed for running multiple stress commands in batches.
It take the keyspace_num and calculates the number of batches to run based on batch_size.
For every batch, it runs the stress and verify them and only then moves to the next batch.
Test assumes:
- pre_create_schema (The test pre-creating the schema for all batches)
- round_robin
- No nemesis during prepare
:param keyspace_num: Number of keyspaces to be batched (in future it can be enhanced with number of tables).
:param batch_size: Number of stress commands to run together in a batch.
"""
self.db_cluster.add_nemesis(nemesis=self.get_nemesis_class(), tester_obj=self)
total_stress = self.params.get('keyspace_num') # In future it may be 1 keyspace but multiple tables in it.
batch_size = self.params.get('batch_size')
prepare_write_cmd = self.params.get('prepare_write_cmd')
if prepare_write_cmd and not skip_optional_stage('prepare_write'):
self._run_stress_in_batches(total_stress=total_stress, batch_size=batch_size,
stress_cmd=prepare_write_cmd)
self.db_cluster.start_nemesis()
stress_cmd = self.params.get('stress_cmd')
if not skip_optional_stage('main_load'):
self._run_stress_in_batches(total_stress=batch_size, batch_size=batch_size,
stress_cmd=stress_cmd)
def test_user_batch_custom_time(self):
"""
The test runs like test_custom_time but designed for running multiple stress commands on user profile with multiple
tables in one keyspace
It uses batches of `batch_size` size, until it reach `user_profile_table_count`
For every batch, it runs the stress command in parallel and verify them and only then moves to the next batch.
Test assumes:
- pre_create_schema (The test pre-creating the schema for all batches)
- round_robin
- No nemesis during prepare
:param user_profile_table_count: Number of tables to be batched.
:param batch_size: Number of stress commands to run together in a batch.
"""
self.db_cluster.add_nemesis(nemesis=self.get_nemesis_class(), tester_obj=self)
batch_size = self.params.get('batch_size')
if not self.params.get('reuse_cluster'):
self._pre_create_templated_user_schema()
# Start new nodes
# we are starting this test case with only one db to make creating of the tables quicker
# gossip with multiple node cluster make this painfully slower
add_node_cnt = self.params.get('add_node_cnt')
for _ in range(add_node_cnt):
new_nodes = self.db_cluster.add_nodes(count=1, enable_auto_bootstrap=True)
self.monitors.reconfigure_scylla_monitoring()
self.db_cluster.wait_for_init(node_list=new_nodes)
self.db_cluster.start_nemesis()
stress_params_list = []
customer_profiles = self.params.get('cs_user_profiles')
templated_table_counter = itertools.count()
if customer_profiles:
cs_duration = self.params.get('cs_duration')
duration = int(cs_duration.translate(str.maketrans('', '', string.ascii_letters)))
for cs_profile in customer_profiles:
assert os.path.exists(cs_profile), 'File not found: {}'.format(cs_profile)
self.log.debug('Run stress test with user profile {}, duration {}'.format(cs_profile, cs_duration))
user_profile_table_count = self.params.get('user_profile_table_count') # pylint: disable=invalid-name
for _ in range(user_profile_table_count):
stress_params_list += self.create_templated_user_stress_params(next(templated_table_counter),
cs_profile)
if not skip_optional_stage('main_load'):
self._run_user_stress_in_batches(batch_size=batch_size,
stress_params_list=stress_params_list, duration=duration)
def _run_user_stress_in_batches(self, batch_size, stress_params_list, duration):
"""
run user profile in batches, while adding 4 stress-commands which are not with precreated tables
and wait for them to finish
:param batch_size: size of the batch
:param stress_params_list: the list of all stress commands
:return:
"""
# pylint: disable=too-many-locals
def chunks(_list, chunk_size):
"""Yield successive n-sized chunks from _list."""
for i in range(0, len(_list), chunk_size):
yield _list[i:i + chunk_size], i, i+chunk_size, len(_list) + i * 2
for batch, _, _, extra_tables_idx in list(chunks(stress_params_list, batch_size)):
stress_queue = []
batch_params = dict(duration=duration, round_robin=True, stress_cmd=[])
# add few stress threads with tables that weren't pre-created
customer_profiles = self.params.get('cs_user_profiles')
for cs_profile in customer_profiles:
# for now we'll leave to just one fresh table, to kick schema update
num_of_newly_created_tables = 1
self._pre_create_templated_user_schema(batch_start=extra_tables_idx,
batch_end=extra_tables_idx+num_of_newly_created_tables)
for i in range(num_of_newly_created_tables):
batch.append(self.create_templated_user_stress_params(extra_tables_idx + i, cs_profile=cs_profile))
nodes_ips = self.all_node_ips_for_stress_command
for params in batch:
batch_params['stress_cmd'] += [params['stress_cmd'] + nodes_ips]
self._run_all_stress_cmds(stress_queue, params=batch_params)
for stress in stress_queue:
self.verify_stress_thread(cs_thread_pool=stress)
def _run_stress_in_batches(self, total_stress, batch_size, stress_cmd):
stress_queue = []
pre_create_schema = self.params.get('pre_create_schema')
if pre_create_schema:
self._pre_create_schema(keyspace_num=total_stress,
scylla_encryption_options=self.params.get('scylla_encryption_options'))
num_of_batches = int(total_stress / batch_size)
for batch in range(0, num_of_batches):
for i in range(1 + batch * batch_size, (batch + 1) * batch_size + 1):
keyspace_name = self._get_keyspace_name(i)
if not isinstance(stress_cmd, list):
stress_cmd = [stress_cmd]
stress_cmds_with_all_ips = [cmd + self.all_node_ips_for_stress_command for cmd in stress_cmd]
self._run_all_stress_cmds(stress_queue, params={'stress_cmd': stress_cmds_with_all_ips,
'keyspace_name': keyspace_name, 'round_robin': True})
for stress in stress_queue:
self.verify_stress_thread(cs_thread_pool=stress)
@property
def all_node_ips_for_stress_command(self):
return f' -node {",".join([n.cql_address for n in self.db_cluster.data_nodes])}'
@staticmethod
def _get_columns_num_of_single_stress(single_stress_cmd):
if '-col' not in single_stress_cmd:
return None
col_num = None
params_list = single_stress_cmd.split()
col_params_list = []
for param in params_list[params_list.index('-col')+1:]:
col_params_list.append(param.strip("'"))
if param.endswith("'"):
break
for param in col_params_list:
if param.startswith('n='):
col_num = int(re.findall(r'\b\d+\b', param)[0])
break
return col_num
def _get_prepare_write_cmd_columns_num(self):
prepare_write_cmd = self.params.get('prepare_write_cmd')
if not prepare_write_cmd:
return None
if isinstance(prepare_write_cmd, str):
prepare_write_cmd = [prepare_write_cmd]
return max([self._get_columns_num_of_single_stress(single_stress_cmd=stress) for stress in prepare_write_cmd])
def _pre_create_schema(self, keyspace_num=1, scylla_encryption_options=None):
"""
For cases we are testing many keyspaces and tables, It's a possibility that we will do it better and faster than
cassandra-stress.
"""
self.log.debug('Pre Creating Schema for c-s with {} keyspaces'.format(keyspace_num))
compaction_strategy = self.params.get('compaction_strategy')
sstable_size = self.params.get('sstable_size')
for i in range(1, keyspace_num+1):
keyspace_name = 'keyspace{}'.format(i)
self.create_keyspace(keyspace_name=keyspace_name, replication_factor=3)
self.log.debug('{} Created'.format(keyspace_name))
col_num = self._get_prepare_write_cmd_columns_num() or 5
columns = {}
for col_idx in range(col_num):
cs_key = '"C'+str(col_idx)+'"'
columns[cs_key] = 'blob'
self.create_table(name='standard1', keyspace_name=keyspace_name, key_type='blob', read_repair=0.0,
columns=columns,
scylla_encryption_options=scylla_encryption_options,
compaction=compaction_strategy, sstable_size=sstable_size)
def _pre_create_templated_user_schema(self, batch_start=None, batch_end=None):
# pylint: disable=too-many-locals
user_profile_table_count = self.params.get( # pylint: disable=invalid-name
'user_profile_table_count') or 0
cs_user_profiles = self.params.get('cs_user_profiles')
# read user-profile
for profile_file in cs_user_profiles:
with open(profile_file, encoding="utf-8") as fobj:
profile_yaml = yaml.safe_load(fobj)
keyspace_definition = profile_yaml['keyspace_definition']
keyspace_name = profile_yaml['keyspace']
table_template = string.Template(profile_yaml['table_definition'])
with self.db_cluster.cql_connection_patient(node=self.db_cluster.nodes[0]) as session:
# since we are using connection while nemesis is running (and we have more then 5000 tables in this
# use case), we need a bigger timeout here to keep the following CQL commands from failing
session.default_timeout = 60.0 * 5
try:
session.execute(keyspace_definition)
except AlreadyExists:
self.log.debug("keyspace [{}] exists".format(keyspace_name))
if batch_start is not None and batch_end is not None:
table_range = range(batch_start, batch_end)
else:
table_range = range(user_profile_table_count)
self.log.debug('Pre Creating Schema for c-s with {} user tables'.format(user_profile_table_count))
for i in table_range:
table_name = 'table{}'.format(i)
query = table_template.substitute(table_name=table_name)
try:
session.execute(query)
except AlreadyExists:
self.log.debug('table [{}] exists'.format(table_name))
self.log.debug('{} Created'.format(table_name))
for definition in profile_yaml.get('extra_definitions', []):
query = string.Template(definition).substitute(table_name=table_name)
try:
session.execute(query)
except (AlreadyExists, InvalidRequest) as exc:
self.log.debug('extra definition for [{}] exists [{}]'.format(table_name, str(exc)))
def _flush_all_nodes(self):
"""
This function will connect all db nodes in the cluster and run "nodetool flush" command.
:return:
"""
for node in self.db_cluster.nodes:
node.run_nodetool("flush")
def get_email_data(self):
self.log.info("Prepare data for email")
email_data = self._get_common_email_data()
benchmarks_results = self.db_cluster.get_node_benchmarks_results() if self.db_cluster else {}
# If cluster was not created, not need to collect nemesis stats - they do not exist
nemeses_stats = self.get_nemesises_stats() if self.db_cluster else {}
email_data.update({
"node_benchmarks": benchmarks_results,
"nemesis_details": nemeses_stats,
"nemesis_name": self.params.get("nemesis_class_name"),
"scylla_ami_id": self.params.get("ami_id_db_scylla") or "-",
})
return email_data
def create_templated_user_stress_params(self, idx, cs_profile): # pylint: disable=invalid-name
# pylint: disable=too-many-locals
params_list = []
cs_duration = self.params.get('cs_duration')
with open(cs_profile, encoding="utf-8") as pconf:
cont = pconf.readlines()
pconf.seek(0)
template = string.Template(pconf.read())
prefix, suffix = os.path.splitext(os.path.basename(cs_profile))
table_name = "table%s" % idx
with tempfile.NamedTemporaryFile(mode='w+', prefix=prefix, suffix=suffix, delete=False, encoding='utf-8') as file_obj:
output = template.substitute(table_name=table_name)
file_obj.write(output)
profile_dst = file_obj.name
# collect stress command from the comment in the end of the profile yaml
# example:
# cassandra-stress user profile={} cl=QUORUM 'ops(insert=1)' duration={} -rate threads=100 -pop 'dist=gauss(0..1M)'
for cmd in [line.lstrip('#').strip() for line in cont if line.find('cassandra-stress') > 0]:
stress_cmd = (cmd.format(profile_dst, cs_duration))
params = {'stress_cmd': stress_cmd, 'profile': profile_dst}
self.log.debug('Stress cmd: {}'.format(stress_cmd))
params_list.append(params)
return params_list