Hello, In the query performance report this query takes 97% of time consumption :
with rows as ( select ctid from net._http_response where created < now() - $1 order by created limit $2 )delete from net._http_response r using rowswhere r.ctid = rows.ctid
with rows as ( select ctid from net._http_response where created < now() - $1 order by created limit $2 )delete from net._http_response r using rowswhere r.ctid = rows.ctid
I see that it a query who cleanning the net._http_response table. Why does this query consume so many resources? And can it be optimized?
Supabase gives you the tools, documentation, and community that makes managing databases, authentication, and backend infrastructure a lot less overwhelming.