forked from scylladb/scylla-cluster-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcluster_configuration_tests.py
More file actions
95 lines (81 loc) · 3.82 KB
/
cluster_configuration_tests.py
File metadata and controls
95 lines (81 loc) · 3.82 KB
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
#!/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
from sdcm.tester import ClusterTester
from sdcm.utils.common import skip_optional_stage
class ClusterConfigurationTests(ClusterTester):
"""
Build a Scylla cluster with the appropriate parameters.
"""
default_params = {"timeout": 650000}
def get_email_data(self):
self.log.info("Prepare data for email")
email_data = self._get_common_email_data()
return email_data
def test_build(self):
"""
Build a Scylla cluster with params defined in data_dir/scylla.yaml
"""
self.log.info("DB cluster is: %s", self.db_cluster)
for node in self.db_cluster.nodes:
self.log.info(node.remoter.ssh_debug_cmd())
self.log.info("Loader Nodes: %s", self.loaders)
for node in self.loaders.nodes:
self.log.info(node.remoter.ssh_debug_cmd())
self.log.info("Monitor Nodes: %s", self.monitors)
for node in self.monitors.nodes:
self.log.info(node.remoter.ssh_debug_cmd())
if self.monitors.nodes:
self.log.info("Prometheus Web UI: http://%s:9090", self.monitors.nodes[0].public_ip_address)
self.log.info("Grafana Web UI: http://%s:3000", self.monitors.nodes[0].public_ip_address)
def test_change_seed_address_to_hostname(self):
"""
Build a Scylla cluster with params defined in data_dir/scylla.yaml
Stop cluster.
Replace IPs for seeds, listen_address & broadcast_rpc_address to public dns names
The cluster works properly.
"""
if self.params.get("cluster_backend") != "aws":
self.log.error("Test supports only AWS instances")
return
self.log.info("DB cluster is: %s", self.db_cluster)
for node in self.db_cluster.nodes:
node.stop_scylla(verify_up=False, verify_down=True)
addresses = {}
seeds = []
for node in self.db_cluster.nodes:
if hasattr(node._instance, "public_dns_name"):
addresses[node.private_ip_address] = node._instance.public_dns_name
if node.is_seed:
seeds.append(node.private_ip_address)
else:
self.log.error("Node instance doesn't have public dns name. Please check AMI!")
for node in self.db_cluster.nodes:
with node.remote_scylla_yaml() as scylla_yml:
scylla_yml.listen_address = addresses[node.private_ip_address]
scylla_yml.rpc_address = addresses[node.private_ip_address]
current_seed_provider = scylla_yml.seed_provider
seeds_string = ",".join([addresses.get(seed) for seed in seeds])
current_seed_provider[0].parameters = [{"seeds": seeds_string}]
scylla_yml.seed_provider = current_seed_provider
for node in self.db_cluster.nodes:
if node.is_seed:
node.start_scylla(verify_down=False, verify_up=True)
for node in self.db_cluster.nodes:
if not node.is_seed:
node.start_scylla(verify_down=False, verify_up=True)
base_cmd_w = self.params.get("stress_cmd")
if not skip_optional_stage("main_load"):
# run a workload
cs_thread_pool = self.run_stress_thread(stress_cmd=base_cmd_w)
self.verify_stress_thread(cs_thread_pool)