forked from scylladb/scylla-cluster-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathperformance_regression_user_profiles_test.py
More file actions
52 lines (45 loc) · 2.35 KB
/
performance_regression_user_profiles_test.py
File metadata and controls
52 lines (45 loc) · 2.35 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
#!/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) 2017 ScyllaDB
import os
from sdcm.tester import ClusterTester
class PerformanceRegressionUserProfilesTest(ClusterTester):
"""
Test Scylla performance regression with cassandra-stress using custom user profiles.
"""
def _clean_keyspace(self, cs_profile):
with open(cs_profile, encoding="utf-8") as fdr:
key_space = [line.split(":")[-1].strip() for line in fdr.readlines() if line.startswith("keyspace:")]
if key_space:
self.log.debug("Drop keyspace {}".format(key_space[0]))
with self.db_cluster.cql_connection_patient(self.db_cluster.nodes[0]) as session:
session.execute("DROP KEYSPACE IF EXISTS {};".format(key_space[0]))
def test_user_profiles(self):
"""
Run workload using user profiles
"""
duration = self.params.get("cs_duration")
user_profiles = self.params.get("cs_user_profiles")
assert user_profiles is not None, "No user profiles defined!"
for cs_profile in user_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, duration))
profile_dst = os.path.join("/tmp", os.path.basename(cs_profile))
with open(cs_profile, encoding="utf-8") as pconf:
cont = pconf.readlines()
for cmd in [line.lstrip("#").strip() for line in cont if line.find("cassandra-stress") > 0]:
stress_cmd = cmd.format(profile_dst, duration)
self.log.debug("Stress cmd: {}".format(stress_cmd))
stress_queue = self.run_stress_thread(stress_cmd=stress_cmd, stress_num=2, profile=cs_profile)
self.get_stress_results(queue=stress_queue)
self._clean_keyspace(cs_profile)