-
Notifications
You must be signed in to change notification settings - Fork 95
/
cdc_replication_test.py
432 lines (347 loc) · 18.4 KB
/
cdc_replication_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
#!/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) 2020 ScyllaDB
import shutil
import sys
import os
import time
import random
from enum import Enum
from textwrap import dedent
from typing import Optional, Tuple
from cassandra import ConsistencyLevel
from cassandra.query import SimpleStatement # pylint: disable=no-name-in-module
from sdcm import cluster
from sdcm.tester import ClusterTester
from sdcm.gemini_thread import GeminiStressThread
from sdcm.nemesis import CategoricalMonkey
class Mode(Enum):
DELTA = 1
PREIMAGE = 2
POSTIMAGE = 3
def mode_str(mode: Mode) -> str:
return {
Mode.DELTA: 'delta',
Mode.PREIMAGE: 'preimage',
Mode.POSTIMAGE: 'postimage'
}[mode]
def print_file_to_stdout(path: str) -> None:
with open(path, encoding="utf-8") as file:
shutil.copyfileobj(file, sys.stdout)
def write_cql_result(res, path: str):
"""Write a CQL select result to a file.
:param res: cql results
:type res: ResultSet
:param path: path to file
:type path: str
"""
with open(path, 'w', encoding="utf-8") as file:
for row in res:
file.write(str(row) + '\n')
file.flush()
os.fsync(file.fileno())
SCYLLA_MIGRATE_URL = "https://kbr-scylla.s3-eu-west-1.amazonaws.com/scylla-migrate"
REPLICATOR_URL = "https://kbr-scylla.s3-eu-west-1.amazonaws.com/scylla-cdc-replicator-1.0.1-SNAPSHOT-jar-with-dependencies.jar"
class CDCReplicationTest(ClusterTester):
KS_NAME = 'ks1'
TABLE_NAME = 'table1'
consistency_ok = None
def collect_data_for_analysis(self, master_node: cluster.BaseNode, replica_node: cluster.BaseNode) -> None:
with self.db_cluster.cql_connection_patient(node=master_node) as sess:
self.log.info('Fetching master table...')
res = sess.execute(SimpleStatement(f'select * from {self.KS_NAME}.{self.TABLE_NAME}',
consistency_level=ConsistencyLevel.QUORUM, fetch_size=1000))
write_cql_result(res, os.path.join(self.logdir, 'master-table'))
with self.cs_db_cluster.cql_connection_patient(node=replica_node) as sess:
self.log.info('Fetching replica table...')
res = sess.execute(SimpleStatement(f'select * from {self.KS_NAME}.{self.TABLE_NAME}',
consistency_level=ConsistencyLevel.QUORUM, fetch_size=1000))
write_cql_result(res, os.path.join(self.logdir, 'replica-table'))
def test_replication_cs(self) -> None:
self.log.info('Using cassandra-stress to generate workload.')
self.test_replication(False, Mode.DELTA)
def test_replication_gemini(self, mode: Mode) -> None:
self.log.info('Using gemini to generate workload. Mode: {}'.format(mode.name))
self.test_replication(True, mode)
def test_replication_gemini_delta(self) -> None:
self.test_replication_gemini(Mode.DELTA)
def test_replication_gemini_preimage(self) -> None:
self.test_replication_gemini(Mode.PREIMAGE)
def test_replication_gemini_postimage(self) -> None:
self.test_replication_gemini(Mode.POSTIMAGE)
# In this test we run a sequence of ~30 minute rounds of replication;
# after each round we stop generating workload and check consistency.
def test_replication_longevity(self) -> None:
loader_node = self.loaders.nodes[0]
self.setup_tools(loader_node)
self.log.info('Waiting for the latest CDC generation to start...')
# 2 * ring_delay (ring_delay = 30s) + leeway
time.sleep(70)
# We'll use the same seed for each round, so that gemini uses the same schema each time.
# This way we preserve tables from the previous round.
# The purpose of preserving tables is to have the cluster store more data, which
# puts strain on the cluster by causing more compactions, for example.
gemini_seed = random.randint(1, 1000)
self.log.info('Starting gemini.')
stress_thread = self.start_gemini(gemini_seed)
# Wait for gemini to create keyspaces/tables/UTs
self.log.info('Let gemini run for a while...')
time.sleep(20)
self.copy_master_schema_to_replica()
self.start_replicator(Mode.DELTA)
self.consistency_ok = True
# pylint: disable=unexpected-keyword-arg
self.db_cluster.nemesis.append(CategoricalMonkey(
tester_obj=self, termination_event=self.db_cluster.nemesis_termination_event,
dist={
'nodetool_decommission': 5,
'terminate_and_replace_node': 5,
'grow_shrink_cluster': 5,
'remove_node_then_add_node': 5,
'decommission_streaming_err': 5,
'network_random_interruptions': 4,
# 'network_block': 2, # disabled due to #2745
# 'network_start_stop_interface': 2, # as above
'stop_wait_start_scylla_server': 1,
'stop_start_scylla_server': 1,
'restart_then_repair_node': 1,
'hard_reboot_node': 1,
'multiple_hard_reboot_node': 1,
'soft_reboot_node': 1,
'restart_with_resharding': 1,
'destroy_data_then_repair': 1,
'destroy_data_then_rebuild': 1,
'nodetool_drain': 1,
'kill_scylla': 1,
'no_corrupt_repair': 1,
'major_compaction': 1,
'nodetool_refresh': 1,
'nodetool_enospc': 1,
'truncate': 1,
'truncate_large_partition': 1,
'abort_repair': 1,
'snapshot_operations': 1,
'rebuild_streaming_err': 1,
'repair_streaming_err': 1,
'memory_stress': 1,
}, default_weight=0))
self.db_cluster.nemesis_count = 1
# 9 rounds, ~1h30 minutes each -> ~11h30m total
# The number of rounds is tuned according to the available disk space in an i3.large AWS instance.
# One more round would cause the nodes to run out of disk space.
no_rounds = 9
for rnd in range(no_rounds):
self.log.info('Starting round {}'.format(rnd))
self.log.info('Starting nemesis')
self.db_cluster.start_nemesis()
self.log.info('Waiting for workload generation to finish (~30 minutes)...')
stress_results = self.verify_gemini_results(queue=stress_thread)
self.log.info('gemini results: {}'.format(stress_results))
self.log.info('Waiting for replicator to finish (sleeping 180s)...')
time.sleep(180)
self.log.info('Stopping nemesis...')
self.db_cluster.stop_nemesis(timeout=1800)
self.log.info('Nemesis stopped.')
self.log.info('Fetching replicator logs...')
replicator_log_path = os.path.join(self.logdir, 'cdc-replicator.log')
loader_node.remoter.receive_files(src='cdc-replicator.log', dst=replicator_log_path)
migrate_log_path = os.path.join(self.logdir, 'scylla-migrate.log')
(migrate_ok, consistency_ok) = self.check_consistency(migrate_log_path)
self.consistency_ok = consistency_ok
if not (self.consistency_ok and migrate_ok):
break
if rnd != no_rounds - 1:
self.log.info('Truncating master cluster base table.')
with self.db_cluster.cql_connection_patient(node=self.db_cluster.nodes[0]) as sess:
sess.execute(f"truncate table {self.KS_NAME}.{self.TABLE_NAME}")
self.log.info('Truncating replica cluster base table.')
with self.cs_db_cluster.cql_connection_patient(node=self.cs_db_cluster.nodes[0]) as sess:
sess.execute(f"truncate table {self.KS_NAME}.{self.TABLE_NAME}")
self.log.info('Starting gemini.')
stress_thread = self.start_gemini(gemini_seed)
if not self.consistency_ok:
self.log.error('Inconsistency detected.')
if self.consistency_ok and migrate_ok:
self.log.info('Consistency check successful.')
else:
# We don't fetch tables in this test since they are way too large.
# Besides, the data is not that useful anyway; scylla-migrate already shows what the inconsistency is.
# If the test fails, one should connect to the cluster manually and investigate there,
# or try to reproduce based on the logs in a smaller test.
self.fail('Consistency check failed.')
# pylint: disable=too-many-statements,too-many-branches,too-many-locals
def test_replication(self, is_gemini_test: bool, mode: Mode) -> None:
assert is_gemini_test or (mode == Mode.DELTA), "cassandra-stress doesn't work with preimage/postimage modes"
self.consistency_ok = False
self.log.info('Waiting for the latest CDC generation to start...')
# 2 * ring_delay (ring_delay = 30s) + leeway
time.sleep(70)
if is_gemini_test:
self.log.info('Starting gemini.')
stress_thread = self.start_gemini()
else:
self.log.info('Starting cassandra-stress.')
stress_thread = self.run_stress_cassandra_thread(stress_cmd=self.params.get('stress_cmd'))
self.log.info('Let stressor run for a while...')
# Wait for gemini/C-S to create keyspaces/tables/UTs
time.sleep(20)
self.copy_master_schema_to_replica()
self.log.info('Starting nemesis.')
self.db_cluster.add_nemesis(nemesis=self.get_nemesis_class(), tester_obj=self)
self.db_cluster.start_nemesis()
loader_node = self.loaders.nodes[0]
self.setup_tools(loader_node)
self.start_replicator(mode)
self.log.info('Let stressor run for a while...')
time.sleep(30)
self.log.info('Stopping nemesis before bootstrapping a new node.')
self.db_cluster.stop_nemesis(timeout=600)
self.log.info('Let stressor run for a while...')
time.sleep(30)
self.log.info('Bootstrapping a new node...')
new_node = self.db_cluster.add_nodes(count=1, enable_auto_bootstrap=True)[0]
self.log.info('Waiting for new node to finish initializing...')
self.db_cluster.wait_for_init(node_list=[new_node])
self.monitors.reconfigure_scylla_monitoring()
self.log.info('Bootstrapped, restarting nemesis.')
self.db_cluster.start_nemesis()
self.log.info('Waiting for stressor to finish...')
if is_gemini_test:
stress_results = self.verify_gemini_results(queue=stress_thread)
self.log.info('gemini results: {}'.format(stress_results))
else:
stress_results = stress_thread.get_results()
self.log.info('cassandra-stress results: {}'.format(list(stress_results)))
self.log.info('Waiting for replicator to finish (sleeping 60s)...')
time.sleep(60)
self.log.info('Stopping nemesis.')
self.db_cluster.stop_nemesis(timeout=600)
self.log.info('Fetching replicator logs.')
replicator_log_path = os.path.join(self.logdir, 'cdc-replicator.log')
loader_node.remoter.receive_files(src='cdc-replicator.log', dst=replicator_log_path)
master_node = self.db_cluster.nodes[0]
replica_node = self.cs_db_cluster.nodes[0]
migrate_log_path = None
migrate_ok = True
if mode == Mode.PREIMAGE:
with open(replicator_log_path, encoding="utf-8") as file:
self.consistency_ok = not 'Inconsistency detected.\n' in (line for line in file)
else:
migrate_log_path = os.path.join(self.logdir, 'scylla-migrate.log')
(migrate_ok, consistency_ok) = self.check_consistency(migrate_log_path,
compare_timestamps=(mode != Mode.POSTIMAGE))
self.consistency_ok = consistency_ok
if not self.consistency_ok:
self.log.error('Inconsistency detected.')
if self.consistency_ok and migrate_ok:
self.log.info('Consistency check successful.')
else:
self.collect_data_for_analysis(master_node, replica_node)
self.fail('Consistency check failed.')
# Compares tables using the scylla-migrate tool.
def check_consistency(self, migrate_log_dst_path: str, compare_timestamps: bool = True) -> Tuple[bool, bool]:
loader_node = self.loaders.nodes[0]
self.log.info('Comparing table contents using scylla-migrate...')
res = loader_node.remoter.run(cmd='./scylla-migrate check --master-address {} --replica-address {}'
' --ignore-schema-difference {} {}.{} 2>&1 | tee scylla-migrate.log'.format(
self.db_cluster.nodes[0].external_address,
self.cs_db_cluster.nodes[0].external_address,
'' if compare_timestamps else '--no-writetime',
self.KS_NAME, self.TABLE_NAME))
loader_node.remoter.receive_files(src='scylla-migrate.log', dst=migrate_log_dst_path)
migrate_ok = res.ok
if not migrate_ok:
self.log.error('scylla-migrate command returned status {}'.format(res.exit_status))
with open(migrate_log_dst_path, encoding="utf-8") as file:
consistency_ok = 'Consistency check OK.\n' in (line for line in file)
return (migrate_ok, consistency_ok)
def copy_master_schema_to_replica(self) -> None:
self.log.info('Fetching schema definitions from master cluster.')
with self.db_cluster.cql_connection_patient(node=self.db_cluster.nodes[0]) as sess:
sess.cluster.refresh_schema_metadata()
# For some reason, `refresh_schema_metadata` doesn't refresh immediatelly...
time.sleep(10)
ks = sess.cluster.metadata.keyspaces[self.KS_NAME]
ut_ddls = [t[1].as_cql_query() for t in ks.user_types.items()]
table_ddls = []
for name, table in ks.tables.items():
if name.endswith('_scylla_cdc_log'):
continue
# Don't enable CDC on the replica cluster
if 'cdc' in table.extensions:
del table.extensions['cdc']
table_ddls.append(table.as_cql_query())
if ut_ddls:
self.log.info('User types:\n{}'.format('\n'.join(ut_ddls)))
self.log.info('Table definitions:\n{}'.format('\n'.join(table_ddls)))
self.log.info('Creating schema on replica cluster.')
replica_node = self.cs_db_cluster.nodes[0]
with self.cs_db_cluster.cql_connection_patient(node=replica_node) as sess:
sess.execute(f"create keyspace if not exists {self.KS_NAME}"
" with replication = {'class': 'NetworkTopologyStrategy', 'replication_factor': 1}")
for stmt in ut_ddls + table_ddls:
sess.execute(stmt)
def start_replicator(self, mode: Mode) -> None:
# We run the replicator in a tmux session so that remoter.run returns immediately
# (the replicator will run in the background). We redirect the output to a log file for later extraction.
replicator_script = dedent("""
(cat >runreplicator.sh && chmod +x runreplicator.sh && tmux new-session -d -s 'replicator' ./runreplicator.sh) <<'EOF'
#!/bin/bash
java -cp replicator.jar com.scylladb.cdc.replicator.Main -k {} -t {} -s {} -d {} -cl one -m {} 2>&1 | tee cdc-replicator.log
EOF
""".format(self.KS_NAME, self.TABLE_NAME,
self.db_cluster.nodes[0].external_address,
self.cs_db_cluster.nodes[0].external_address,
mode_str(mode)))
self.log.info('Replicator script:\n{}'.format(replicator_script))
self.log.info('Starting replicator.')
res = self.loaders.nodes[0].remoter.run(cmd=replicator_script)
if res.exit_status != 0:
self.fail('Could not start CDC replicator.')
def start_gemini(self, seed: Optional[int] = None) -> GeminiStressThread:
params = {'gemini_seed': seed} if seed else {}
return GeminiStressThread(
test_cluster=self.db_cluster,
oracle_cluster=None,
loaders=self.loaders,
stress_cmd=self.params.get('gemini_cmd'),
timeout=self.get_duration(None),
params=params).run()
def setup_tools(self, loader_node) -> None:
self.log.info('Installing tmux on loader node.')
res = loader_node.remoter.run(cmd='sudo yum install -y tmux')
if res.exit_status != 0:
self.fail('Could not install tmux.')
self.log.info('Getting scylla-migrate on loader node.')
res = loader_node.remoter.run(cmd=f'wget {SCYLLA_MIGRATE_URL} -O scylla-migrate && chmod +x scylla-migrate')
if res.exit_status != 0:
self.fail('Could not obtain scylla-migrate.')
self.log.info('Getting replicator on loader node.')
res = loader_node.remoter.run(cmd=f'wget {REPLICATOR_URL} -O replicator.jar')
if res.exit_status != 0:
self.fail('Could not obtain CDC replicator.')
def get_email_data(self) -> dict:
self.log.info("Prepare data for email")
email_data = self._get_common_email_data()
email_data.update({
"nemesis_details": self.get_nemesises_stats(),
"nemesis_name": self.params.get("nemesis_class_name"),
"scylla_ami_id": self.params.get("ami_id_db_scylla") or "-",
"number_of_oracle_nodes": self.params.get("n_test_oracle_db_nodes"),
"oracle_ami_id": self.params.get("ami_id_db_oracle"),
"oracle_db_version":
self.cs_db_cluster.nodes[0].scylla_version if self.cs_db_cluster else "N/A",
"oracle_instance_type": self.params.get("instance_type_db_oracle"),
"consistency_status": self.consistency_ok
})
return email_data