Re: GIN - Generalized Inverted iNdex. Try 3.

Поиск
Список
Период
Сортировка
От Teodor Sigaev
Тема Re: GIN - Generalized Inverted iNdex. Try 3.
Дата
Msg-id 44523864.1020604@sigaev.ru
обсуждение исходный текст
Ответ на Re: GIN - Generalized Inverted iNdex. Try 3.  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: GIN - Generalized Inverted iNdex. Try 3.  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
>> ok.   amskipcheck?
> 
> Oh, I was thinking of having VACUUM put the heap tuple count into the
> struct and then amvacuumcleanup could copy it over to the index tuple
> count.  A "skipcheck" flag only solves the cosmetic problem of not
> getting the warning, it doesn't fix things so that the correct count
> ends up in the index's reltuples entry.

Yes, it is. So for cosmetic purpose I suggested just a quick hack until we have 
good solution.

Both ways, counting pointer and getting number from heap, are not good because of: * counting pointers - it's not what
planneris waiting * getting number from heap - problems with null values and partial indexes.   And it will be done
onlypass check...
 

As you say, the best way is a fair count during vacuum, but for this 
ginbulkdelete should collect in memory all pointers, uniques and counts it. But 
how much memory it will takes for big tables? At least sizeof(ItemPointerData) * 
number of tuples

Using non-exact calculation we may count approximate number of heap's tuples by 
finding the greatest heap's blocknumber from pointers stored in index and 
multiply it by density of tuples ( average number of heap's tuple on one heap's 
page )... But in this case we should skip check too.


> OK, in that case we'd better add a real amclusterable flag to pg_am,
> rather than assuming amorderstrategy can be used to decide.
> 
>> So, two columns about clustering?
>> amclustered
>> amclusterable
> 
> Huh?  Why two?  Either you are allowed to cluster on indexes of this
> type, or you're not.  I don't see the point of any other distinction.

amclusterable - as you suggest: Does cluster command  something or not?
amclustered   - table on such index is always clustered, cluster command does                nothing, but
optimizer/plannertakes clustering into                consideration for query planning.
 

We can use only amclustered, but in this case we can't forbid to cluster table 
on any index. Just current situation.

-- 
Teodor Sigaev                                   E-mail: teodor@sigaev.ru
  WWW: http://www.sigaev.ru/
 


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: GIN - Generalized Inverted iNdex. Try 3.
Следующее
От: Tom Lane
Дата:
Сообщение: Re: GIN - Generalized Inverted iNdex. Try 3.