Re: strange 'vacuum verbose analyze' behaviour

From: Oleg Bartunov <oleg(at)sai(dot)msu(dot)su>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Pgsql Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: strange 'vacuum verbose analyze' behaviour
Date: 2005-01-29 08:23:56
Message-ID: Pine.GSO.4.62.0501291120190.6701@ra.sai.msu.su
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Tom,

After almost 20 hours running vacuum I see postmaster grew a little bit:
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
20458 postgres 15 0 2136m 553m 204m D 33.2 54.7 198:18.36 postmaster

It's strange that I see no output since starting
vacuumdb -v -z -f wsdb > vacuum-wsdb.log 2>&1&

-rw-r--r-- 1 postgres postgres 48784 Jan 28 15:03 vacuum-wsdb.log

Is there something I could do ?

Oleg

On Fri, 28 Jan 2005, Oleg Bartunov wrote:

> On Fri, 28 Jan 2005, Tom Lane wrote:
>
>> Oleg Bartunov <oleg(at)sai(dot)msu(dot)su> writes:
>>> Memory growth stoped at 1.8Gb
>>
>>> PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
>>> 20458 postgres 15 0 1902m 503m 204m D 5.9 49.7 13:59.61 postmaster
>>
>> Index-related memory leak maybe? What are the indexes on this table,
>> exactly?
>
> nothing special :)
>
> CREATE TABLE usno (
> ra real,
> dec real,
> bmag real,
> rmag real);
>
> COPY usno FROM stdin with delimiter '|';
>
> CREATE INDEX radec_idx1 ON usno (ra,dec) ;
>
> ALTER TABLE usno ADD COLUMN ipix bigint;
>
> UPDATE usno SET ipix = q3c_ang2pix(ra,dec);
>
> CREATE INDEX ipix_ind ON usno (ipix);
>
>
>
>>
>> regards, tom lane
>>
>> ---------------------------(end of broadcast)---------------------------
>> TIP 1: subscribe and unsubscribe commands go to majordomo(at)postgresql(dot)org
>>
>
> Regards,
> Oleg
> _____________________________________________________________
> Oleg Bartunov, sci.researcher, hostmaster of AstroNet,
> Sternberg Astronomical Institute, Moscow University (Russia)
> Internet: oleg(at)sai(dot)msu(dot)su, http://www.sai.msu.su/~megera/
> phone: +007(095)939-16-83, +007(095)939-23-83
>

Regards,
Oleg
_____________________________________________________________
Oleg Bartunov, sci.researcher, hostmaster of AstroNet,
Sternberg Astronomical Institute, Moscow University (Russia)
Internet: oleg(at)sai(dot)msu(dot)su, http://www.sai.msu.su/~megera/
phone: +007(095)939-16-83, +007(095)939-23-83

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Hans-Jürgen Schönig 2005-01-29 09:39:01 Re: some linker troubles with rc5 on sun studio 9 ...
Previous Message Jim C. Nasby 2005-01-29 07:48:13 Re: Allow GRANT/REVOKE permissions to be applied to all schema objects with one command