Re: Optimizing a read-only database

From: Sameer Thakur <samthakur74(at)gmail(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: Optimizing a read-only database
Date: 2015-05-20 09:11:29
Message-ID: 1432113089141-5850109.post@n5.nabble.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hello,

In addition to what has already been suggested

1. Use

VACUUM FREEZE ANALYZE;

Otherwise you will still have some trickle of write-activity going on,
not always efficiently, despite being in read-only mode. It's because
of what's referred to as Hint Bits:
http://wiki.postgresql.org/wiki/Hint_Bits

2. Low value for maintenance_work_mem

Ref:http://postgresql.nabble.com/How-to-configure-a-read-only-database-server-td4311924.html

regards
Sameer

--
View this message in context: http://postgresql.nabble.com/Optimizing-a-read-only-database-tp5849746p5850109.html
Sent from the PostgreSQL - general mailing list archive at Nabble.com.

In response to

Browse pgsql-general by date

  From Date Subject
Next Message François Battail 2015-05-20 09:26:29 Re: Optimizing a read-only database
Previous Message Sameer Thakur 2015-05-20 09:03:29 Re: Optimizing a read-only database