-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMETA.json
More file actions
58 lines (58 loc) · 1.78 KB
/
Copy pathMETA.json
File metadata and controls
58 lines (58 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "pg_orca",
"abstract": "ORCA query optimizer as a PostgreSQL extension",
"description": "Plugs the Apache Cloudberry / Greenplum ORCA cost-based optimizer into single-node PostgreSQL 18 via planner_hook. ORCA operates on an intermediate XML-based representation (DXL); if it cannot handle a query it falls back to the standard PG planner automatically. Useful for analytical workloads where ORCA's transformation-based search and cost model produce better plans than PG's standard optimizer (TPC-H, TPC-DS, many-relation joins).",
"version": "1.0.0",
"maintainer": "Jianghua Yang <yjhjstz@gmail.com>",
"license": "apache_2_0",
"provides": {
"pg_orca": {
"abstract": "ORCA query optimizer planner_hook for PostgreSQL 18",
"file": "pg_orca.control",
"docfile": "README.md",
"version": "1.0.0"
}
},
"prereqs": {
"runtime": {
"requires": {
"PostgreSQL": "18.0.0"
},
"recommends": {
"xerces-c": "3.2.0"
}
},
"configure": {
"requires": {
"cmake": "3.20.0"
}
}
},
"resources": {
"homepage": "https://github.com/quantumiodb/pgorca",
"bugtracker": {
"web": "https://github.com/quantumiodb/pgorca/issues"
},
"repository": {
"url": "git://github.com/quantumiodb/pgorca.git",
"web": "https://github.com/quantumiodb/pgorca",
"type": "git"
}
},
"generated_by": "Jianghua Yang",
"meta-spec": {
"version": "1.0.0",
"url": "https://pgxn.org/meta/spec.txt"
},
"tags": [
"optimizer",
"planner",
"cbo",
"cost-based-optimizer",
"orca",
"greenplum",
"cloudberry",
"olap",
"analytics"
]
}