Skip to content

Commit

Permalink
Merge pull request #2820 from neondatabase/dprice-add-pg-repack
Browse files Browse the repository at this point in the history
docs: add pg repack
  • Loading branch information
danieltprice authored Jan 22, 2025
2 parents 7208782 + 22291a3 commit a55bc27
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion content/docs/extensions/extensions-intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ Explore supported Postgres extensions by category. Also see:
- [List view of supported extensions and versions](/docs/extensions/pg-extensions)
- [Install an extension](/docs/extensions/pg-extensions#install-an-extension)
- [Update an extension](/docs/extensions/pg-extensions#update-an-extension-version)
- [Request extension support](/docs/extensions/pg-extensions#request-extension-support)

Do you need an extension we don’t support yet? [Let us know](/docs/extensions/pg-extensions#request-extension-support).

## AI / Machine Learning

Expand Down Expand Up @@ -159,6 +160,8 @@ Explore supported Postgres extensions by category. Also see:

<a href="/docs/extensions/pg_prewarm" description="Allows manual preloading of relation data into the Postgres buffer cache, reducing access times for frequently queried tables" icon="table">pg_prewarm</a>

<a href="https://github.com/reorg/pg_repack" description="Lets you remove bloat from tables and indexes, and optionally restore the physical order of clustered indexes" icon="table">pg_repack</a>

<a href="https://github.com/ChenHuajun/pg_roaringbitmap" description="Implements Roaring Bitmaps in Postgres for efficient storage and manipulation of bit sets" icon="table">pg_roaringbitmap</a>

<a href="https://github.com/postgrespro/rum" description="Provides an access method to work with a RUM index, designed to speed up full-text searches" icon="table">rum</a>
Expand Down
1 change: 1 addition & 0 deletions content/docs/extensions/pg-extensions.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ Do you need an extension we don’t support yet? [Let us know](#request-extensio
| [pg_mooncake](https://github.com/Mooncake-Labs/pg_mooncake) | - | 0.0.1 | 0.0.1 | 0.0.1 | This extension is **experimental**. Using a separate, dedicated Neon project is recommended. Run `SET neon.allow_unstable_extensions='true';` before installing. See the [YouTube demo](https://youtu.be/QDNsxw_3ris?feature=shared&t=2048) and the [pg_mooncake documentation](https://pgmooncake.com/docs). |
| [pg_partman](https://github.com/pgpartman/pg_partman) | 5.1.0 | 5.1.0 | 5.1.0 | 5.1.0 | |
| [pg_prewarm](/docs/extensions/pg_prewarm) | 1.2 | 1.2 | 1.2 | 1.2 | |
| [pg_repack](https://github.com/reorg/pg_repack) | 1.5.2 | 1.5.2 | 1.5.2 | 1.5.2 | Available only on paid Neon plans. To install `pg_repack`, it must first be enabled by Neon Support. [Open a support ticket](https://console.neon.tech/app/projects?modal=support) with your endpoint ID and database name to request it. After it's enabled, you'll need to restart your compute before running `CREATE EXTENSION pg_repack;` To use `pg_repack`, you will need to [install the pg_repack CLI](https://reorg.github.io/pg_repack/#download). |
| [pg_roaringbitmap](https://github.com/ChenHuajun/pg_roaringbitmap) | 0.5 | 0.5 | 0.5 | 0.5 | Install with `CREATE EXTENSION roaringbitmap;` |
| [pg_session_jwt](/docs/guides/neon-authorize#how-the-pgsessionjwt-extension-works) | 0.1.2 | 0.1.2 | 0.1.2 | 0.1.2 | This extension is used by [Neon Authorize](/docs/guides/neon-authorize). |
| [pg_stat_statements](/docs/extensions/pg_stat_statements) | 1.9 | 1.10 | 1.10 | 1.11 | |
Expand Down
1 change: 1 addition & 0 deletions content/docs/extensions/pg_mooncake.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,3 +153,4 @@ LIMIT 10;
- [Repository](https://github.com/Mooncake-Labs/pg_mooncake)
- [Documentation](https://pgmooncake.com/docs)
- [Architecture](https://www.mooncake.dev/blog/how-we-built-pgmooncake)
- [YouTube demo](https://youtu.be/QDNsxw_3ris?feature=shared&t=2048)
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,8 @@ const DEFAULT_DATA = {
'pg_anon',
'pg_bigm',
'pg_buffercache',
'pg_cron',
'pg_freespacemap',
'pg_proctab',
'pg_repack',
'pg_similarity',
'pgSphere',
'pg_surgery',
Expand Down Expand Up @@ -232,7 +230,7 @@ const ExtensionRequest = ({
if (!isRecognized && email) {
window.zaraz.track('identify', { email });
}
window.zaraz.track('Extension Requested', {"extension_name": selected});
window.zaraz.track('Extension Requested', { extension_name: selected });
}
setRequestComplete(true);
}
Expand Down

0 comments on commit a55bc27

Please sign in to comment.