Re: Improving tracking/processing of buildfarm test failures - Mailing list pgsql-hackers

From Alexander Lakhin
Subject Re: Improving tracking/processing of buildfarm test failures
Date
Msg-id [email protected]
Whole thread Raw
In response to Improving tracking/processing of buildfarm test failures  (Alexander Lakhin <[email protected]>)
Responses Re: Improving tracking/processing of buildfarm test failures
List pgsql-hackers
Hello hackers,

Please take a look at the October report on buildfarm failures:
# SELECT br, count(*) FROM failures WHERE dt >= '2024-10-01' AND
  dt < '2024-11-01' GROUP BY br;
REL_12_STABLE: 9
REL_13_STABLE: 9
REL_14_STABLE: 19
REL_15_STABLE: 25
REL_16_STABLE: 12
REL_17_STABLE: 14
master: 109
-- Total: 197
(Counting test failures only, excluding indent-check, Configure, Build
errors.)

# SELECT COUNT(*) FROM (SELECT DISTINCT issue_link FROM failures WHERE
  dt >= '2024-10-01' AND dt < '2024-11-01');
22

# SELECT issue_link, count(*) FROM failures WHERE dt >= '2024-10-01' AND
  dt < '2024-11-01' GROUP BY issue_link ORDER BY 2 DESC LIMIT 6;
https://www.postgresql.org/message-id/[email protected]: 54
-- Fixed

https://www.postgresql.org/message-id/CAA4eK1K_ikMjeKqsOf9SsDAu4S8_CU6n15RP13-j4cMSKn-H+g@mail.gmail.com: 23
-- Fixed

https://www.postgresql.org/message-id/[email protected]: 11
-- Will be fixed soon

https://www.postgresql.org/message-id/[email protected]: 6
-- Fixed

https://www.postgresql.org/message-id/[email protected]: 5

https://www.postgresql.org/message-id/[email protected]: 4
-- Fixed

# SELECT count(*) FROM failures WHERE dt >= '2024-10-01' AND
  dt < '2024-11-01' AND issue_link IS NULL; -- Unsorted/unhelpful failures
74

Short-lived failures:
165 (+ 11 from [email protected])

Best regards,
Alexander



pgsql-hackers by date:

Previous
From: Tatsuo Ishii
Date:
Subject: Proposal to remove message length constant from F/B protocol document
Next
From: Heikki Linnakangas
Date:
Subject: Re: Improve the efficiency of _bt_killitems.