Skip to content

Commit 2353245

Browse files
committed
updating title
run command on all nodes
1 parent 3899ded commit 2353245

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/postgresql/troubleshoot/how-to-high-cpu-utilization-elastic-clusters.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: High CPU Utilization Across Elastic Clusters
2+
title: High CPU Utilization Across Azure PostgreSQL Elastic Clusters
33
description: Troubleshoot high CPU utilization across Azure PostgreSQL elastic clusters.
44
author: GayathriPaderla
55
ms.author: gapaderla
@@ -184,7 +184,7 @@ Keeping table statistics up to date helps improve query performance. Monitor whe
184184
The following query helps to identify the tables that need vacuuming:
185185
```sql
186186
SELECT *
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
211211
SELECT *
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

0 commit comments

Comments
 (0)