You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|[shared_buffers](https://www.postgresql.org/docs/current/runtime-config-resource.html#GUC-SHARED-BUFFERS)| 1GB | 128MB | Lower than typical PostgreSQL recommendations to give osm2pgsql priority to RAM. |
|[maintenance_work_mem](https://www.postgresql.org/docs/current/runtime-config-resource.html#GUC-MAINTENANCE-WORK-MEM)| 10GB | 64MB | Improves `CREATE INDEX`. (The maximum setting on Windows is 1GByte. Do not set this any higher than 256 MB with PostgreSQL 18, because of [a bug in that version](https://www.linkedin.com/pulse/postgis-day-2025-postgres-18-builds-gin-indexes-3x-fast-greg-smith-7m3ze).) |
120
+
|[maintenance_work_mem](https://www.postgresql.org/docs/current/runtime-config-resource.html#GUC-MAINTENANCE-WORK-MEM)| 10GB | 64MB | Improves `CREATE INDEX`. (The maximum setting on Windows is 1GByte.) |
|[wal_level](https://www.postgresql.org/docs/current/runtime-config-wal.html#GUC-WAL-LEVEL)| minimal | replica | Reduces WAL activity if replication is not required during data load. Must also set `max_wal_senders=0`. |
123
123
|[checkpoint_timeout](https://www.postgresql.org/docs/current/runtime-config-wal.html#GUC-CHECKPOINT-TIMEOUT)| 60min | 5min | Increasing this value reduces time-based checkpoints and increases time to restore from PITR |
0 commit comments