| From: | Alexander Lakhin <exclusion(at)gmail(dot)com> |
|---|---|
| To: | pgsql-hackers <pgsql-hackers(at)postgresql(dot)org> |
| Subject: | Re: Improving tracking/processing of buildfarm test failures |
| Date: | 2026-05-05 19:00:00 |
| Message-ID: | f64afbc0-07ff-4b8f-8c1f-d11a8dea233c@gmail.com |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-hackers |
Hello hackers,
Please take a look at the April report on buildfarm failures:
# SELECT br, COUNT(*) FROM failures WHERE dt >= '2026-04-01' AND
dt < '2026-05-01' GROUP BY br;
REL_14_STABLE: 7
REL_15_STABLE: 3
REL_16_STABLE: 6
REL_17_STABLE: 4
REL_18_STABLE: 15
master: 144
-- Total: 180
(Counting test failures only, excluding indent-check, Configure, Build
errors, also excluding failures from fruitcrow (2).)
# SELECT COUNT(*) FROM (SELECT DISTINCT issue_link FROM failures WHERE
dt >= '2026-04-01' AND dt < '2026-05-01');
31
# SELECT issue_link, COUNT(*) FROM failures WHERE dt >= '2026-04-01' AND
dt < '2026-05-01' GROUP BY issue_link ORDER BY 2 DESC LIMIT 6;
https://www.postgresql.org/message-id/1CB288C9-564B-4664-B096-C2F4377D17AB%40yesql.se : 35
-- Fixed
https://www.postgresql.org/message-id/ptyiexyhmtxf4lm524s7o7w64r26ra237uusv4tjav4yhpmeoo@vfwwllz7tivb : 14
-- Fixed
https://www.postgresql.org/message-id/E1wI7MQ-003Ldn-2V%40gemulon.postgresql.org : 10
-- Fixed
https://www.postgresql.org/message-id/1997398.1776263852%40sss.pgh.pa.us : 10
-- Fixed
# SELECT COUNT(*) FROM failures WHERE dt >= '2026-04-01' AND
dt < '2026-05-01' AND issue_link IS NULL; -- Unsorted/unhelpful failures
33
Short-lived failures: 122
Best regards,
Alexander
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Daniel Gustafsson | 2026-05-05 19:08:30 | Re: Changing the state of data checksums in a running cluster |
| Previous Message | Tom Lane | 2026-05-05 18:39:50 | Prepping for annual pgindent run |