| From: | Gaetano Mendola <mendola(at)bigfoot(dot)com> |
|---|---|
| To: | "pgsql-admin(at)postgresql(dot)org" <pgsql-admin(at)postgresql(dot)org> |
| Subject: | pg_autovacuum questions |
| Date: | 2003-10-06 17:27:27 |
| Message-ID: | 3F81A5FF.8050709@bigfoot.com |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-admin |
Hi all,
only two questions:
1) where is the documentation about the
meanings of option passed to pg_autovacuum
2) Is it normal that a strace wake up it during a sleep?
From linux doc:
sleep() makes the current process sleep until seconds
seconds have elapsed or a signal arrives which is not ignored.
for fix this is better substitute each sleep with:
int a = <second_to_sleep>
while (a>0) a=sleep(a);
( I didn't find the signal to ignore :-) )
Regards
Gaetano Mendola
| From | Date | Subject | |
|---|---|---|---|
| Next Message | enio | 2003-10-06 19:26:19 | How to create cluster-wide functions |
| Previous Message | scott.marlowe | 2003-10-06 15:28:34 | Re: Need Urgent Help in case of postgres Database Crash. |