Re: [HACKERS] Open 6.5 items

Поиск
Список
Период
Сортировка
От Tatsuo Ishii
Тема Re: [HACKERS] Open 6.5 items
Дата
Msg-id 199905280520.OAA19906@srapc451.sra.co.jp
обсуждение исходный текст
Ответ на Open 6.5 items  (Bruce Momjian <maillist@candle.pha.pa.us>)
Ответы Re: [HACKERS] Open 6.5 items  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
>spinlock stuck problem

This time I have tested on another slower/less memory machine. Seems
things getting worse. I got:
LockAcquire: xid table corrupted

This comes from:
    /*     * Find or create an xid entry with this tag     */    result = (XIDLookupEnt *) hash_search(xidTable,
(Pointer)&item,
 
      HASH_ENTER, &found);    if (!result)    {        elog(NOTICE, "LockAcquire: xid table corrupted");        return
STATUS_ERROR;   }
 

As you can see the aquired master lock never released, and all
backends get stucked. (of course, corrupted xid table is a problem too
).

Another error was:
out of free buffers: time to abort !

I will do more testing...
---
Tatsuo Ishii



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

Предыдущее
От:
Дата:
Сообщение: Port for SGI Irix using today's snapshot.
Следующее
От: Tom Lane
Дата:
Сообщение: Re: [HACKERS] Open 6.5 items