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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
|
# Copyright 2021 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""GPU-specific implementation of the unexpected passes' queries module."""
from typing import Iterable, Optional
from unexpected_passes_common import queries as queries_module
from gpu_tests import gpu_integration_test
# This query gets us the most recent |num_builds| CI builds from the past month
# for each builder.
CI_BUILDS_SUBQUERY = """\
builds AS (
WITH
all_builds AS (
SELECT
DISTINCT exported.id AS build_inv_id,
variant.*,
partition_time
FROM
`chrome-luci-data.{project}.gpu_ci_test_results` AS tr,
UNNEST(variant) AS variant
WHERE
DATE(partition_time) > DATE_SUB(CURRENT_DATE(), INTERVAL 30 DAY)
AND exported.realm = "{project}:ci"
AND key = "builder"
),
grouped_builds AS (
SELECT
build_inv_id,
value AS builder,
partition_time,
RANK() OVER (PARTITION BY value ORDER BY partition_time DESC) AS rank_idx,
FROM all_builds
)
SELECT
build_inv_id,
builder,
partition_time
FROM grouped_builds
WHERE rank_idx <= {num_builds}
)"""
# The same as CI_BUILDS_SUBQUERY, but takes into account submitted builds for
# tryjobs.
TRY_BUILDS_SUBQUERY = """\
builds AS (
WITH
all_builds AS (
SELECT
DISTINCT exported.id AS build_inv_id,
variant.*,
partition_time
FROM
`chrome-luci-data.{project}.gpu_try_test_results` AS tr,
UNNEST(variant) AS variant,
submitted_builds sb
WHERE
DATE(partition_time) > DATE_SUB(CURRENT_DATE(), INTERVAL 30 DAY)
AND exported.realm = "{project}:try"
AND key = "builder"
AND exported.id = sb.id
),
grouped_builds AS (
SELECT
build_inv_id,
value AS builder,
partition_time,
RANK() OVER (PARTITION BY value ORDER BY partition_time DESC) AS rank_idx,
FROM all_builds
)
SELECT
build_inv_id,
builder,
partition_time
FROM grouped_builds
WHERE rank_idx <= {num_builds}
)"""
# step_name can be either the step_name tag or test_suite variant because of the
# way Skylab builders work. In normal Chromium test tasks, the step name is
# reported to the task-level RDB invocation, which then gets applied to every
# result that task reports. Skylab test steps are actually separate
# Buildbucket builds that report results a bit differently. They do not report
# a step_name tag, but do put the same information in for the test_suite
# variant. So, we will look for step_name first to cover most builders and fall
# back to test_suite for Skylab builders.
RESULTS_SUBQUERY = """\
results AS (
SELECT
exported.id,
test_id,
status,
(
SELECT value
FROM tr.variant
WHERE key = "builder"
) as builder_name,
IFNULL(
(
SELECT value
FROM tr.tags
WHERE key = "step_name"),
(
SELECT value
FROM tr.variant
WHERE key = "test_suite")) as step_name,
ARRAY(
SELECT value
FROM tr.tags
WHERE key = "typ_tag") as typ_tags,
ARRAY(
SELECT value
FROM tr.tags
WHERE key = "raw_typ_expectation") as typ_expectations
FROM
`chrome-luci-data.{project}.gpu_{ci_or_try}_test_results` tr,
builds b
WHERE
DATE(tr.partition_time) > DATE_SUB(CURRENT_DATE(), INTERVAL 30 DAY)
AND exported.id = build_inv_id
AND status != "SKIP"
AND REGEXP_CONTAINS(
test_id,
"gpu_tests\\\\.{suite}\\\\.")
)"""
# Selects the relevant columns from results that had either a Failure or a
# RetryOnFailure expectation when they were run, ordered by builder name.
FINAL_SELECTOR_QUERY = """\
SELECT id, test_id, builder_name, status, step_name, typ_tags
FROM results
WHERE
"Failure" IN UNNEST(typ_expectations)
OR "RetryOnFailure" IN UNNEST(typ_expectations)
ORDER BY builder_name DESC"""
def _PartitionedSubmittedBuildsFor(project_view: str) -> str:
return queries_module.PARTITIONED_SUBMITTED_BUILDS_TEMPLATE.format(
project_view=project_view)
# Gets the Buildbucket IDs for all the public trybots that:
# 1. Run GPU tests
# 2. Were used for CL submission (i.e. weren't for intermediate patchsets)
PUBLIC_TRY_SUBMITTED_BUILDS_SUBQUERY = f"""\
submitted_builds AS (
{_PartitionedSubmittedBuildsFor('chromium')}
UNION ALL
{_PartitionedSubmittedBuildsFor('angle')}
)"""
# The same as PUBLIC_TRY_SUBMITTED_BUILDS_SUBQUERY, but for internal trybots.
# There are no internal ANGLE tryjobs, so no need to look for attempts there.
INTERNAL_TRY_SUBMITTED_BUILDS_SUBQUERY = f"""\
submitted_builds AS (
{_PartitionedSubmittedBuildsFor('chrome')}
)"""
class GpuBigQueryQuerier(queries_module.BigQueryQuerier):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
name_mapping = gpu_integration_test.GenerateTestNameMapping()
# The suite name we use for identification (return value of Name()) is not
# the same as the one used by ResultDB (Python module), so convert here.
self._suite = name_mapping[self._suite].__module__.split('.')[-1]
def _CiBuildsFor(self, project: str) -> str:
"""Helper function to generate a CI builds subquery."""
return CI_BUILDS_SUBQUERY.format(project=project,
num_builds=self._num_samples)
def _TryBuildsFor(self, project: str) -> str:
"""Helper function to generate a try builds subquery."""
return TRY_BUILDS_SUBQUERY.format(project=project,
num_builds=self._num_samples)
def _ResultsFor(self, project: str, ci_or_try: str) -> str:
"""Helper function to generate a results subquery."""
return RESULTS_SUBQUERY.format(project=project,
ci_or_try=ci_or_try,
suite=self._suite)
def _GetPublicCiQuery(self) -> str:
return f"""\
WITH
{self._CiBuildsFor('chromium')},
{self._ResultsFor('chromium', 'ci')}
{FINAL_SELECTOR_QUERY}
"""
def _GetInternalCiQuery(self) -> str:
return f"""\
WITH
{self._CiBuildsFor('chrome')},
{self._ResultsFor('chrome', 'ci')}
{FINAL_SELECTOR_QUERY}
"""
def _GetPublicTryQuery(self) -> str:
return f"""\
WITH
{PUBLIC_TRY_SUBMITTED_BUILDS_SUBQUERY},
{self._TryBuildsFor('chromium')},
{self._ResultsFor('chromium', 'try')}
{FINAL_SELECTOR_QUERY}
"""
def _GetInternalTryQuery(self) -> str:
return f"""\
WITH
{INTERNAL_TRY_SUBMITTED_BUILDS_SUBQUERY},
{self._TryBuildsFor('chrome')},
{self._ResultsFor('chrome', 'try')}
{FINAL_SELECTOR_QUERY}
"""
def _GetRelevantExpectationFilesForQueryResult(
self, _: queries_module.QueryResult) -> Optional[Iterable[str]]:
# Only one expectation file is ever used for the GPU tests, so just use
# whichever one we've read in.
return None
def _StripPrefixFromTestId(self, test_id: str) -> str:
# GPU test IDs provided by ResultDB are the test name as known by the test
# runner prefixed by
# "ninja://<target>/gpu_tests.<suite>_integration_test.<class>.", e.g.
# "ninja://chrome/test:telemetry_gpu_integration_test/
# gpu_tests.pixel_integration_test.PixelIntegrationTest."
split_id = test_id.split('.', 3)
assert len(split_id) == 4
return split_id[-1]
|