From: | Alexander Lakhin <exclusion(at)gmail(dot)com> |
---|---|
To: | Noah Misch <noah(at)leadboat(dot)com>, Amit Kapila <amit(dot)kapila16(at)gmail(dot)com>, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Andres Freund <andres(at)anarazel(dot)de>, Andrew Dunstan <andrew(at)dunslane(dot)net>, pgsql-hackers <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: Improving tracking/processing of buildfarm test failures |
Date: | 2025-03-02 08:00:00 |
Message-ID: | b62f97b1-bbff-42cd-861f-c785f0774ab8@gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
Hello hackers,
Please take a look at the February report on buildfarm failures:
# SELECT br, count(*) FROM failures WHERE dt >= '2025-02-01' AND
dt < '2025-03-01' GROUP BY br;
REL_13_STABLE: 17
REL_14_STABLE: 11
REL_15_STABLE: 7
REL_16_STABLE: 15
REL_17_STABLE: 13
master: 186
-- Total: 249
(Counting test failures only, excluding indent-check, Configure, Build
errors.)
# SELECT COUNT(*) FROM (SELECT DISTINCT issue_link FROM failures WHERE
dt >= '2025-02-01' AND dt < '2025-03-01');
32
# SELECT issue_link, count(*) FROM failures WHERE dt >= '2025-02-01' AND
dt < '2025-03-01' GROUP BY issue_link ORDER BY 2 DESC LIMIT 7;
https://www.postgresql.org/message-id/816167.1740278884%40sss.pgh.pa.us : 32
-- Fixed
https://www.postgresql.org/message-id/976dcc37-b629-490e-a052-a057477d062f%40dunslane.net : 26
--Fixed
https://www.postgresql.org/message-id/57988cee-5cc8-44f9-981e-8d62e556f5c8%40gmail.com : 21
-- Fixed
https://www.postgresql.org/message-id/1834446.1740588664@sss.pgh.pa.us : 21
-- Fixed
https://www.postgresql.org/message-id/CA%2BTgmoaob_3aNF5S49WFoJs6Rb37rNnd5WH_e9nXAn_jtWWCLQ%40mail.gmail.com : 16
-- Fixed
https://www.postgresql.org/message-id/559462.1737760111%40sss.pgh.pa.us : 14
-- Fixed
https://git.postgresql.org/gitweb/?p=postgresql.git;a=commit;h=5bf12323b : 14
-- Fixed
# SELECT count(*) FROM failures WHERE dt >= '2025-02-01' AND
dt < '2025-03-01' AND issue_link IS NULL; -- Unsorted/unhelpful failures
13
Short-lived failures:190
(I've also updated my script to exclude "*-build" failures.)
Best regards,
Alexander Lakhin
Neon (https://neon.tech)
Attachment | Content-Type | Size |
---|---|---|
check-bf-failures.sh.txt | text/plain | 2.6 KB |
From | Date | Subject | |
---|---|---|---|
Next Message | Alexander Korotkov | 2025-03-02 08:46:09 | Re: Considering fractional paths in Append node |
Previous Message | Junwang Zhao | 2025-03-02 07:40:11 | Re: Make COPY format extendable: Extract COPY TO format implementations |