Indices pinned in pageable RAM? - Mailing list pgsql-hackers

From Marty Scholes
Subject Indices pinned in pageable RAM?
Date
Msg-id 40BE2CC7.9050105@outputservices.com
Whole thread Raw
Responses Re: Indices pinned in pageable RAM?
List 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 by date:

Previous
From: Pierre Emmanuel Gros
Date:
Subject: constraint upon view
Next
From: Jonathan Gardner
Date:
Subject: Re: constraint upon view