Re: Index creation

Поиск
Список
Период
Сортировка
От Дмитрий Иванов
Тема Re: Index creation
Дата
Msg-id CAPL5KHpwskQR=a1dX86EKMKBaDP0EgU7EDycE8bhg+hPRgRL8w@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Index creation  (Jeff Janes <jeff.janes@gmail.com>)
Список pgsql-general
Yes, you are right. The presented index usage data is caused by recursive queries, which check the integrity of hierarchical structures from the bottom up. Your explanation has clarified what is going on. Thank you.
My experiments with indexes are caused by the appearance of significant variance (1-180ms) in these operations, which appeared when I switched from version 12 to 14, which increased the checking time by ~250% with the existing implementation and ~40% after I rewrote the functions to run as dynamic SQL. This decision was due to the obvious correlation between the level of variance and the primary dataset obtained when the non-dynamic function was first called. I don't think my communication experience will allow me to properly describe the problem, but the information I received was useful. Thank you.
--
Regards, Dmitry!


пн, 20 июн. 2022 г. в 23:23, Jeff Janes <jeff.janes@gmail.com>:
On Mon, Jun 20, 2022 at 1:17 AM Дмитрий Иванов <firstdismay@gmail.com> wrote:
Your statement seems obvious to me. But what I see doesn't seem like a conscious choice. It turns out that it is better to have a lighter general-purpose index than to strive to create a target covering index for a certain kind of operation.

If both indexes are expected to be hit only once in the query and return only one row, their expected costs will be the same.  In this case, the tie is broken arbitrarily, and that often means the most-recently created index will get chosen.

As the expected number of leaf page accesses in a given query goes up, the smaller index will start to look less expensive.

Cheers,

Jeff 

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

Предыдущее
От: Rino Mardo
Дата:
Сообщение: accessing postgres from c++
Следующее
От: Aditya Bhardwaj
Дата:
Сообщение: How to use 32 bit ODBC driver