From: | Hannu Krosing <hannu(at)tm(dot)ee> |
---|---|
To: | mlw <markw(at)mohawksoft(dot)com> |
Cc: | Justin Clift <justin(at)postgresql(dot)org>, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Zeugswetter Andreas SB SD <ZeugswetterA(at)spardat(dot)at>, Vince Vielhaber <vev(at)michvhf(dot)com>, pgsql-hackers(at)postgresql(dot)org |
Subject: | Re: sequence indexes |
Date: | 2002-01-29 13:17:19 |
Message-ID: | 3C56A0DF.6380290A@tm.ee |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
mlw wrote:
>
> Hannu Krosing wrote:
> >
> > mlw wrote:
> > >
> > >
> > > Could one run a postgresql process in a lower priority process and
> > > perform lazy vacuums without affecting performance all that much?
> >
> > One must be very careful not to introduce reverse priority problems -
> > i.e. a
> > lower priority process locking some resource and then not letting go
> > while
> > higher priority processes are blocked from running due to needing that
> > lock.
> I understand that, hmm. I wonder if the lock code could boost the priority of a
> process which owns a lock.
>
> >
> > In my tests 1 vacuum process slowed down 100 concurrent pgbench
> > processes
> > by ~2 times.
>
> Is that good or bad?
I had hoped it to take somewhat proportional time, i.e. slow other
backends
down by 1/100.
> > > A live index compaction can be done by indexing the table with a
> > > temporary name rename the old index, rename the new index to the old
> > > name, and drop the old index.
> >
> > Isn't this what REINDEX command does ?
>
> REINDEX can't be run on a live system, can it?
It will probably lock something, but otherways I don't say why it can't.
You may have to add FORCE to the end of command thus:
reindex table tablename force;
-------------
Hannu
From | Date | Subject | |
---|---|---|---|
Next Message | Radu-Adrian Popescu | 2002-01-29 14:14:15 | Re: Backup database through web and php |
Previous Message | mlw | 2002-01-29 12:43:52 | Re: sequence indexes |