blob: 26fd25295900e64f390a2e6d05c40d672a8aa1bb [file] [log] [blame]
koder aka kdanilov4643fd62015-02-10 16:20:13 -08001import abc
koder aka kdanilovbc2c8982015-06-13 02:50:43 +03002import time
3import logging
koder aka kdanilov4643fd62015-02-10 16:20:13 -08004import os.path
kdanylov aka koder2e5fce12017-05-23 01:47:36 +03005from typing import Any, List, Optional, Callable, Iterable, cast
koder aka kdanilov652cd802015-04-13 12:21:07 +03006
koder aka kdanilova732a602017-02-01 20:29:56 +02007from concurrent.futures import ThreadPoolExecutor, wait
koder aka kdanilov4643fd62015-02-10 16:20:13 -08008
kdanylov aka koder026e5f22017-05-15 01:04:39 +03009from cephlib.node import IRPCNode
kdanylov aka koder2e5fce12017-05-23 01:47:36 +030010from cephlib.units import unit_conversion_coef_f
kdanylov aka koder026e5f22017-05-15 01:04:39 +030011
koder aka kdanilov108ac362017-01-19 20:17:16 +020012from ..utils import StopTestError, get_time_interval_printable_info
kdanylov aka koder026e5f22017-05-15 01:04:39 +030013from ..result_classes import SuiteConfig, JobConfig, TimeSeries, IWallyStorage
koder aka kdanilov70227062016-11-26 23:23:21 +020014
koder aka kdanilov4af1c1d2015-05-18 15:48:58 +030015
koder aka kdanilovbc2c8982015-06-13 02:50:43 +030016logger = logging.getLogger("wally")
koder aka kdanilov88407ff2015-05-26 15:35:57 +030017
18
koder aka kdanilov70227062016-11-26 23:23:21 +020019__doc__ = "Contains base classes for performance tests"
20
21
koder aka kdanilov7f59d562016-12-26 01:34:23 +020022class PerfTest(metaclass=abc.ABCMeta):
koder aka kdanilov70227062016-11-26 23:23:21 +020023 """Base class for all tests"""
24 name = None # type: str
25 max_retry = 3
26 retry_time = 30
koder aka kdanilovf2865172016-12-30 03:35:11 +020027 job_config_cls = None # type: type
koder aka kdanilov70227062016-11-26 23:23:21 +020028
kdanylov aka koder026e5f22017-05-15 01:04:39 +030029 def __init__(self, storage: IWallyStorage, suite: SuiteConfig, on_idle: Callable[[], None] = None) -> None:
koder aka kdanilov108ac362017-01-19 20:17:16 +020030 self.suite = suite
koder aka kdanilove2de58c2015-04-24 22:59:36 +030031 self.stop_requested = False
koder aka kdanilov108ac362017-01-19 20:17:16 +020032 self.sorted_nodes_ids = sorted(node.node_id for node in self.suite.nodes)
koder aka kdanilov7f59d562016-12-26 01:34:23 +020033 self.on_idle = on_idle
koder aka kdanilovf2865172016-12-30 03:35:11 +020034 self.storage = storage
koder aka kdanilove2de58c2015-04-24 22:59:36 +030035
koder aka kdanilov3b4da8b2016-10-17 00:17:53 +030036 def request_stop(self) -> None:
koder aka kdanilove2de58c2015-04-24 22:59:36 +030037 self.stop_requested = True
koder aka kdanilov2066daf2015-04-23 21:05:41 +030038
koder aka kdanilov3b4da8b2016-10-17 00:17:53 +030039 def join_remote(self, path: str) -> str:
koder aka kdanilov108ac362017-01-19 20:17:16 +020040 return os.path.join(self.suite.remote_dir, path)
koder aka kdanilov4500a5f2015-04-17 16:55:17 +030041
koder aka kdanilov4af1c1d2015-05-18 15:48:58 +030042 @abc.abstractmethod
koder aka kdanilovbbbe1dc2016-12-20 01:19:56 +020043 def run(self) -> None:
koder aka kdanilov4643fd62015-02-10 16:20:13 -080044 pass
45
koder aka kdanilovbc2c8982015-06-13 02:50:43 +030046 @abc.abstractmethod
koder aka kdanilov39e449e2016-12-17 15:15:26 +020047 def format_for_console(self, data: Any) -> str:
koder aka kdanilovec1b9732015-04-23 20:43:29 +030048 pass
49
koder aka kdanilov4643fd62015-02-10 16:20:13 -080050
koder aka kdanilov70227062016-11-26 23:23:21 +020051class ThreadedTest(PerfTest, metaclass=abc.ABCMeta):
52 """Base class for tests, which spawn separated thread for each node"""
53
54 # max allowed time difference between starts and stops of run of the same test on different test nodes
55 # used_max_diff = max((min_run_time * max_rel_time_diff), max_time_diff)
56 max_time_diff = 5
57 max_rel_time_diff = 0.05
koder aka kdanilovffaf48d2016-12-27 02:25:29 +020058 load_profile_name = None # type: str
koder aka kdanilov70227062016-11-26 23:23:21 +020059
koder aka kdanilov7f59d562016-12-26 01:34:23 +020060 def __init__(self, *args, **kwargs) -> None:
61 PerfTest.__init__(self, *args, **kwargs)
koder aka kdanilova732a602017-02-01 20:29:56 +020062 self.job_configs = None # type: List[JobConfig]
koder aka kdanilovbc2c8982015-06-13 02:50:43 +030063
64 @abc.abstractmethod
koder aka kdanilova732a602017-02-01 20:29:56 +020065 def get_expected_runtime(self, iter_cfg: JobConfig) -> Optional[int]:
koder aka kdanilovbc2c8982015-06-13 02:50:43 +030066 pass
67
koder aka kdanilova732a602017-02-01 20:29:56 +020068 def get_not_done_jobs(self) -> Iterable[JobConfig]:
koder aka kdanilov108ac362017-01-19 20:17:16 +020069 jobs_map = {job.storage_id: job for job in self.job_configs}
70 already_in_storage = set()
koder aka kdanilova732a602017-02-01 20:29:56 +020071 for db_config in cast(List[JobConfig], self.storage.iter_job(self.suite)):
koder aka kdanilov108ac362017-01-19 20:17:16 +020072 if db_config.storage_id in jobs_map:
73 job = jobs_map[db_config.storage_id]
74 if job != db_config:
75 logger.error("Test info at '%s.%s' is not equal to expected config for iteration %s.%s." +
koder aka kdanilovf2865172016-12-30 03:35:11 +020076 " Maybe configuration was changed before test was restarted. " +
77 "DB cfg is:\n %s\nExpected cfg is:\n %s\nFix DB or rerun test from beginning",
koder aka kdanilov108ac362017-01-19 20:17:16 +020078 self.suite.storage_id, job.storage_id, self.name, job.summary,
koder aka kdanilovf2865172016-12-30 03:35:11 +020079 str(db_config).replace("\n", "\n "),
koder aka kdanilov108ac362017-01-19 20:17:16 +020080 str(job).replace("\n", "\n "))
koder aka kdanilovf2865172016-12-30 03:35:11 +020081 raise StopTestError()
koder aka kdanilovbbbe1dc2016-12-20 01:19:56 +020082
koder aka kdanilov108ac362017-01-19 20:17:16 +020083 logger.info("Test iteration %s.%s found in storage and will be skipped", self.name, job.summary)
84 already_in_storage.add(db_config.storage_id)
85
86 return [job for job in self.job_configs if job.storage_id not in already_in_storage]
koder aka kdanilov70227062016-11-26 23:23:21 +020087
koder aka kdanilovbbbe1dc2016-12-20 01:19:56 +020088 def run(self) -> None:
koder aka kdanilov108ac362017-01-19 20:17:16 +020089 self.storage.put_or_check_suite(self.suite)
koder aka kdanilovf2865172016-12-30 03:35:11 +020090
koder aka kdanilov108ac362017-01-19 20:17:16 +020091 not_in_storage = list(self.get_not_done_jobs())
koder aka kdanilov70227062016-11-26 23:23:21 +020092 if not not_in_storage:
93 logger.info("All test iteration in storage already. Skip test")
94 return
95
koder aka kdanilovf2865172016-12-30 03:35:11 +020096 logger.debug("Run test %s with profile %r on nodes %s.", self.name,
97 self.load_profile_name,
98 ",".join(self.sorted_nodes_ids))
koder aka kdanilov23e6bdf2016-12-24 02:18:54 +020099 logger.debug("Prepare nodes")
koder aka kdanilov70227062016-11-26 23:23:21 +0200100
koder aka kdanilov70227062016-11-26 23:23:21 +0200101
koder aka kdanilov108ac362017-01-19 20:17:16 +0200102 with ThreadPoolExecutor(len(self.suite.nodes)) as pool:
koder aka kdanilovf2865172016-12-30 03:35:11 +0200103 # config nodes
koder aka kdanilov108ac362017-01-19 20:17:16 +0200104 list(pool.map(self.config_node, self.suite.nodes))
koder aka kdanilovf2865172016-12-30 03:35:11 +0200105
koder aka kdanilov108ac362017-01-19 20:17:16 +0200106 run_times = list(map(self.get_expected_runtime, not_in_storage))
koder aka kdanilovf2865172016-12-30 03:35:11 +0200107
koder aka kdanilov70227062016-11-26 23:23:21 +0200108 if None not in run_times:
kdanylov aka koder84de1e42017-05-22 14:00:07 +0300109 # +10s - is a rough estimation for additional operations per iteration
110 expected_run_time = int(sum(run_times) + 10 * len(not_in_storage))
koder aka kdanilov70227062016-11-26 23:23:21 +0200111
koder aka kdanilovf2865172016-12-30 03:35:11 +0200112 exec_time_s, end_dt_s = get_time_interval_printable_info(expected_run_time)
kdanylov aka koder736e5c12017-05-07 17:27:14 +0300113 logger.info("Entire test should takes around %s and finish at %s", exec_time_s, end_dt_s)
koder aka kdanilov70227062016-11-26 23:23:21 +0200114
koder aka kdanilov108ac362017-01-19 20:17:16 +0200115 for job in not_in_storage:
116 results = [] # type: List[TimeSeries]
117 for retry_idx in range(self.max_retry):
kdanylov aka koder3a9e5db2017-05-09 20:00:44 +0300118 logger.info("Preparing job %s", job.params.summary)
koder aka kdanilov70227062016-11-26 23:23:21 +0200119
koder aka kdanilov23e6bdf2016-12-24 02:18:54 +0200120 # prepare nodes for new iterations
koder aka kdanilov108ac362017-01-19 20:17:16 +0200121 wait([pool.submit(self.prepare_iteration, node, job) for node in self.suite.nodes])
koder aka kdanilov23e6bdf2016-12-24 02:18:54 +0200122
koder aka kdanilov108ac362017-01-19 20:17:16 +0200123 expected_job_time = self.get_expected_runtime(job)
koder aka kdanilovf2865172016-12-30 03:35:11 +0200124 exec_time_s, end_dt_s = get_time_interval_printable_info(expected_job_time)
kdanylov aka koder736e5c12017-05-07 17:27:14 +0300125 logger.info("Job should takes around %s and finish at %s", exec_time_s, end_dt_s)
koder aka kdanilovf2865172016-12-30 03:35:11 +0200126
koder aka kdanilov108ac362017-01-19 20:17:16 +0200127 jfutures = [pool.submit(self.run_iteration, node, job) for node in self.suite.nodes]
128 failed = False
129 for future in jfutures:
130 try:
131 results.extend(future.result())
132 except EnvironmentError:
133 failed = True
koder aka kdanilov70227062016-11-26 23:23:21 +0200134
koder aka kdanilov108ac362017-01-19 20:17:16 +0200135 if not failed:
136 break
137
138 if self.max_retry - 1 == retry_idx:
139 logger.exception("Fio failed")
140 raise StopTestError()
141
142 logger.exception("During fio run")
143 logger.info("Sleeping %ss and retrying job", self.retry_time)
144 time.sleep(self.retry_time)
145 results = []
146
147 # per node jobs start and stop times
koder aka kdanilov70227062016-11-26 23:23:21 +0200148 start_times = [] # type: List[int]
149 stop_times = [] # type: List[int]
150
koder aka kdanilov108ac362017-01-19 20:17:16 +0200151 for ts in results:
152 self.storage.put_ts(ts)
153 if len(ts.times) >= 2: # type: ignore
154 start_times.append(ts.times[0])
155 stop_times.append(ts.times[-1])
koder aka kdanilov70227062016-11-26 23:23:21 +0200156
koder aka kdanilovf2865172016-12-30 03:35:11 +0200157 if len(start_times) > 0:
158 min_start_time = min(start_times)
159 max_start_time = max(start_times)
160 min_stop_time = min(stop_times)
koder aka kdanilov70227062016-11-26 23:23:21 +0200161
koder aka kdanilovf2865172016-12-30 03:35:11 +0200162 max_allowed_time_diff = int((min_stop_time - max_start_time) * self.max_rel_time_diff)
163 max_allowed_time_diff = max(max_allowed_time_diff, self.max_time_diff)
koder aka kdanilov70227062016-11-26 23:23:21 +0200164
koder aka kdanilovf2865172016-12-30 03:35:11 +0200165 if min_start_time + self.max_time_diff < max_allowed_time_diff:
166 logger.warning("Too large difference in %s:%s start time - %s. " +
167 "Max recommended difference is %s",
koder aka kdanilov108ac362017-01-19 20:17:16 +0200168 self.name, job.summary,
koder aka kdanilovf2865172016-12-30 03:35:11 +0200169 max_start_time - min_start_time, self.max_time_diff)
koder aka kdanilov70227062016-11-26 23:23:21 +0200170
koder aka kdanilovf2865172016-12-30 03:35:11 +0200171 if min_stop_time + self.max_time_diff < max_allowed_time_diff:
172 logger.warning("Too large difference in %s:%s stop time - %s. " +
173 "Max recommended difference is %s",
koder aka kdanilov108ac362017-01-19 20:17:16 +0200174 self.name, job.summary,
koder aka kdanilovf2865172016-12-30 03:35:11 +0200175 max_start_time - min_start_time, self.max_time_diff)
koder aka kdanilov70227062016-11-26 23:23:21 +0200176
kdanylov aka koder2e5fce12017-05-23 01:47:36 +0300177 one_s = int(unit_conversion_coef_f('s', results[0].time_units))
178 job.reliable_info_range = (int(max_start_time) + one_s, int(min_stop_time) - one_s)
koder aka kdanilov108ac362017-01-19 20:17:16 +0200179
180 self.storage.put_job(self.suite, job)
koder aka kdanilovf2865172016-12-30 03:35:11 +0200181 self.storage.sync()
koder aka kdanilov7f59d562016-12-26 01:34:23 +0200182
183 if self.on_idle is not None:
184 self.on_idle()
185
koder aka kdanilov70227062016-11-26 23:23:21 +0200186 @abc.abstractmethod
187 def config_node(self, node: IRPCNode) -> None:
188 pass
189
190 @abc.abstractmethod
koder aka kdanilova732a602017-02-01 20:29:56 +0200191 def prepare_iteration(self, node: IRPCNode, job: JobConfig) -> None:
koder aka kdanilov23e6bdf2016-12-24 02:18:54 +0200192 pass
193
194 @abc.abstractmethod
koder aka kdanilova732a602017-02-01 20:29:56 +0200195 def run_iteration(self, node: IRPCNode, job: JobConfig) -> List[TimeSeries]:
koder aka kdanilovbc2c8982015-06-13 02:50:43 +0300196 pass
197
198
koder aka kdanilov70227062016-11-26 23:23:21 +0200199class TwoScriptTest(ThreadedTest, metaclass=abc.ABCMeta):
200 def __init__(self, *dt, **mp) -> None:
koder aka kdanilovbc2c8982015-06-13 02:50:43 +0300201 ThreadedTest.__init__(self, *dt, **mp)
koder aka kdanilov108ac362017-01-19 20:17:16 +0200202 self.prerun_script = self.suite.params['prerun_script']
203 self.run_script = self.suite.params['run_script']
204 self.prerun_tout = self.suite.params.get('prerun_tout', 3600)
205 self.run_tout = self.suite.params.get('run_tout', 3600)
206 # TODO: fix job_configs field
207 raise NotImplementedError("Fix job configs")
Yulia Portnova7ddfa732015-02-24 17:32:58 +0200208
koder aka kdanilova732a602017-02-01 20:29:56 +0200209 def get_expected_runtime(self, job: JobConfig) -> Optional[int]:
koder aka kdanilov70227062016-11-26 23:23:21 +0200210 return None
Yulia Portnova7ddfa732015-02-24 17:32:58 +0200211
koder aka kdanilov70227062016-11-26 23:23:21 +0200212 def config_node(self, node: IRPCNode) -> None:
213 node.copy_file(self.run_script, self.join_remote(self.run_script))
214 node.copy_file(self.prerun_script, self.join_remote(self.prerun_script))
koder aka kdanilovbc2c8982015-06-13 02:50:43 +0300215
koder aka kdanilov70227062016-11-26 23:23:21 +0200216 cmd = self.join_remote(self.prerun_script)
koder aka kdanilov108ac362017-01-19 20:17:16 +0200217 cmd += ' ' + self.suite.params.get('prerun_opts', '')
koder aka kdanilov3b4da8b2016-10-17 00:17:53 +0300218 node.run(cmd, timeout=self.prerun_tout)
Yulia Portnova7ddfa732015-02-24 17:32:58 +0200219
koder aka kdanilova732a602017-02-01 20:29:56 +0200220 def prepare_iteration(self, node: IRPCNode, job: JobConfig) -> None:
koder aka kdanilov23e6bdf2016-12-24 02:18:54 +0200221 pass
222
koder aka kdanilova732a602017-02-01 20:29:56 +0200223 def run_iteration(self, node: IRPCNode, job: JobConfig) -> List[TimeSeries]:
koder aka kdanilov23e6bdf2016-12-24 02:18:54 +0200224 # TODO: have to store logs
koder aka kdanilov70227062016-11-26 23:23:21 +0200225 cmd = self.join_remote(self.run_script)
koder aka kdanilov108ac362017-01-19 20:17:16 +0200226 cmd += ' ' + self.suite.params.get('run_opts', '')
koder aka kdanilov23e6bdf2016-12-24 02:18:54 +0200227 return self.parse_results(node.run(cmd, timeout=self.run_tout))
koder aka kdanilov70227062016-11-26 23:23:21 +0200228
229 @abc.abstractmethod
koder aka kdanilov108ac362017-01-19 20:17:16 +0200230 def parse_results(self, data: str) -> List[TimeSeries]:
koder aka kdanilov70227062016-11-26 23:23:21 +0200231 pass
232