Re: WAL-files is not removing authomaticaly

From: Laurenz Albe <laurenz(dot)albe(at)cybertec(dot)at>
To: Andrew Anderson <forumwriter007(at)gmail(dot)com>
Cc: "pgsql-generallists(dot)postgresql(dot)org" <pgsql-general(at)lists(dot)postgresql(dot)org>
Subject: Re: WAL-files is not removing authomaticaly
Date: 2021-03-16 13:53:10
Message-ID: 2e2b5960cc30345c328206ea374f2faab481a644.camel@cybertec.at
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Tue, 2021-03-16 at 15:31 +0200, Andrew Anderson wrote:
> вт, 16 мар. 2021 г. в 14:21, Laurenz Albe <laurenz(dot)albe(at)cybertec(dot)at>:
> > On Tue, 2021-03-16 at 09:49 +0200, Andrew Anderson wrote:
> > > 2021-03-16 09:44:03.997 EET [97581] [] [] [] []DEBUG: attempting to remove WAL segments older than log file 000000000000013E00000097
> >
> > That was the entry I was hoping to see.
> >
> > So, are all older WAL segments deleted or recycled?
> > Is that a reasonably recent WAL segment?
>
> but there is files with very old time of creation:
> $ ls -lart pg_wal/
> total 30933220
> -rw------- 1 postgres postgres 299 Dec 30 05:44 000000020000013E00000097.00000108.backup
> -rw------- 1 postgres postgres 16777216 Dec 30 06:12 000000010000000000000001
> -rw------- 1 postgres postgres 16777216 Dec 30 06:12 000000020000013E00000098
> -rw------- 1 postgres postgres 44 Dec 30 06:29 00000002.history
> -rw------- 1 postgres postgres 16777216 Dec 30 06:29 000000020000013E00000099
> -rw------- 1 postgres postgres 16777216 Dec 30 09:01 000000020000013E0000009A
> -rw------- 1 postgres postgres 16777216 Dec 30 09:57 000000020000013E0000009B
> ..... till now .....
> -rw------- 1 postgres postgres 16777216 Mar 16 12:59 0000000200000145000000F2
> -rw------- 1 postgres postgres 16777216 Mar 16 13:50 0000000200000145000000F3
> -rw------- 1 postgres postgres 16777216 Mar 16 14:39 0000000200000145000000F4
> drwx------ 2 postgres postgres 118784 Mar 16 14:39 archive_status
> -rw------- 1 postgres postgres 16777216 Mar 16 15:19 0000000200000145000000F6
> drwx------ 3 postgres postgres 94208 Mar 16 15:19 .
> -rw------- 1 postgres postgres 16777216 Mar 16 15:25 0000000200000145000000F5
> drwx------ 19 postgres postgres 4096 Mar 16 15:25 ..
>
> and on master current WAL-file:
> postgres=# select pg_walfile_name(pg_current_wal_lsn());
> pg_walfile_name
> --------------------------
> 0000000200000145000000F6
> (1 row)

These things hold up deletion of WAL segments:

- checkpoint (not the problem here)

- replication slot (you said that is not it)

- archiver failure (also doesn't seem to be the problem)

- wal_keep_segments / wal_keep_size: what is your setting?

Yours,
Laurenz Albe
--
Cybertec | https://www.cybertec-postgresql.com

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Andrew Anderson 2021-03-16 14:13:37 Re: WAL-files is not removing authomaticaly
Previous Message Andrew Anderson 2021-03-16 13:31:02 Re: WAL-files is not removing authomaticaly