block_size
Read PG 18 manual ↗Reports the size of a disk block.
- Type
- integer
- Context
- internal
- Measured default
- 8192
- Unit
- —
- Metadata snapshot
- 18
Definition PG 18 manual
Reports the size of a disk block. It is determined by the value of BLCKSZ when building the server. The default value is 8192 bytes. The meaning of some configuration variables (such as shared_buffers) is influenced by block_size. See Section 19.4 for information.
Measured default history
| Version interval | Default |
|---|---|
| 9.0 – 19 | 8192 |
Authored guidance from the GUC source snapshot; the version-specific manual above is the definition reference. View source ↗
How it works
Shows the size of a disk block. It is read-only and cannot be changed with SET or configuration-file edits.
It reflects BLCKSZ, normally 8 KiB, chosen when PostgreSQL was built; all heap and index page layouts depend on it.
Interpret it with wal_block_size, wal_segment_size, segment_size. Applications and operations tooling may read block_size for capability or environment detection, but cannot SET it; cross-cluster comparisons must account for build, initdb, and current-database differences.
Operational considerations
Trying to change read-only block_size with SET or a configuration file.
Assuming every cluster, database, or vendor build reports the same value.
Ignoring the value in file-format or feature-compatibility checks.
Treating reported metadata as a performance target instead of an environment fact.
Workload guidance
OLAP: Not tunable. Use block_size to verify format, build, or resource assumptions on analytical nodes and keep every read/write candidate compatible.
OLTP: Not tunable. Record block_size as a deployment/capability fact; if it is unexpected, fix the binary, initdb, or database-creation process rather than trying SET.
SMALL: Not tunable. Preserve it in inventory and incident reports; do not custom-build or rebuild merely to change it without a demonstrated compatibility need.
Version history 3
- PG 16 → 17changed
- PG 13 → 14changed
- PG 9.5 → 9.6changed
Related entries
Further reading
Definition snapshot: english-manuals:53a60b4c7f4c056574d438b758f… · English manual source