pg_orca
pg_orca : ORCA query optimizer as a PostgreSQL extension
Overview
| ID | Extension | Package | Version | Category | License | Language |
|---|---|---|---|---|---|---|
| 2540 | pg_orca | pg_orca | 1.0.0 |
OLAP | Apache-2.0 | C++ |
| Attribute | Has Binary | Has Library | Need Load | Has DDL | Relocatable | Trusted |
|---|---|---|---|---|---|---|
| --sLd-- | No | Yes | Yes | Yes | no | no |
| Relationships | |
|---|---|
| See Also | pg_hint_plan hypopg index_advisor online_advisor pg_qualstats pg_stat_plans plan_filter pg_track_optimizer pg_strom pg_regresql |
Packages
| Type | Repo | Version | PG Major Compatibility | Package Pattern | Dependencies |
|---|---|---|---|---|---|
| EXT | PIGSTY | 1.0.0 |
18 17 16 15 14 | pg_orca |
- |
| RPM | PIGSTY | 1.0.0 |
18 17 16 15 14 | pg_orca_$v |
- |
| DEB | PIGSTY | 1.0.0 |
18 17 16 15 14 | postgresql-$v-pg-orca |
- |
| Linux / PG | PG18 | PG17 | PG16 | PG15 | PG14 |
|---|---|---|---|---|---|
| el8.x86_64 | PIGSTY 1.0.0 | N/A | N/A | N/A | N/A |
| el8.aarch64 | PIGSTY 1.0.0 | N/A | N/A | N/A | N/A |
| el9.x86_64 | PIGSTY 1.0.0 | N/A | N/A | N/A | N/A |
| el9.aarch64 | PIGSTY 1.0.0 | N/A | N/A | N/A | N/A |
| el10.x86_64 | PIGSTY 1.0.0 | N/A | N/A | N/A | N/A |
| el10.aarch64 | PIGSTY 1.0.0 | N/A | N/A | N/A | N/A |
| d12.x86_64 | PIGSTY 1.0.0 | N/A | N/A | N/A | N/A |
| d12.aarch64 | PIGSTY 1.0.0 | N/A | N/A | N/A | N/A |
| d13.x86_64 | PIGSTY 1.0.0 | N/A | N/A | N/A | N/A |
| d13.aarch64 | PIGSTY 1.0.0 | N/A | N/A | N/A | N/A |
| u22.x86_64 | PIGSTY 1.0.0 | N/A | N/A | N/A | N/A |
| u22.aarch64 | PIGSTY 1.0.0 | N/A | N/A | N/A | N/A |
| u24.x86_64 | PIGSTY 1.0.0 | N/A | N/A | N/A | N/A |
| u24.aarch64 | PIGSTY 1.0.0 | N/A | N/A | N/A | N/A |
| u26.x86_64 | PIGSTY 1.0.0 | N/A | N/A | N/A | N/A |
| u26.aarch64 | PIGSTY 1.0.0 | N/A | N/A | N/A | N/A |
Source
github.com/quantumiodb/pgorca
pg_orca-1.0.0.tar.gz
Install
Make sure PGDG and PIGSTY repo available:
Install this extension with pig:
Config this extension to shared_preload_libraries:
Create this extension with:
Usage
Sources: pgorca README, entrypoint/GUC source, control file.
pg_orca plugs the ORCA cost-based optimizer from the Greenplum/Apache Cloudberry lineage into a standard PostgreSQL 18 server. The upstream README describes this project as PostgreSQL 18-only, and the local package metadata also marks it for PG18 only.
Enable ORCA For A Session
CREATE EXTENSION loads the library in the current session, so the pg_orca.* GUCs and planner hook are available immediately:
If ORCA cannot handle a query, the README says it falls back to the standard PostgreSQL planner automatically. Turn on fallback logging while validating a workload:
Preload For New Connections
For automatic planner-hook loading in later sessions, upstream recommends session_preload_libraries, not shared_preload_libraries:
Existing sessions are unaffected until they reconnect. If another session preload library is already configured, include both values explicitly:
Role-local and cluster-wide scopes are also valid:
Tuning And Diagnostics
The README documents these main GUCs:
pg_orca.enable_orca: enable ORCA; defaultoff.pg_orca.trace_fallback: log fallback to the standard planner; defaultoff.optimizer_segments: segment count for costing; default1.optimizer_sort_factor: sort cost scaling; default1.0.optimizer_metadata_caching: cache relation metadata; defaulton.optimizer_mdcache_size: metadata cache size in KB; default16384.optimizer_search_strategy_path: optional custom search strategy XML path.
The entrypoint source also defines additional ORCA tuning and debug GUCs such as optimizer_join_order, pg_orca.join_order_dynamic_threshold, pg_orca.cost_model, and optimizer_print_*. Treat those as workload/debug knobs and validate plans before keeping them in a persistent database setting.
Caveats
- PostgreSQL 18 only.
- Use
session_preload_libraries = 'pg_orca'for automatic loading in new sessions. - ORCA is disabled by default after loading; set
pg_orca.enable_orca = on. - Fallback to the PostgreSQL planner is expected for unsupported queries; enable
pg_orca.trace_fallbackwhen checking coverage.