From 44978185b403e2f689d21a22b9270a30a314e27c Mon Sep 17 00:00:00 2001 From: Matthew Todd Date: Thu, 11 Aug 2022 16:45:02 -0400 Subject: [PATCH] insights: remove the ingester for now In #85350 we introduced a data race that's affecting many branches in CI. Until we can get to the bottom of it, probably in #83080, let's just remove the offending codepath. Release note: None --- pkg/sql/sqlstats/insights/insights.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/sql/sqlstats/insights/insights.go b/pkg/sql/sqlstats/insights/insights.go index 021fcc8f0ee3..afbeed26ddd8 100644 --- a/pkg/sql/sqlstats/insights/insights.go +++ b/pkg/sql/sqlstats/insights/insights.go @@ -140,5 +140,5 @@ type Registry interface { // New builds a new Registry. func New(st *cluster.Settings, metrics Metrics) Registry { - return newConcurrentBufferIngester(newRegistry(st, metrics)) + return newRegistry(st, metrics) }