Lucas <root(at)sud0(dot)nz> writes:
> My /pgsql/14/main/pg_wal directory is filling up. The server is not respecting the wal_keep_size = 100GB. I have no replication slots in this server, and I have already restarted PostgreSQL.
> I don’t know what else to look for. Would appreciate any help.
> archive_mode = on
> archive_command = '/pgsql/pg-archive-wal-to-slaves.sh "%p"'
You have archive_mode on, so WAL files will not be removed until
your archive_command reports success. Poke around in what that's
doing.
regards, tom lane