How do i know if a vacuum is running?

Started by Modumudi, Sireeshaover 13 years ago2 messagesgeneral
Jump to latest
#1Modumudi, Sireesha
Sireesha.Modumudi@emc.com

Hi Everybody,

I wanted to know if vacuum is already running in postgres?

Thank you,

Sireesha

#2David G. Johnston
david.g.johnston@gmail.com
In reply to: Modumudi, Sireesha (#1)
Re: How do i know if a vacuum is running?

Run a query against the "pg_stat_activity" system view (you will need to be
a super-user to view system queries, normal users can only view their own).

To get you started this is the query that I use to spot-check system query
activity:

SELECT procpid, current_query, client_addr, xact_start, query_start

FROM pg_stat_activity

ORDER BY xact_start ASC;

HTH,

David J.

From: pgsql-general-owner@postgresql.org
[mailto:pgsql-general-owner@postgresql.org] On Behalf Of Modumudi, Sireesha
Sent: Monday, October 08, 2012 7:22 PM
To: pgsql-general@postgresql.org
Subject: [GENERAL] How do i know if a vacuum is running?

Hi Everybody,

I wanted to know if vacuum is already running in postgres?

Thank you,

Sireesha