min_parallel_relation_size
Read PG 9.6 manual ↗Sets the minimum size of relations to be considered for parallel scan.
Historical documentation for a PostgreSQL version that is no longer supported.
- Type
- integer
- Context
- user
- Measured default
- 8 MiB (1024 × 8kB)
- Unit
- 8kB
- Metadata snapshot
- 9.6
Definition PG 9.6 manual
Sets the minimum size of relations to be considered for parallel scan. The default is 8 megabytes (8MB).
Measured default history
| Version interval | Default |
|---|---|
| 9.6 – 9.6 | 8 MiB (1024 × 8kB) |
Authored guidance from the GUC source snapshot; the version-specific manual above is the definition reference. View source ↗
How it works
PostgreSQL describes min_parallel_relation_size as follows: “Sets the minimum size of relations to be considered for parallel scan.” It can be changed per session, which makes plan or behavior comparisons possible without changing every workload. The atlas measures it in PG9.6; boot_val is the compiled or initialized baseline, not proof of a running cluster's effective setting.
PostgreSQL 9.6 used one relation-size threshold when deciding whether a parallel scan was worth considering. PostgreSQL 10 split the control into min_parallel_table_scan_size and min_parallel_index_scan_size, allowing heap and index access paths to have different break-even points.
Read it together with min_parallel_table_scan_size, min_parallel_index_scan_size, max_parallel_workers_per_gather, enable_parallel_append. Check SHOW and pg_settings on the target server, verify the source and pending_restart fields, and compare workload, logs, and resource metrics before and after any change.
Operational considerations
Treating the measured boot_val for min_parallel_relation_size as proof of the effective value on an initialized or managed cluster.
Applying a change as though it were immediate while pg_settings reports user context.
Changing this setting in isolation without checking the linked limits, observability, and rollback path.
Copying the removed name into a modern postgresql.conf instead of migrating to its documented successor.
Workload guidance
OLAP: For an upgrade or analytical estate, inventory every generated configuration before cutover. Map the old control to its successor and compare plans, throughput, WAL, or logging behavior rather than assuming the old numeric value is portable.
OLTP: Do not add this retired name to a current OLTP configuration. Translate its intent to the documented successor, test the migration under connection and write concurrency, and remove stale automation that still emits it.
SMALL: Delete the obsolete override after recording why it existed. On a small node, prefer the successor's default until measurements justify a new value; an unknown startup parameter can otherwise stop the server.
Version history 2
- PG 9.6 → 10removed
- PG 9.5 → 9.6added
Related entries
Further reading
Definition snapshot: english-manuals:7bd0c22c52b68643cf3ea778ed9… · English manual source