Skip to content

fix: Performance testing script updates #1006

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Dec 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ def performance_metrics(
if org:
extra_filters += [{"col": "org", "op": "IN", "val": org}]

chart_count = 0
with patch("clickhouse_connect.common.build_client_name") as mock_build_client_name:
mock_build_client_name.return_value = RUN_ID
target_dashboards = (
Expand Down Expand Up @@ -117,6 +118,7 @@ def performance_metrics(
result = measure_chart(slice, query_context, fail_on_error)
if not result:
continue
chart_count += 1
for query in result["queries"]:
# Remove the data from the query to avoid memory issues on large
# datasets.
Expand All @@ -129,9 +131,7 @@ def performance_metrics(
logger.warning("No target charts found!")
return report

logger.info("Waiting for clickhouse log...")
time.sleep(20)
get_query_log_from_clickhouse(report, query_contexts, print_sql, fail_on_error)
get_query_log_from_clickhouse(report, query_contexts, print_sql, fail_on_error, chart_count)
return report


Expand Down Expand Up @@ -187,7 +187,7 @@ def measure_chart(slice, query_context_dict, fail_on_error):
"""
Measure the performance of a chart and return the results.
"""
logger.info(f"Fetching slice data: {slice}")
logger.info(f"Fetching slice data: {slice} {slice.uuid}")

g.user = security_manager.find_user(username="{{SUPERSET_ADMIN_USERNAME}}")
query_context = ChartDataQueryContextSchema().load(query_context_dict)
Expand All @@ -200,6 +200,7 @@ def measure_chart(slice, query_context_dict, fail_on_error):
end_time = datetime.now()
result["time_elapsed"] = (end_time - start_time).total_seconds()
result["slice"] = slice
result["uuid"] = slice.uuid
for query in result["queries"]:
if "error" in query and query["error"]:
raise query["error"]
Expand All @@ -212,7 +213,7 @@ def measure_chart(slice, query_context_dict, fail_on_error):
return result


def get_query_log_from_clickhouse(report, query_contexts, print_sql, fail_on_error):
def get_query_log_from_clickhouse(report, query_contexts, print_sql, fail_on_error, chart_count):
"""
Get the query log from clickhouse and print the results.
"""
Expand All @@ -228,6 +229,18 @@ def get_query_log_from_clickhouse(report, query_contexts, print_sql, fail_on_err

ch_chart_result = measure_chart(slice, query_context, fail_on_error)

# Run CH query until results for all slices are returned
ch_count = 6
while ch_count > 0:
missing_rows = chart_count - ch_chart_result["queries"][0]["rowcount"]
if missing_rows > 0:
logger.info(f"Waiting for {missing_rows} clickhouse logs...")
time.sleep(5)
ch_chart_result = measure_chart(slice, query_context, fail_on_error)
ch_count -= 1
else:
break

clickhouse_queries = {}
for query in ch_chart_result["queries"]:
for row in query["data"]:
Expand All @@ -237,7 +250,7 @@ def get_query_log_from_clickhouse(report, query_contexts, print_sql, fail_on_err
for k, chart_result in enumerate(report):
for query in chart_result["queries"]:
parsed_sql = (
str(sqlparse.parse(query["query"])[0]).replace(";", "")
str(sqlparse.parse(query["query"].strip())[0]).replace(";", "")
+ "\n FORMAT Native"
)
chart_result["sql"] = parsed_sql
Expand All @@ -255,7 +268,7 @@ def get_query_log_from_clickhouse(report, query_contexts, print_sql, fail_on_err
report_str += report_format.format(
i=(k + 1),
dashboard=chart_result["dashboard"],
slice=chart_result["slice"],
slice=f'{chart_result["slice"]} {chart_result["uuid"]}',
superset_time=chart_result["time_elapsed"],
)
for query in chart_result["queries"]:
Expand Down
Loading