File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
articles/postgresql/troubleshoot Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 11---
2- title : High CPU Utilization Across Elastic Clusters
2+ title : High CPU Utilization Across Azure PostgreSQL Elastic Clusters
33description : Troubleshoot high CPU utilization across Azure PostgreSQL elastic clusters.
44author : GayathriPaderla
55ms.author : gapaderla
@@ -184,7 +184,7 @@ Keeping table statistics up to date helps improve query performance. Monitor whe
184184The following query helps to identify the tables that need vacuuming:
185185``` sql
186186SELECT *
187- FROM run_command_on_workers ($$
187+ FROM run_command_on_all_nodes ($$
188188 SELECT json_agg(t)
189189 FROM (
190190 SELECT schemaname, relname
@@ -209,7 +209,7 @@ The following query provides information regarding the amount of bloat at the sc
209209
210210``` sql
211211SELECT *
212- FROM run_command_on_workers ($$
212+ FROM run_command_on_all_nodes ($$
213213 SELECT json_agg(t) FROM (
214214 SELECT schemaname, sum (n_live_tup) AS live_tuples
215215 , sum (n_dead_tup) AS dead_tuples
You can’t perform that action at this time.
0 commit comments