Обсуждение: Seems like a large amount of xlog files

Поиск
Список
Период
Сортировка

Seems like a large amount of xlog files

От
Michael Holt
Дата:
We're trying to do some performance tuning on a couple of postgres boxes and I've noticed there seems to be a lot of activity in the pg_xlog folder. There seems to consitently be 132 files with many being written almost every minute. Looking just now I see 40 written in the last minute and 48 in the minute before that. I'm having some difficulty determining why there are so many WAL files being written so frequently as this is normally a low-write/high read server. There are some things causing implicit transactions in some old code, but they do not actually write to any tables. So i have two questions: 1) Does simply running a transaction (implicit or explicit) cause writing to the WAL? 2) Is there any simple way to track what may be causing WAL writes?


Alternatively, is there a simple way to see what is being recorded in these files?

--
Michael Holt, Database Administrator  |  A.E.R.S. & TERAPEAK
2307-4464 Markham Street, Victoria, BC, CANADA V8Z 7X8
+1 250 483 3271 (FAX)
www.terapeak.com | www.aers.ca | facebook | twitter

Re: Seems like a large amount of xlog files

От
Fujii Masao
Дата:
On Wed, May 25, 2011 at 8:19 AM, Michael Holt <michael@aers.ca> wrote:
>
> We're trying to do some performance tuning on a couple of postgres boxes and I've noticed there seems to be a lot of
activityin the pg_xlog folder. There seems to consitently be 132 files with many being written almost every minute.
Lookingjust now I see 40 written in the last minute and 48 in the minute before that. I'm having some difficulty
determiningwhy there are so many WAL files being written so frequently as this is normally a low-write/high read
server.There are some things causing implicit transactions in some old code, but they do not actually write to any
tables.So i have two questions: 1) Does simply running a transaction (implicit or explicit) cause writing to the WAL?
2)Is there any simple way to track what may be causing WAL writes? 

Is archive_timeout more than zero in your setting?
If yes, that setting might have caused such a large number of
WAL files.

Regards,

--
Fujii Masao
NIPPON TELEGRAPH AND TELEPHONE CORPORATION
NTT Open Source Software Center

Re: Seems like a large amount of xlog files

От
Fujii Masao
Дата:
CC to pgsql-admin@postgresql.org

On Wed, May 25, 2011 at 5:10 PM, Michael Holt <michael@aers.ca> wrote:
> archive_timeout is not set. The default is to have it off right?

Yes.

My another guess is that those many files were generated by
initial data load and have remained up to now. No?

Anyway, you can check whether your system is still generating
so many WAL files now, by periodically calling
pg_current_xlog_location(). This function returns the current
WAL write location, so if the rate of increase of that location
is small, you don't need to worry about the number of files.

Regards,

--
Fujii Masao
NIPPON TELEGRAPH AND TELEPHONE CORPORATION
NTT Open Source Software Center