# # Copyright (C) 2022-present ScyllaDB # # SPDX-License-Identifier: AGPL-3.0-or-later # """Manager client. Communicates with Manager server via socket. Provides helper methods to test cases. Manages driver refresh when cluster is cycled. """ from concurrent.futures import ThreadPoolExecutor from typing import List, Optional, Callable, Any from time import time import logging from test.pylib.log_browsing import ScyllaLogFile from test.pylib.rest_client import UnixRESTClient, ScyllaRESTAPIClient, ScyllaMetricsClient from test.pylib.util import wait_for from test.pylib.internal_types import ServerNum, IPAddress, HostID, ServerInfo from test.pylib.scylla_cluster import ReplaceConfig, ScyllaServer from cassandra.cluster import Session as CassandraSession # type: ignore # pylint: disable=no-name-in-module from cassandra.cluster import Cluster as CassandraCluster # type: ignore # pylint: disable=no-name-in-module import aiohttp import asyncio logger = logging.getLogger(__name__) class ManagerClient(): """Helper Manager API client Args: sock_path (str): path to an AF_UNIX socket where Manager server is listening con_gen (Callable): generator function for CQL driver connection to a cluster """ # pylint: disable=too-many-public-methods def __init__(self, sock_path: str, port: int, use_ssl: bool, auth_provider: Any|None, con_gen: Callable[[List[IPAddress], int, bool, Any], CassandraSession]) \ -> None: self.port = port self.use_ssl = use_ssl self.auth_provider = auth_provider self.con_gen = con_gen self.ccluster: Optional[CassandraCluster] = None self.cql: Optional[CassandraSession] = None # A client for communicating with ScyllaClusterManager (server) self.client = UnixRESTClient(sock_path) self.api = ScyllaRESTAPIClient() self.metrics = ScyllaMetricsClient() self.thread_pool = ThreadPoolExecutor() async def stop(self): """Close driver""" self.driver_close() async def driver_connect(self, server: Optional[ServerInfo] = None) -> None: """Connect to cluster""" targets = [server] if server else await self.running_servers() servers = [s_info.ip_addr for s_info in targets] logger.debug("driver connecting to %s", servers) self.ccluster = self.con_gen(servers, self.port, self.use_ssl, self.auth_provider) self.cql = self.ccluster.connect() def driver_close(self) -> None: """Disconnect from cluster""" if self.ccluster is not None: logger.debug("shutting down driver") self.ccluster.shutdown() self.ccluster = None self.cql = None def get_cql(self) -> CassandraSession: """Precondition: driver is connected""" assert self.cql return self.cql # Make driver update endpoints from remote connection def _driver_update(self) -> None: if self.ccluster is not None: logger.debug("refresh driver node list") self.ccluster.control_connection.refresh_node_list_and_token_map() async def before_test(self, test_case_name: str) -> None: """Before a test starts check if cluster needs cycling and update driver connection""" logger.debug("before_test for %s", test_case_name) dirty = await self.is_dirty() if dirty: self.driver_close() # Close driver connection to old cluster try: cluster_str = await self.client.put_json(f"/cluster/before-test/{test_case_name}", timeout=600, response_type = "json") logger.info(f"Using cluster: {cluster_str} for test {test_case_name}") except aiohttp.ClientError as exc: raise RuntimeError(f"Failed before test check {exc}") from exc servers = await self.running_servers() if self.cql is None and servers: # TODO: if cluster is not up yet due to taking long and HTTP timeout, wait for it # await self._wait_for_cluster() await self.driver_connect() # Connect driver to new cluster async def after_test(self, test_case_name: str, success: bool) -> None: """Tell harness this test finished""" logger.debug("after_test for %s (success: %s)", test_case_name, success) cluster_str = await self.client.put_json(f"/cluster/after-test/{success}", response_type = "json") logger.info("Cluster after test %s: %s", test_case_name, cluster_str) async def is_manager_up(self) -> bool: """Check if Manager server is up""" return await self.client.get_json("/up") async def is_cluster_up(self) -> bool: """Check if cluster is up""" return await self.client.get_json("/cluster/up") async def is_dirty(self) -> bool: """Check if current cluster dirty.""" return await self.client.get_json("/cluster/is-dirty") async def replicas(self) -> int: """Get number of configured replicas for the cluster (replication factor)""" return await self.client.get_json("/cluster/replicas") async def running_servers(self) -> List[ServerInfo]: """Get List of server info (id and IP address) of running servers""" try: server_info_list = await self.client.get_json("/cluster/running-servers") except RuntimeError as exc: raise Exception("Failed to get list of running servers") from exc assert isinstance(server_info_list, list), "running_servers got unknown data type" return [ServerInfo(ServerNum(int(info[0])), IPAddress(info[1])) for info in server_info_list] async def mark_dirty(self) -> None: """Manually mark current cluster dirty. To be used when a server was modified outside of this API.""" await self.client.put_json("/cluster/mark-dirty") async def server_stop(self, server_id: ServerNum) -> None: """Stop specified server""" logger.debug("ManagerClient stopping %s", server_id) await self.client.put_json(f"/cluster/server/{server_id}/stop") async def server_stop_gracefully(self, server_id: ServerNum) -> None: """Stop specified server gracefully""" logger.debug("ManagerClient stopping gracefully %s", server_id) await self.client.put_json(f"/cluster/server/{server_id}/stop_gracefully") async def server_start(self, server_id: ServerNum, expected_error: Optional[str] = None, wait_others: int = 0, wait_interval: float = 45) -> None: """Start specified server and optionally wait for it to learn of other servers""" logger.debug("ManagerClient starting %s", server_id) data = {"expected_error": expected_error} await self.client.put_json(f"/cluster/server/{server_id}/start", data) await self.server_sees_others(server_id, wait_others, interval = wait_interval) self._driver_update() async def server_restart(self, server_id: ServerNum, wait_others: int = 0, wait_interval: float = 45) -> None: """Restart specified server and optionally wait for it to learn of other servers""" logger.debug("ManagerClient restarting %s", server_id) await self.client.put_json(f"/cluster/server/{server_id}/restart") await self.server_sees_others(server_id, wait_others, interval = wait_interval) self._driver_update() async def server_pause(self, server_id: ServerNum) -> None: """Pause the specified server.""" logger.debug("ManagerClient pausing %s", server_id) await self.client.put_json(f"/cluster/server/{server_id}/pause") async def server_unpause(self, server_id: ServerNum) -> None: """Unpause the specified server.""" logger.debug("ManagerClient unpausing %s", server_id) await self.client.put_json(f"/cluster/server/{server_id}/unpause") def _create_server_add_data(self, replace_cfg: Optional[ReplaceConfig] = None, cmdline: Optional[List[str]] = None, config: Optional[dict[str, Any]] = None, property_file: Optional[dict[str, Any]] = None, start: bool = True, expected_error: Optional[str] = None) -> dict[str, Any]: data: dict[str, Any] = {'start': start} if replace_cfg: data['replace_cfg'] = replace_cfg._asdict() if cmdline: data['cmdline'] = cmdline if config: data['config'] = config if property_file: data['property_file'] = property_file if expected_error: data['expected_error'] = expected_error return data async def server_add(self, replace_cfg: Optional[ReplaceConfig] = None, cmdline: Optional[List[str]] = None, config: Optional[dict[str, Any]] = None, property_file: Optional[dict[str, Any]] = None, start: bool = True, expected_error: Optional[str] = None) -> ServerInfo: """Add a new server""" try: data = self._create_server_add_data(replace_cfg, cmdline, config, property_file, start, expected_error) # If we replace, we should wait until other nodes see the node being # replaced as dead because the replace operation can be rejected if # the node being replaced is considered alive. However, we sometimes # do not want to wait, for example, when we test that replace fails # as expected. Therefore, we make waiting optional and default. if replace_cfg and replace_cfg.wait_replaced_dead: replaced_ip = await self.get_host_ip(replace_cfg.replaced_id) await self.others_not_see_server(replaced_ip) server_info = await self.client.put_json("/cluster/addserver", data, response_type="json", timeout=ScyllaServer.TOPOLOGY_TIMEOUT) except Exception as exc: raise Exception("Failed to add server") from exc try: s_info = ServerInfo(ServerNum(int(server_info["server_id"])), IPAddress(server_info["ip_addr"])) except Exception as exc: raise RuntimeError(f"server_add got invalid server data {server_info}") from exc logger.debug("ManagerClient added %s", s_info) if self.cql: self._driver_update() else: await self.driver_connect() return s_info async def servers_add(self, servers_num: int = 1, cmdline: Optional[List[str]] = None, config: Optional[dict[str, Any]] = None, property_file: Optional[dict[str, Any]] = None, start: bool = True, expected_error: Optional[str] = None) -> [ServerInfo]: """Add new servers concurrently""" assert servers_num > 0, f"servers_add: cannot add {servers_num} servers, servers_num must be positive" try: data = self._create_server_add_data(None, cmdline, config, property_file, start, expected_error) data['servers_num'] = servers_num server_infos = await self.client.put_json("/cluster/addservers", data, response_type="json", timeout=ScyllaServer.TOPOLOGY_TIMEOUT * servers_num) except Exception as exc: raise Exception("Failed to add servers") from exc assert len(server_infos) == servers_num, f"servers_add requested adding {servers_num} servers but " \ f"got server data about {len(server_infos)} servers: {server_infos}" s_infos = list[ServerInfo]() for server_info in server_infos: try: s_info = ServerInfo(ServerNum(int(server_info["server_id"])), IPAddress(server_info["ip_addr"])) s_infos.append(s_info) except Exception as exc: raise RuntimeError(f"servers_add got invalid server data {server_info}") from exc logger.debug("ManagerClient added %s", s_infos) if self.cql: self._driver_update() else: await self.driver_connect() return s_infos async def remove_node(self, initiator_id: ServerNum, server_id: ServerNum, ignore_dead: List[IPAddress] | List[HostID] = list[IPAddress](), expected_error: str | None = None) -> None: """Invoke remove node Scylla REST API for a specified server""" logger.debug("ManagerClient remove node %s on initiator %s", server_id, initiator_id) data = {"server_id": server_id, "ignore_dead": ignore_dead, "expected_error": expected_error} await self.client.put_json(f"/cluster/remove-node/{initiator_id}", data, timeout=ScyllaServer.TOPOLOGY_TIMEOUT) self._driver_update() async def decommission_node(self, server_id: ServerNum, expected_error: str | None = None) -> None: """Tell a node to decommission with Scylla REST API""" logger.debug("ManagerClient decommission %s", server_id) data = {"expected_error": expected_error} await self.client.put_json(f"/cluster/decommission-node/{server_id}", data, timeout=ScyllaServer.TOPOLOGY_TIMEOUT) self._driver_update() async def rebuild_node(self, server_id: ServerNum) -> None: """Tell a node to rebuild with Scylla REST API""" logger.debug("ManagerClient rebuild %s", server_id) await self.client.put_json(f"/cluster/rebuild-node/{server_id}", timeout=ScyllaServer.TOPOLOGY_TIMEOUT) self._driver_update() async def server_get_config(self, server_id: ServerNum) -> dict[str, object]: data = await self.client.get_json(f"/cluster/server/{server_id}/get_config") assert isinstance(data, dict), f"server_get_config: got {type(data)} expected dict" return data async def server_update_config(self, server_id: ServerNum, key: str, value: object) -> None: await self.client.put_json(f"/cluster/server/{server_id}/update_config", {"key": key, "value": value}) async def server_change_ip(self, server_id: ServerNum) -> IPAddress: """Change server IP address. Applicable only to a stopped server""" ret = await self.client.put_json(f"/cluster/server/{server_id}/change_ip", {}, response_type="json") return IPAddress(ret["ip_addr"]) async def wait_for_host_known(self, dst_server_ip: IPAddress, expect_host_id: HostID, deadline: Optional[float] = None) -> None: """Waits until dst_server_id knows about expect_host_id, with timeout""" async def host_is_known(): host_id_map = await self.api.get_host_id_map(dst_server_ip) return True if any(entry for entry in host_id_map if entry['value'] == expect_host_id) else None return await wait_for(host_is_known, deadline or (time() + 30)) async def wait_for_host_down(self, dst_server_ip: IPAddress, server_ip: IPAddress, deadline: Optional[float] = None) -> None: """Waits for dst_server_id to consider server_id as down, with timeout""" async def host_is_down(): down_endpoints = await self.api.get_down_endpoints(dst_server_ip) return True if server_ip in down_endpoints else None return await wait_for(host_is_down, deadline or (time() + 30)) async def get_host_ip(self, server_id: ServerNum) -> IPAddress: """Get host IP Address""" try: server_ip = await self.client.get_json(f"/cluster/host-ip/{server_id}") except Exception as exc: raise Exception(f"Failed to get host IP address for server {server_id}") from exc return IPAddress(server_ip) async def get_host_id(self, server_id: ServerNum) -> HostID: """Get local host id of a server""" try: host_id = await self.client.get_json(f"/cluster/host-id/{server_id}") except Exception as exc: raise Exception(f"Failed to get local host id address for server {server_id}") from exc return HostID(host_id) async def get_table_id(self, keyspace: str, table: str): rows = await self.cql.run_async(f"select id from system_schema.tables where keyspace_name = '{keyspace}' and table_name = '{table}'") return rows[0].id async def server_sees_others(self, server_id: ServerNum, count: int, interval: float = 45.): """Wait till a server sees a minimum given count of other servers""" if count < 1: return server_ip = await self.get_host_ip(server_id) async def _sees_min_others(): alive_nodes = await self.api.get_alive_endpoints(server_ip) if len(alive_nodes) > count: return True await wait_for(_sees_min_others, time() + interval, period=.5) async def server_sees_other_server(self, server_ip: IPAddress, other_ip: IPAddress, interval: float = 45.): """Wait till a server sees another specific server IP as alive""" async def _sees_another_server(): alive_nodes = await self.api.get_alive_endpoints(server_ip) if other_ip in alive_nodes: return True await wait_for(_sees_another_server, time() + interval, period=.5) async def server_not_sees_other_server(self, server_ip: IPAddress, other_ip: IPAddress, interval: float = 45.): """Wait till a server sees another specific server IP as dead""" async def _not_sees_another_server(): alive_nodes = await self.api.get_alive_endpoints(server_ip) if not other_ip in alive_nodes: return True await wait_for(_not_sees_another_server, time() + interval, period=.5) async def others_not_see_server(self, server_ip: IPAddress, interval: float = 45.): """Wait till a server is seen as dead by all other running servers in the cluster""" others_ips = [srv.ip_addr for srv in await self.running_servers() if srv.ip_addr != server_ip] await asyncio.gather(*(self.server_not_sees_other_server(ip, server_ip, interval) for ip in others_ips)) async def server_open_log(self, server_id: ServerNum) -> ScyllaLogFile: logger.debug("ManagerClient getting log filename for %s", server_id) log_filename = await self.client.get_json(f"/cluster/server/{server_id}/get_log_filename") return ScyllaLogFile(self.thread_pool, log_filename) async def server_get_workdir(self, server_id: ServerNum) -> str: return await self.client.get_json(f"/cluster/server/{server_id}/workdir") async def server_get_exe(self, server_id: ServerNum) -> str: return await self.client.get_json(f"/cluster/server/{server_id}/exe")