Re: Heavy postgres process - Mailing list pgsql-admin

From Scott Marlowe
Subject Re: Heavy postgres process
Date
Msg-id dcc563d10809121047n34e16435i4f57e5a20c87da0c@mail.gmail.com
Whole thread Raw
In response to Heavy postgres process  (Vivek_Sharan <Vivek_Sharan@infosys.com>)
Responses Re: Heavy postgres process  (Vivek_Sharan <Vivek_Sharan@infosys.com>)
List pgsql-admin
On Fri, Sep 12, 2008 at 2:12 AM, Vivek_Sharan <Vivek_Sharan@infosys.com> wrote:
> Hi Admin,
>
> I'm new to this I have few queries as listed below
>
> 1)      Number of connections made with a particular database.

Wait, how to find out how many connections there are, or how many can
a particular db handle.

For this kind of thing, look at the admin functions in the pgsql-sql docs:

http://www.postgresql.org/docs/8.3/interactive/functions-admin.html

specifically you want something like:

select datname from pg_stat_activity;
select datname, count(datname)  from pg_stat_activity group by datname;

> 2)      And how can I check which process (PID) is responsible for the
> connection and

That table up there ^^^

> 3)      what all can make a postgres process as heavy as 70-80 MB in size

you may not be measuring properly.  When you say it's using 70-80 MB
how do you know this?  The numbers you see in top aren't necessarily
what some folks think they ar.

pgsql-admin by date:

Previous
From: "Scott Marlowe"
Date:
Subject: Re: Recommend dba maintenance tasks on a regular bases
Next
From: Fabricio
Date:
Subject: Re: Recommend dba maintenance tasks on a regular bases