Обсуждение: pg_statio_all_indexes

Поиск
Список
Период
Сортировка

pg_statio_all_indexes

От
David Hoksza
Дата:
Hi, I'm not sure about the value idx_blks_hit of pg_statio_all_indexes
view. Is it total value of touched pages, or do I get total value when
I add idx_blks_read to it?
In other words - does idx_blks_hit cover also physical reads?

Thanks,
       David Hoksza



Re: pg_statio_all_indexes

От
"Shoaib Mir"
Дата:
As per my understanding, 'pg_statio_all_indexes' displays "idx_blks_hit" using "pg_stat_get_blocks_hit(oid)" where the function "pg_stat_get_blocks_hit" gets number of disk block requests found in cache for a table or index.

Hope this helps...

Thanks,
 --
Shoaib Mir
EnterpriseDB (www.enterprisedb.com)

On 7/30/06, David Hoksza <david.hoksza@seznam.cz> wrote:
Hi, I'm not sure about the value idx_blks_hit of pg_statio_all_indexes
view. Is it total value of touched pages, or do I get total value when
I add idx_blks_read to it?
In other words - does idx_blks_hit cover also physical reads?

Thanks,
       David Hoksza



---------------------------(end of broadcast)---------------------------
TIP 9: In versions below 8.0, the planner will ignore your desire to
       choose an index scan if your joining column's datatypes do not
       match




Re: pg_statio_all_indexes

От
Tom Lane
Дата:
David Hoksza <david.hoksza@seznam.cz> writes:
> Hi, I'm not sure about the value idx_blks_hit of pg_statio_all_indexes
> view. Is it total value of touched pages, or do I get total value when
> I add idx_blks_read to it?
> In other words - does idx_blks_hit cover also physical reads?

I believe blks_hit is the number of page requests that were found in
cache and hence did *not* require a read().  The other column is the
number of page requests that *did* require a read().

            regards, tom lane

Re: pg_statio_all_indexes

От
David Hoksza
Дата:
Yes, you are right. I now tried to select from one table various amount of
records and when the amount exceeded some given number so the blks_hit begun
fall.

Thanks,
       David Hoksza

________________________________
30. července 2006, 20:24:33, napsal jste:

TL> David Hoksza <david.hoksza@seznam.cz> writes:
>> Hi, I'm not sure about the value idx_blks_hit of pg_statio_all_indexes
>> view. Is it total value of touched pages, or do I get total value when
>> I add idx_blks_read to it?
>> In other words - does idx_blks_hit cover also physical reads?

TL> I believe blks_hit is the number of page requests that were found in
TL> cache and hence did *not* require a read().  The other column is the
TL> number of page requests that *did* require a read().

TL>                         regards, tom lane