From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | Erik Jones <ejones(at)engineyard(dot)com> |
Cc: | pgsql-admin(at)postgresql(dot)org |
Subject: | Re: Any potential race condition danger from repeated config entries? |
Date: | 2014-01-14 23:16:53 |
Message-ID: | 1786.1389741413@sss.pgh.pa.us |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-admin |
Erik Jones <ejones(at)engineyard(dot)com> writes:
> For example, checkpoint_segments set to 10 in the main postgresql.conf and then set to 100 in an file included at the end of the main config results in log messages like the following when a reload is issued:
> 2014-01-14 11:10:22.597 PST,,,22347,,52b8a115.574b,6,,2013-12-23 12:46:13 PST,,0,LOG,00000,"parameter ""checkpoint_segments"" changed to ""10""",,,,,,,,,""
> 2014-01-14 11:10:22.597 PST,,,22347,,52b8a115.574b,7,,2013-12-23 12:46:13 PST,,0,LOG,00000,"parameter ""checkpoint_segments"" changed to ""100""",,,,,,,,,""
> At that point the server is running with a value of 100 for checkpoint segments. Another reload results in the same two messages. Is there any danger from it being dropped to 10 and immediately set back to 100?
No. Any one process is going to read the whole config file(s) before it
does anything with the new values, so the only actual effect of the
earlier setting is the excess bleating in the postmaster log.
regards, tom lane
From | Date | Subject | |
---|---|---|---|
Next Message | Miu, Monica | 2014-01-14 23:40:45 | please delete my name from the list |
Previous Message | Korry Douglas | 2014-01-14 20:27:46 | Re: changing pb_hba.conf file with pgadmin3 |