2021-11-01 10:27:46 +00:00
|
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
|
|
import csv
|
|
|
|
|
import logging
|
2023-12-18 08:07:22 +00:00
|
|
|
|
import os
|
2021-11-01 10:27:46 +00:00
|
|
|
|
import subprocess
|
|
|
|
|
import sys
|
2023-01-03 14:23:19 +00:00
|
|
|
|
from pathlib import Path
|
2022-11-16 09:24:10 +00:00
|
|
|
|
from typing import List, Tuple
|
2021-11-01 10:27:46 +00:00
|
|
|
|
|
2021-11-12 11:07:54 +00:00
|
|
|
|
from build_download_helper import download_all_deb_packages
|
2024-01-04 15:35:09 +00:00
|
|
|
|
from clickhouse_helper import CiLogsCredentials
|
2024-02-06 12:39:34 +00:00
|
|
|
|
from docker_images_helper import DockerImage, get_docker_image, pull_image
|
|
|
|
|
from env_helper import REPO_COPY, REPORT_PATH, TEMP_PATH
|
2023-01-03 14:23:19 +00:00
|
|
|
|
from pr_info import PRInfo
|
2024-02-06 12:39:34 +00:00
|
|
|
|
from report import ERROR, JobReport, TestResult, TestResults, read_test_results
|
2023-01-03 14:23:19 +00:00
|
|
|
|
from stopwatch import Stopwatch
|
2021-12-03 08:33:16 +00:00
|
|
|
|
from tee_popen import TeePopen
|
2021-11-19 14:47:04 +00:00
|
|
|
|
|
2021-11-01 10:27:46 +00:00
|
|
|
|
|
2024-04-11 15:15:47 +00:00
|
|
|
|
def get_additional_envs(check_name: str) -> List[str]:
|
2023-10-18 07:59:49 +00:00
|
|
|
|
result = []
|
2024-04-24 15:32:18 +00:00
|
|
|
|
azure_connection_string = get_parameter_from_ssm("azure_connection_string")
|
|
|
|
|
result.append(f"AZURE_CONNECTION_STRING='{azure_connection_string}'")
|
2023-10-18 08:22:18 +00:00
|
|
|
|
# some cloud-specific features require feature flags enabled
|
|
|
|
|
# so we need this ENV to be able to disable the randomization
|
|
|
|
|
# of feature flags
|
2023-10-18 09:19:09 +00:00
|
|
|
|
result.append("RANDOMIZE_KEEPER_FEATURE_FLAGS=1")
|
2024-04-11 14:50:18 +00:00
|
|
|
|
if "azure" in check_name:
|
|
|
|
|
result.append("USE_AZURE_STORAGE_FOR_MERGE_TREE=1")
|
2023-10-18 07:59:49 +00:00
|
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
2022-03-07 13:25:06 +00:00
|
|
|
|
def get_run_command(
|
2023-09-22 11:16:46 +00:00
|
|
|
|
build_path: Path,
|
|
|
|
|
result_path: Path,
|
|
|
|
|
repo_tests_path: Path,
|
|
|
|
|
server_log_path: Path,
|
2023-10-18 07:59:49 +00:00
|
|
|
|
additional_envs: List[str],
|
2023-08-16 20:53:51 +00:00
|
|
|
|
ci_logs_args: str,
|
|
|
|
|
image: DockerImage,
|
|
|
|
|
) -> str:
|
2023-10-18 07:59:49 +00:00
|
|
|
|
envs = [f"-e {e}" for e in additional_envs]
|
|
|
|
|
env_str = " ".join(envs)
|
|
|
|
|
|
2022-03-07 13:25:06 +00:00
|
|
|
|
cmd = (
|
|
|
|
|
"docker run --cap-add=SYS_PTRACE "
|
2022-08-29 18:36:13 +00:00
|
|
|
|
# For dmesg and sysctl
|
2022-08-18 15:36:04 +00:00
|
|
|
|
"--privileged "
|
2023-08-16 20:53:51 +00:00
|
|
|
|
# a static link, don't use S3_URL or S3_DOWNLOAD
|
|
|
|
|
"-e S3_URL='https://s3.amazonaws.com/clickhouse-datasets' "
|
|
|
|
|
f"{ci_logs_args}"
|
2022-03-07 13:25:06 +00:00
|
|
|
|
f"--volume={build_path}:/package_folder "
|
2023-08-16 20:53:51 +00:00
|
|
|
|
f"--volume={result_path}:/test_output "
|
2022-03-07 13:25:06 +00:00
|
|
|
|
f"--volume={repo_tests_path}:/usr/share/clickhouse-test "
|
2023-10-18 07:59:49 +00:00
|
|
|
|
f"--volume={server_log_path}:/var/log/clickhouse-server {env_str} {image} "
|
2022-03-07 13:25:06 +00:00
|
|
|
|
)
|
2021-11-01 10:27:46 +00:00
|
|
|
|
|
|
|
|
|
return cmd
|
|
|
|
|
|
2022-03-07 13:25:06 +00:00
|
|
|
|
|
2022-11-16 09:24:10 +00:00
|
|
|
|
def process_results(
|
2023-09-22 11:16:46 +00:00
|
|
|
|
result_directory: Path, server_log_path: Path, run_log_path: Path
|
|
|
|
|
) -> Tuple[str, str, TestResults, List[Path]]:
|
2023-01-03 14:23:19 +00:00
|
|
|
|
test_results = [] # type: TestResults
|
2021-11-01 10:27:46 +00:00
|
|
|
|
additional_files = []
|
|
|
|
|
# Just upload all files from result_folder.
|
2022-03-07 13:25:06 +00:00
|
|
|
|
# If task provides processed results, then it's responsible for content
|
|
|
|
|
# of result_folder.
|
2023-09-22 11:16:46 +00:00
|
|
|
|
if result_directory.exists():
|
|
|
|
|
additional_files = [p for p in result_directory.iterdir() if p.is_file()]
|
2021-11-01 10:27:46 +00:00
|
|
|
|
|
2023-09-22 11:16:46 +00:00
|
|
|
|
if server_log_path.exists():
|
2022-03-07 13:25:06 +00:00
|
|
|
|
additional_files = additional_files + [
|
2023-09-22 11:16:46 +00:00
|
|
|
|
p for p in server_log_path.iterdir() if p.is_file()
|
2022-03-07 13:25:06 +00:00
|
|
|
|
]
|
2021-11-01 10:27:46 +00:00
|
|
|
|
|
2021-11-01 13:27:55 +00:00
|
|
|
|
additional_files.append(run_log_path)
|
|
|
|
|
|
2023-09-22 11:16:46 +00:00
|
|
|
|
status_path = result_directory / "check_status.tsv"
|
|
|
|
|
if not status_path.exists():
|
2022-03-07 13:25:06 +00:00
|
|
|
|
return (
|
|
|
|
|
"failure",
|
|
|
|
|
"check_status.tsv doesn't exists",
|
|
|
|
|
test_results,
|
|
|
|
|
additional_files,
|
|
|
|
|
)
|
2021-11-01 10:27:46 +00:00
|
|
|
|
|
|
|
|
|
logging.info("Found check_status.tsv")
|
2022-03-07 13:25:06 +00:00
|
|
|
|
with open(status_path, "r", encoding="utf-8") as status_file:
|
|
|
|
|
status = list(csv.reader(status_file, delimiter="\t"))
|
2021-11-01 10:27:46 +00:00
|
|
|
|
|
|
|
|
|
if len(status) != 1 or len(status[0]) != 2:
|
2024-02-06 12:39:34 +00:00
|
|
|
|
return ERROR, "Invalid check_status.tsv", test_results, additional_files
|
2021-11-01 10:27:46 +00:00
|
|
|
|
state, description = status[0][0], status[0][1]
|
|
|
|
|
|
2022-12-14 14:05:22 +00:00
|
|
|
|
try:
|
2023-09-22 11:16:46 +00:00
|
|
|
|
results_path = result_directory / "test_results.tsv"
|
2023-02-01 00:00:00 +00:00
|
|
|
|
test_results = read_test_results(results_path, True)
|
2022-12-14 14:05:22 +00:00
|
|
|
|
if len(test_results) == 0:
|
2024-02-26 17:46:15 +00:00
|
|
|
|
raise ValueError("Empty results")
|
2022-12-14 14:05:22 +00:00
|
|
|
|
except Exception as e:
|
|
|
|
|
return (
|
2024-02-06 12:39:34 +00:00
|
|
|
|
ERROR,
|
2022-12-14 14:05:22 +00:00
|
|
|
|
f"Cannot parse test_results.tsv ({e})",
|
|
|
|
|
test_results,
|
|
|
|
|
additional_files,
|
|
|
|
|
)
|
2021-11-01 10:27:46 +00:00
|
|
|
|
|
|
|
|
|
return state, description, test_results, additional_files
|
|
|
|
|
|
|
|
|
|
|
2023-09-22 11:16:46 +00:00
|
|
|
|
def run_stress_test(docker_image_name: str) -> None:
|
2021-11-01 10:27:46 +00:00
|
|
|
|
logging.basicConfig(level=logging.INFO)
|
2021-11-19 14:47:04 +00:00
|
|
|
|
|
|
|
|
|
stopwatch = Stopwatch()
|
2023-09-22 11:16:46 +00:00
|
|
|
|
temp_path = Path(TEMP_PATH)
|
2023-12-18 08:07:22 +00:00
|
|
|
|
reports_path = Path(REPORT_PATH)
|
2023-09-22 11:16:46 +00:00
|
|
|
|
temp_path.mkdir(parents=True, exist_ok=True)
|
|
|
|
|
repo_path = Path(REPO_COPY)
|
|
|
|
|
repo_tests_path = repo_path / "tests"
|
2021-11-01 10:27:46 +00:00
|
|
|
|
|
2023-12-18 08:07:22 +00:00
|
|
|
|
check_name = sys.argv[1] if len(sys.argv) > 1 else os.getenv("CHECK_NAME")
|
|
|
|
|
assert (
|
|
|
|
|
check_name
|
|
|
|
|
), "Check name must be provided as an input arg or in CHECK_NAME env"
|
2021-11-01 10:27:46 +00:00
|
|
|
|
|
2021-11-26 14:00:09 +00:00
|
|
|
|
pr_info = PRInfo()
|
2021-11-01 10:27:46 +00:00
|
|
|
|
|
2023-12-18 08:07:22 +00:00
|
|
|
|
docker_image = pull_image(get_docker_image(docker_image_name))
|
2021-11-01 10:27:46 +00:00
|
|
|
|
|
2023-09-22 11:16:46 +00:00
|
|
|
|
packages_path = temp_path / "packages"
|
|
|
|
|
packages_path.mkdir(parents=True, exist_ok=True)
|
2021-11-01 10:27:46 +00:00
|
|
|
|
|
2021-11-12 11:07:54 +00:00
|
|
|
|
download_all_deb_packages(check_name, reports_path, packages_path)
|
|
|
|
|
|
2023-09-22 11:16:46 +00:00
|
|
|
|
server_log_path = temp_path / "server_log"
|
|
|
|
|
server_log_path.mkdir(parents=True, exist_ok=True)
|
2021-11-01 10:27:46 +00:00
|
|
|
|
|
2023-09-22 11:16:46 +00:00
|
|
|
|
result_path = temp_path / "result_path"
|
|
|
|
|
result_path.mkdir(parents=True, exist_ok=True)
|
2021-11-01 10:27:46 +00:00
|
|
|
|
|
2023-09-22 11:16:46 +00:00
|
|
|
|
run_log_path = temp_path / "run.log"
|
|
|
|
|
ci_logs_credentials = CiLogsCredentials(temp_path / "export-logs-config.sh")
|
2023-08-16 20:53:51 +00:00
|
|
|
|
ci_logs_args = ci_logs_credentials.get_docker_arguments(
|
|
|
|
|
pr_info, stopwatch.start_time_str, check_name
|
|
|
|
|
)
|
2021-11-01 10:27:46 +00:00
|
|
|
|
|
2024-04-11 14:50:18 +00:00
|
|
|
|
additional_envs = get_additional_envs(check_name)
|
2023-10-18 07:59:49 +00:00
|
|
|
|
|
2022-03-07 13:25:06 +00:00
|
|
|
|
run_command = get_run_command(
|
2023-08-12 20:30:18 +00:00
|
|
|
|
packages_path,
|
|
|
|
|
result_path,
|
|
|
|
|
repo_tests_path,
|
|
|
|
|
server_log_path,
|
2023-10-18 07:59:49 +00:00
|
|
|
|
additional_envs,
|
2023-08-16 20:53:51 +00:00
|
|
|
|
ci_logs_args,
|
2023-08-12 20:43:29 +00:00
|
|
|
|
docker_image,
|
2022-03-07 13:25:06 +00:00
|
|
|
|
)
|
2023-08-12 20:30:18 +00:00
|
|
|
|
logging.info("Going to run stress test: %s", run_command)
|
2021-11-01 10:27:46 +00:00
|
|
|
|
|
2023-09-07 12:56:22 +00:00
|
|
|
|
timeout_expired = False
|
2023-09-12 18:06:00 +00:00
|
|
|
|
timeout = 60 * 150
|
2023-09-07 12:56:22 +00:00
|
|
|
|
with TeePopen(run_command, run_log_path, timeout=timeout) as process:
|
2021-12-03 08:33:16 +00:00
|
|
|
|
retcode = process.wait()
|
2023-09-07 12:56:22 +00:00
|
|
|
|
if process.timeout_exceeded:
|
2023-09-12 13:41:00 +00:00
|
|
|
|
logging.info("Timeout expired for command: %s", run_command)
|
2023-09-07 12:56:22 +00:00
|
|
|
|
timeout_expired = True
|
|
|
|
|
elif retcode == 0:
|
2021-12-03 08:33:16 +00:00
|
|
|
|
logging.info("Run successfully")
|
|
|
|
|
else:
|
|
|
|
|
logging.info("Run failed")
|
2021-11-01 10:27:46 +00:00
|
|
|
|
|
|
|
|
|
subprocess.check_call(f"sudo chown -R ubuntu:ubuntu {temp_path}", shell=True)
|
2023-09-22 11:16:46 +00:00
|
|
|
|
ci_logs_credentials.clean_ci_logs_from_credentials(run_log_path)
|
2021-11-01 10:27:46 +00:00
|
|
|
|
|
2022-03-07 13:25:06 +00:00
|
|
|
|
state, description, test_results, additional_logs = process_results(
|
|
|
|
|
result_path, server_log_path, run_log_path
|
|
|
|
|
)
|
2023-09-07 12:56:22 +00:00
|
|
|
|
|
|
|
|
|
if timeout_expired:
|
2023-09-12 18:17:55 +00:00
|
|
|
|
test_results.append(TestResult.create_check_timeout_expired(timeout))
|
2023-09-07 12:56:22 +00:00
|
|
|
|
state = "failure"
|
2024-01-04 15:35:09 +00:00
|
|
|
|
description = test_results[-1].name
|
|
|
|
|
|
|
|
|
|
JobReport(
|
|
|
|
|
description=description,
|
|
|
|
|
test_results=test_results,
|
|
|
|
|
status=state,
|
|
|
|
|
start_time=stopwatch.start_time_str,
|
|
|
|
|
duration=stopwatch.duration_seconds,
|
|
|
|
|
additional_files=additional_logs,
|
|
|
|
|
).dump()
|
2022-03-29 12:41:47 +00:00
|
|
|
|
|
2023-01-03 14:23:19 +00:00
|
|
|
|
if state == "failure":
|
2022-03-29 12:41:47 +00:00
|
|
|
|
sys.exit(1)
|
2023-01-03 19:22:31 +00:00
|
|
|
|
|
2023-01-03 19:32:11 +00:00
|
|
|
|
|
2023-01-03 19:22:31 +00:00
|
|
|
|
if __name__ == "__main__":
|
|
|
|
|
run_stress_test("clickhouse/stress-test")
|