why wal_max_size does not work?

From: Fan Liu <fan(dot)liu(at)ericsson(dot)com>
To: PostgreSQL mailing lists <pgsql-bugs(at)lists(dot)postgresql(dot)org>
Subject: why wal_max_size does not work?
Date: 2020-03-24 12:06:35
Message-ID: HE1PR0701MB25697686307833CC845456A49EF10@HE1PR0701MB2569.eurprd07.prod.outlook.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

Hello,

We are working on PostgreSQL 10.10. We recently met "no space left".
After checking, the WAL file folder is full.
But we have wal_max_size = 1G configured. I am not that understand why this can happen.
Is this a BUG?

=== LOG ===
## /var/lib/postgresql/data is a network storage with 4G space

pg-0:/var/lib/postgresql/data/pgdata/pg_wal # ls -alh
total 3.9G
drwx------ 3 postgres postgres 20K Mar 21 02:31 .
drwx------ 19 postgres postgres 4.0K Mar 21 02:31 ..
-rw------- 1 postgres postgres 16M Feb 20 14:05

eric-adp-ss7-db-pg-0:/var/lib/postgresql/data/pgdata # du -h -d1
3.9G ./pg_wal
600K ./global
.....
3.9G .

cat postgresql.conf
# Do not edit this file manually!
# It will be overwritten by Patroni!
include 'postgresql.base.conf'

cluster_name = 'eric-adp-ss7-db-pg'
hot_standby = 'on'
listen_addresses = '*'
logging_collector = 'off'
max_connections = '100'
max_locks_per_transaction = '64'
max_prepared_transactions = '0'
max_replication_slots = '10'
max_wal_senders = '10'
max_worker_processes = '8'
port = '5432'
track_commit_timestamp = 'off'
wal_keep_segments = '8'
wal_level = 'replica'
wal_log_hints = 'on'
hba_file = '/var/lib/postgresql/data/pgdata/pg_hba.conf'
ident_file = '/var/lib/postgresql/data/pgdata/pg_ident.conf'

postgres=# SHOW max_wal_size;
max_wal_size
--------------
1GB
(1 row)

BRs,
Fan Liu
ADP Document Database PG

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Sergei Kornilov 2020-03-24 12:32:46 Re: why wal_max_size does not work?
Previous Message PG Bug reporting form 2020-03-24 12:06:01 BUG #16314: Database Cache Hit Ratio (Warning)