Re: Power cut and performance problem

Поиск
Список
Период
Сортировка
От Daniel Caune
Тема Re: Power cut and performance problem
Дата
Msg-id 1E293D3FF63A3740B10AD5AAD88535D201D30AFB@UBIMAIL1.ubisoft.org
обсуждение исходный текст
Ответ на Power cut and performance problem  ("Daniel Caune" <daniel.caune@ubisoft.com>)
Ответы Re: Power cut and performance problem  ("Aftab Alam" <aalam@tatashare.com>)
Список pgsql-sql
> > For example, the execution of the following query is fast as it used
to
> > be (gslog_event_id is the primary key on gslog_event):
> >
> >  select max(gslog_event_id) from gslog_event;  (=> Time: 0.773 ms)
> >
> >
> > while the following query is really slow (several minutes):
> >
> >  select min(gslog_event_id) from gslog_event; (index on the primary
key
> > is taken)
> >
> >
> > I'm not a hardware expert at all, but I supposed that the whole
> > performance would be degraded when a problem occurs with RAID disks.
Am
> > I wrong?  Could it be something else?  Are there some tools that
check
> > the state of a PostgreSQL database?
>
> You would be correct, a hardware problem should manifest itself on
both
> those
> queries.  What is the explain analyze output of those two queries?
It's
> possible you have a corrupt index on gslog_event.  If that's the case,
a
> reindex would likely remedy the problem.  Is postgres logging any
errors?
>

The UNIX administrator confirms that this is not a RAID problem.

I truncate my table. This is not the most efficient way, but it's okay
because this is a data stage table.  It seems that it fixes my
performance problem.  As you said, perhaps the problem was more related
to index corruption.  Truncating data and inserting new data recreate
the index and therefore fix the problem.

Thanks,


--
Daniel


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

Предыдущее
От: Jeff Frost
Дата:
Сообщение: Re: Power cut and performance problem
Следующее
От: "Davidson, Robert"
Дата:
Сообщение: plpqsql and RETURN NEXT requires a LOOP?