duckil_plm/fems-timescaledb/postgresql.conf

31 lines
609 B
Plaintext
Raw Normal View History

2024-11-19 06:13:58 +09:00
# fems-timescaledb/postgresql.conf
2024-11-20 17:21:45 +09:00
listen_addresses = '*'
port = 5433
max_connections = 100
shared_buffers = 128MB
shared_preload_libraries = 'timescaledb'
# TimescaleDB 설정
timescaledb.telemetry_level = 'off'
timescaledb.max_background_workers = 8
# 메모리 설정
work_mem = '16MB'
maintenance_work_mem = '64MB'
dynamic_shared_memory_type = posix
# WAL 설정
wal_level = 'replica'
max_wal_size = 1GB
min_wal_size = 80MB
# 로깅 설정
log_timezone = 'Asia/Seoul'
2024-11-18 19:51:13 +09:00
datestyle = 'iso, ymd'
2024-11-19 06:19:05 +09:00
timezone = 'Asia/Seoul'
2024-11-20 17:21:45 +09:00
# 로케일 설정
lc_messages = 'C'
lc_monetary = 'C'
lc_numeric = 'C'
lc_time = 'C'