Hi Scott, hi Yambu, > On 07. Dec, 2020, at 15:11, Scott Ribe <scott_ribe@xxxxxxxxxxxxxxxx> wrote: > >> On Dec 7, 2020, at 7:02 AM, Paul Förster <paul.foerster@xxxxxxxxx> wrote: >> >> in my understanding, this is only true if you don't use replication slots. If you use replication slots then the primary should know when a WAL file is no longer needed and abandoned or ready to be recycled. > > I don't think OP is talking about the WAL files PG is managing; I think he's talking about WAL files copied into an archive directory. if those files already archived to some destination are referred to, then yes, you can do with them whatever you want. They can be removed if they are not needed for a PITR. For example, we remove them time-based. Files older than a certain number of days are removed (cron job, note: the job only removes files in the archive destination, NOT in ${PGDATA}/pg_wal). Cheers, Paul