From 3ed9f2d63efce0ccecaf8092ded3603cfaf7eb2a Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Thu, 14 Jan 2021 21:43:42 +0300 Subject: [PATCH] chore: disable v1 flakiness dashboard (#5015) Computing V1 flakiness dashboard was very expensive (>1 minute for AZ function to run). Disable it now in favor of V2 flakiness dashboard that proves to be very reliable. --- utils/flakiness-dashboard/processing/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/utils/flakiness-dashboard/processing/index.js b/utils/flakiness-dashboard/processing/index.js index cb5bd161e7..dc1c500e06 100644 --- a/utils/flakiness-dashboard/processing/index.js +++ b/utils/flakiness-dashboard/processing/index.js @@ -29,7 +29,8 @@ module.exports = async function(context) { // Process dashboards one-by-one to limit max heap utilization. await processDashboardRaw(context, report); - await processDashboardV1(context, report); + // Disable V1 dashboard since it's crazy expensive to compute. + // await processDashboardV1(context, report); // Disable V2 dashboard in favor of raw data. // await processDashboardV2(context, report); }