Re: Speedier count(*)

Поиск
Список
Период
Сортировка
От PFC
Тема Re: Speedier count(*)
Дата
Msg-id op.svceokgbth1vuj@localhost
обсуждение исходный текст
Ответ на Re: Speedier count(*)  (Tino Wildenhain <tino@wildenhain.de>)
Ответы Re: Speedier count(*)  (Tino Wildenhain <tino@wildenhain.de>)
Список pgsql-performance

> You could lock the count table to prevent the problem
> where 2 competing transactions do an insert, read the
> start value and add 1 to it and then write the result
> - which is n+1 rather then n+2 - so you are off by one.
> Think of the same when one transaction inserts 100
> and the other 120. Then you could even be off by 100.

    Niet.

    If your trigger does UPDATE counts_cache SET cached_count =
cached_count+N WHERE ...
    Then all locking is taken care of by Postgres.
    Of course if you use 2 queries then you have locking issues.

    However the UPDATE counts_cache has a problem, ie. it locks this row FOR
UPDATE for the whole transaction, and all transactions which want to
update the same row must wait to see if the update commits or rollbacks,
so if you have one count cache row for the whole table you get MySQL style
scalability...

    To preserve scalability you could, instead of UPDATE, INSERT the delta of
rows inserted/deleted in a table (which has no concurrencies issues) and
compute the current count with the sum() of the deltas, then with a cron,
consolidate the deltas and update the count_cache table so that the deltas
table stays very small.

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

Предыдущее
От: Luis Cornide Arce
Дата:
Сообщение: Why is not using the index
Следующее
От: "Paul Johnson"
Дата:
Сообщение: PG8 Tuning