Re: configuring timezone

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Igor Neyman <ineyman(at)perceptron(dot)com>
Cc: Adrian Klaver <adrian(dot)klaver(at)gmail(dot)com>, "pgsql-general(at)postgresql(dot)org" <pgsql-general(at)postgresql(dot)org>
Subject: Re: configuring timezone
Date: 2013-02-06 22:11:22
Message-ID: 15374.1360188682@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Igor Neyman <ineyman(at)perceptron(dot)com> writes:
> Going back to the reason for this change in Release Notes:
> "This avoids expensive time zone probes during server start."
> How expensive?

The time zone probe logic involves reading every file under
/usr/share/zoneinfo (or wherever you have the Olson tz database
installed). There are a couple thousand of those in a typical Linux
installation. In a cold-boot situation where none of that data is
already swapped in, it's not unusual for this to take five seconds or
more. Now that may or may not seem like a lot, but it's more than
enough to cause many startup scripts to conclude that the postmaster has
failed. The hacks we'd built up to deal with this eventually became
insupportable.

We're not going back. I suggest you consider ways to adjust your
server-migration process.

regards, tom lane

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Terence Ferraro 2013-02-06 23:47:19 Re: configuring timezone
Previous Message Adrian Klaver 2013-02-06 21:55:41 Re: configuring timezone