Indices pinned in pageable RAM?

Поиск
Список
Период
Сортировка
От Marty Scholes
Тема Indices pinned in pageable RAM?
Дата
Msg-id 40BE2CC7.9050105@outputservices.com
обсуждение исходный текст
Ответы Re: Indices pinned in pageable RAM?  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
Has anyone seriously looked at how it would impact things to give the 
DBA the option of storing certain indices in RAM instead of on disk?

Queries (both select and insert/update) against heavily indexed tables 
do most of the reads and writes to the index trees and relatively little 
reading and writing to the actual table data.

The index is completely redundant (read: rebuildable during restart) and 
its rebuild "should" be very parallelizable.  Without the WAL and disk 
synchronization munching, even a single-threaded rebuild during restart 
should be fairly quick.

This would allow the index to stay in RAM. giving it a higher priority 
than all other disk objects in the OS cache.  Putting it in pageable RAM 
would allow the OS to reclaim core if it absolutely had to.

Am I way off here?



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

Предыдущее
От: Pierre Emmanuel Gros
Дата:
Сообщение: constraint upon view
Следующее
От: Jonathan Gardner
Дата:
Сообщение: Re: constraint upon view