Re: Index usage problem on 8.3.3

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Index usage problem on 8.3.3
Дата
Msg-id 14519.1225415657@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Index usage problem on 8.3.3  (Jeff Frost <jeff@frostconsultingllc.com>)
Ответы Re: Index usage problem on 8.3.3  (Jeff Frost <jeff@frostconsultingllc.com>)
Список pgsql-performance
Jeff Frost <jeff@frostconsultingllc.com> writes:
> Tom Lane wrote:
>> This may be a HOT side-effect ... is pg_index.indcheckxmin set for
>> the index?
>>
> Yep, sure enough, the 'act' table's indexes have it set and jefftest and
> jefftest2's indexes do not.

Okay.  What that means is that the indexes were created on data that had
already been inserted and updated to some extent, resulting in
HOT-update chains that turned out to be illegal for the new indexes.
The way we deal with this is to mark the indexes as not usable by any
query that can still see the dead HOT-updated tuples.

Your best bet for dodging the problem is probably to break the operation
into two transactions, if that's possible.  INSERT and UPDATE in the
first xact, create the indexes at the start of the second.  (Hmm ...
I'm not sure if that's sufficient if there are other concurrent
transactions; but it's certainly necessary.)  Another possibility is
to create the indexes just after data load, before you start updating
the columns they're on.

            regards, tom lane

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

Предыдущее
От: Jeff Frost
Дата:
Сообщение: Re: Index usage problem on 8.3.3
Следующее
От: Jeff Frost
Дата:
Сообщение: Re: Index usage problem on 8.3.3