Re: VACUUM on multi-CPU systems?

Поиск
Список
Период
Сортировка
От Jeff Boes
Тема Re: VACUUM on multi-CPU systems?
Дата
Msg-id alad68$r6c$1@news.hub.org
обсуждение исходный текст
Ответ на VACUUM on multi-CPU systems?  (Jeff Boes <jboes@nexcerpt.com>)
Ответы Re: VACUUM on multi-CPU systems?  (Andrew Sullivan <andrew@libertyrms.info>)
Re: VACUUM on multi-CPU systems?  (Tycho Fruru <tycho@fruru.com>)
Список pgsql-admin
On Mon, 26 Aug 2002 12:04:23 -0400, Jeff Boes wrote:

> Does anyone have any thoughts on whether my database vacuum/full/analyze
> might go faster on our 2-CPU system if I generated the VACUUM commands
> into a script, e.g.,
>
>     psql -a <<EOF
> \t
> \o /tmp/db_maint.$$
> select distinct on (relname) 'VACUUM FULL ANALYZE "' || relname || '";'
> from pg_class
> where relkind='r'
> \g
> \o
> EOF
>
> (generates a script that looks like
>
>   VACUUM FULL ANALYZE table1;
>   VACUUM FULL ANALYZE table2;
>
> etc.)
>
> and then started two psql sessions each processing half of the file?

I didn't see any response to this, so I'll try just one more time and
then shut up ...


--
Jeff Boes                                      vox 269.226.9550 ext 24
Database Engineer                                     fax 269.349.9076
Nexcerpt, Inc.                                 http://www.nexcerpt.com
           ...Nexcerpt... Extend your Expertise

В списке pgsql-admin по дате отправления:

Предыдущее
От: Jodi Kanter
Дата:
Сообщение: timestamp
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: Remote monitoring