-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextensions.json
More file actions
355 lines (355 loc) · 13.4 KB
/
Copy pathextensions.json
File metadata and controls
355 lines (355 loc) · 13.4 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
{
"postgresql_major": 18,
"extensions": [
{
"name": "timescaledb",
"package": "timescaledb",
"control_file": "timescaledb.control",
"shared_preload_libraries": ["timescaledb"],
"create_extension": "CREATE EXTENSION IF NOT EXISTS timescaledb;",
"category": "time-series",
"enabled_by_default": false,
"notes": "Required only for databases using TimescaleDB hypertables or compression."
},
{
"name": "pg_stat_statements",
"package": "postgresql_18",
"control_file": "pg_stat_statements.control",
"shared_preload_libraries": ["pg_stat_statements"],
"create_extension": "CREATE EXTENSION IF NOT EXISTS pg_stat_statements;",
"category": "observability",
"enabled_by_default": false,
"notes": "Core contrib extension available from the PostgreSQL base image."
},
{
"name": "vector",
"package": "pgvector",
"control_file": "vector.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS vector;",
"category": "vector-search",
"enabled_by_default": false,
"notes": "Dense vector type and indexes."
},
{
"name": "vchord",
"package": "vectorchord",
"control_file": "vchord.control",
"shared_preload_libraries": ["vchord"],
"create_extension": "CREATE EXTENSION IF NOT EXISTS vchord;",
"category": "vector-search",
"enabled_by_default": false,
"notes": "VectorChord indexing extension."
},
{
"name": "vchord_bm25",
"package": "vchord-bm25",
"control_file": "vchord_bm25.control",
"shared_preload_libraries": ["vchord_bm25"],
"create_extension": "CREATE EXTENSION IF NOT EXISTS vchord_bm25 CASCADE;",
"category": "sparse-search",
"enabled_by_default": false,
"notes": "BM25 sparse ranking. Usually used with pg_tokenizer."
},
{
"name": "pg_tokenizer",
"package": "pg-tokenizer",
"control_file": "pg_tokenizer.control",
"shared_preload_libraries": ["pg_tokenizer"],
"create_extension": "CREATE EXTENSION IF NOT EXISTS pg_tokenizer;",
"category": "sparse-search",
"enabled_by_default": false,
"notes": "Tokenizer support for BM25 search."
},
{
"name": "age",
"package": "age",
"control_file": "age.control",
"shared_preload_libraries": ["age"],
"create_extension": "CREATE EXTENSION IF NOT EXISTS age;",
"category": "graph",
"enabled_by_default": false,
"notes": "Apache AGE graph database extension."
},
{
"name": "pgmq",
"package": "pgmq",
"control_file": "pgmq.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS pgmq;",
"category": "queue",
"enabled_by_default": false,
"notes": "Postgres-backed message queues."
},
{
"name": "pg_cron",
"package": "pg_cron",
"control_file": "pg_cron.control",
"shared_preload_libraries": ["pg_cron"],
"create_extension": "CREATE EXTENSION IF NOT EXISTS pg_cron;",
"category": "operations",
"enabled_by_default": false,
"notes": "Requires cron.database_name for the database that owns jobs."
},
{
"name": "pg_repack",
"package": "pg_repack",
"control_file": "pg_repack.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS pg_repack;",
"category": "maintenance",
"enabled_by_default": false,
"notes": "Online table and index reorganization."
},
{
"name": "pg_partman",
"package": "pg_partman",
"control_file": "pg_partman.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS pg_partman;",
"category": "partitioning",
"enabled_by_default": false,
"notes": "Partition management extension."
},
{
"name": "pg_ivm",
"package": "pg_ivm",
"control_file": "pg_ivm.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS pg_ivm;",
"category": "views",
"enabled_by_default": false,
"notes": "Incremental materialized view maintenance — refreshes only changed rows instead of full REFRESH. High value for analytics aggregations (finops cost rollups, dashboards) that would otherwise need full recompute on every write."
},
{
"name": "pg_duckdb",
"package": "pg_duckdb",
"control_file": "pg_duckdb.control",
"shared_preload_libraries": ["pg_duckdb"],
"create_extension": "CREATE EXTENSION IF NOT EXISTS pg_duckdb;",
"category": "analytics",
"enabled_by_default": false,
"notes": "DuckDB-powered in-process OLAP analytics. Built against the locked nixos-26.05 DuckDB 1.5.2 library; databases must opt in with shared_preload_libraries and CREATE EXTENSION."
},
{
"name": "wrappers",
"package": "wrappers",
"control_file": "wrappers.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS wrappers;",
"category": "federation",
"enabled_by_default": false,
"notes": "Supabase FDW collection — S3/Garage, Stripe, BigQuery, Firebase, Airtable, Clickhouse, Redis as foreign tables. Useful for finops collector reading from Garage S3 or external billing APIs directly via SQL."
},
{
"name": "rum",
"package": "rum",
"control_file": "rum.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS rum;",
"category": "indexing",
"enabled_by_default": false,
"notes": "RUM index access method — full-text search with timestamp ordering in a single index scan. Faster than GIN + ORDER BY ts_rank for time-sorted full-text queries."
},
{
"name": "hypopg",
"package": "hypopg",
"control_file": "hypopg.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS hypopg;",
"category": "planning",
"enabled_by_default": false,
"notes": "Hypothetical indexes for query planning."
},
{
"name": "pg_hint_plan",
"package": "pg_hint_plan",
"control_file": "pg_hint_plan.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS pg_hint_plan;",
"category": "planning",
"enabled_by_default": false,
"notes": "Planner hints for exceptional query tuning cases."
},
{
"name": "plpgsql_check",
"package": "plpgsql_check",
"control_file": "plpgsql_check.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS plpgsql_check;",
"category": "development",
"enabled_by_default": false,
"notes": "Static analysis and runtime checks for PL/pgSQL."
},
{
"name": "pg_trgm",
"package": "postgresql_18",
"control_file": "pg_trgm.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS pg_trgm;",
"category": "search",
"enabled_by_default": false,
"notes": "Core contrib trigram indexes and fuzzy text matching."
},
{
"name": "unaccent",
"package": "postgresql_18",
"control_file": "unaccent.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS unaccent;",
"category": "search",
"enabled_by_default": false,
"notes": "Core contrib accent-insensitive text normalization."
},
{
"name": "btree_gin",
"package": "postgresql_18",
"control_file": "btree_gin.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS btree_gin;",
"category": "indexing",
"enabled_by_default": false,
"notes": "Core contrib B-tree operator classes for GIN indexes."
},
{
"name": "btree_gist",
"package": "postgresql_18",
"control_file": "btree_gist.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS btree_gist;",
"category": "indexing",
"enabled_by_default": false,
"notes": "Core contrib B-tree operator classes for GiST indexes."
},
{
"name": "pgstattuple",
"package": "postgresql_18",
"control_file": "pgstattuple.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS pgstattuple;",
"category": "maintenance",
"enabled_by_default": false,
"notes": "Core contrib table and index bloat inspection."
},
{
"name": "amcheck",
"package": "postgresql_18",
"control_file": "amcheck.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS amcheck;",
"category": "maintenance",
"enabled_by_default": false,
"notes": "Core contrib index and relation corruption checks."
},
{
"name": "pageinspect",
"package": "postgresql_18",
"control_file": "pageinspect.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS pageinspect;",
"category": "diagnostics",
"enabled_by_default": false,
"notes": "Core contrib low-level page inspection for incident debugging."
},
{
"name": "postgres_fdw",
"package": "postgresql_18",
"control_file": "postgres_fdw.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS postgres_fdw;",
"category": "federation",
"enabled_by_default": false,
"notes": "Core contrib foreign data wrapper for PostgreSQL-to-PostgreSQL access."
},
{
"name": "pgcrypto",
"package": "postgresql_18",
"control_file": "pgcrypto.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS pgcrypto;",
"category": "security",
"enabled_by_default": false,
"notes": "Core contrib cryptographic helpers and random data functions."
},
{
"name": "pg_prewarm",
"package": "postgresql_18",
"control_file": "pg_prewarm.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS pg_prewarm;",
"category": "operations",
"enabled_by_default": false,
"notes": "Core contrib cache warming for important tables and indexes."
},
{
"name": "pgaudit",
"package": "pgaudit",
"control_file": "pgaudit.control",
"shared_preload_libraries": ["pgaudit"],
"create_extension": "CREATE EXTENSION IF NOT EXISTS pgaudit;",
"category": "security",
"enabled_by_default": false,
"notes": "Detailed database audit logging. Preload and configure only where audit volume is acceptable."
},
{
"name": "uuid-ossp",
"package": "postgresql_18",
"control_file": "uuid-ossp.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS \"uuid-ossp\";",
"category": "compat",
"enabled_by_default": false,
"notes": "Legacy compat only. PG18 has gen_random_uuid() (v4) and uuidv7() as built-ins — no extension needed for new code. Enable only for existing apps calling uuid_generate_v4() that cannot be migrated."
},
{
"name": "hstore",
"package": "postgresql_18",
"control_file": "hstore.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS hstore;",
"category": "types",
"enabled_by_default": false,
"notes": "Core contrib key-value store type. Prefer JSONB for new code; enable for apps that use hstore columns."
},
{
"name": "citext",
"package": "postgresql_18",
"control_file": "citext.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS citext;",
"category": "types",
"enabled_by_default": false,
"notes": "Core contrib case-insensitive text type. Useful for email and username columns; simpler than lower() indexes."
},
{
"name": "ltree",
"package": "postgresql_18",
"control_file": "ltree.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS ltree;",
"category": "types",
"enabled_by_default": false,
"notes": "Core contrib hierarchical label tree type and operators. Efficient ancestor/descendant queries without recursive CTEs."
},
{
"name": "intarray",
"package": "postgresql_18",
"control_file": "intarray.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS intarray;",
"category": "types",
"enabled_by_default": false,
"notes": "Core contrib integer array functions and GiST/GIN indexes. Efficient set membership and intersection queries."
},
{
"name": "pg_buffercache",
"package": "postgresql_18",
"control_file": "pg_buffercache.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS pg_buffercache;",
"category": "diagnostics",
"enabled_by_default": false,
"notes": "Core contrib shared buffer cache inspection. Useful for diagnosing what is and isn't cached during performance investigation."
}
]
}