Skip to content

Commit 9c620cb

Browse files
Merge pull request #6570 from EnterpriseDB/release/2025-02-28a
Release: 2025-02-28a
2 parents 341d8be + f71201e commit 9c620cb

File tree

31 files changed

+289
-65
lines changed

31 files changed

+289
-65
lines changed

advocacy_docs/edb-postgres-ai/ai-accelerator/installing/complete.mdx

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: "Completing and verifying the extension installation"
33
navTitle: "Completing the installation"
44
description: "Completing and verifying the installation of the AI Database and File System extensions."
5+
deepToC: true
56
---
67

78
### Installing the AI Database extension
@@ -15,6 +16,22 @@ CREATE EXTENSION
1516
edb=#
1617
```
1718

19+
#### Proxy settings
20+
21+
If you are using a HTTP proxy, you may need to set the `HTTP_PROXY` and `HTTPS_PROXY` environment variables in Postgres's environment. You can do this by adding the following lines to the `environment` file in the `main` directory of the Postgres data directory.
22+
23+
For example, on Ubuntu with Community Postgres, the `environment` file is located at `/etc/postgresql/16/main/environment`. Run the following commands to add the proxy settings to the `environment` file and restart the Postgres service.
24+
25+
```bash
26+
echo "HTTP_PROXY = 'http://<yourproxysettings>/'" | sudo tee -a /etc/postgresql/16/main/environment
27+
echo "HTTPS_PROXY = 'http://<yourproxysettings>/'" | sudo tee -a /etc/postgresql/16/main/environment
28+
sudo systemctl restart postgresql@16-main
29+
```
30+
31+
Replace `<yourproxysettings>` with your proxy settings. If you are using a different version of Postgres, replace `16` with your version number. Consult the documentation for your Postgres distribution for the location of the `environment` file.
32+
33+
Airgapped environments are not supported at this time.
34+
1835
### Installing the File System extension
1936

2037
The File System extension is an extension that provides a set of functions to interact with the file system from within the database. The extension is installed using the `CREATE EXTENSION` command.

advocacy_docs/edb-postgres-ai/ai-accelerator/models/using-models.mdx

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ Pipelines has a model registry that manages configured instances of models. Any
88

99
## Discover the preloaded models
1010

11-
Pipelines comes with a set of pre-created models that you can use out of the box.
11+
Pipelines comes with a set of pre-created models that you can use out of the box.
1212

1313
To find them, you can run the following query:
1414

1515
```sql
1616
SELECT * FROM aidb.list_models();
1717
```
1818

19-
This will return a list of all the models that are currently created in the system. If you have not created any models, you'll see the default models that come with Pipelines.
19+
This will return a list of all the models that are currently configured in the system. If you have not created any models, you'll see the default models that come with Pipelines.
2020

2121
```text
2222
name | provider | options
@@ -27,7 +27,15 @@ This will return a list of all the models that are currently created in the syst
2727
dummy | dummy | {"config={}"}
2828
```
2929

30-
The `bert`, `clip`, and `t5` models are all pre-created and ready to use. The `dummy` model is a placeholder model that can be used for testing purposes.
30+
The `bert`, `clip`, and `t5` models are all pre-configured and ready to use. The `dummy` model is a placeholder model that can be used for testing purposes.
31+
32+
!!! note First use of local models
33+
The first time you use any of the local models, the model will be downloaded from [HuggingFace](https://huggingface.co/). The model is then run locally.
34+
Subsequent uses of the model will be faster, as the model will be cached locally.
35+
36+
If you use a proxy, ensure that it is [configured on the Postgres server](../installing/complete#proxy-settings).
37+
38+
!!!
3139

3240
## Creating a Model
3341

advocacy_docs/pg_extensions/extensionrefs.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@
102102
"edbspl": "https://www.enterprisedb.com/docs/epas/latest/application_programming/epas_compat_spl/02_spl_programs/",
103103
"spl_check": "https://www.enterprisedb.com/docs/pg_extensions/spl_check/",
104104
"parallel_clone": "undefined",
105+
"pg_global_temporary_tables_(pgtt)":"https://www.enterprisedb.com/docs/pg_extensions/pgtt/",
105106
"pglogical_3.x": "https://www.enterprisedb.com/docs/pgd/3.7/pglogical/",
106107
"refdata": "https://www.enterprisedb.com/docs/pg_extensions/advanced_storage_pack/",
107108
"postgis": "https://www.enterprisedb.com/docs/postgis/latest/",

advocacy_docs/pg_extensions/index.mdx

Lines changed: 2 additions & 1 deletion
Large diffs are not rendered by default.

advocacy_docs/pg_extensions/index.mdx.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ navigation:
1010
- query_advisor
1111
- wait_states
1212
- pgaudit
13+
- pgtt
1314
- pg_failover_slots
1415
- pgRouting
1516
- pg_squeeze

advocacy_docs/pg_extensions/ldap_sync/installing.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Before you begin the installation process:
2222

2323
- Install [pg_cron](https://github.com/citusdata/pg_cron)
2424

25-
- Install plpython3u utility to run ldap2pg
25+
- Install the [plpython3u](https://www.postgresql.org/docs/current/plpython.html) procedural language to run ldap2pg. Note that `plpython3u` is a potential security risk as it's an “untrusted” language.
2626

2727
- Install [ldap2pg](https://ldap2pg.readthedocs.io/en/latest/).
2828

advocacy_docs/pg_extensions/pg_failover_slots/rel_notes/index.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ about the release that introduced the feature.
1515
| Version | Release Date |
1616
| --------------------------- | ------------ |
1717
| [1.1.0](pg_failover_slots_1.1.0_rel_notes) | 27 Aug 2024 |
18+
| [1.0.1](pg_failover_slots_1.0.1_rel_notes) | 07 Jun 2023 |
1819
| [1.0.0](pg_failover_slots_1.0.0_rel_notes) | 31 Mar 2023 |
1920

2021

2122

23+
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
title: Release notes for PG Failover Slots version 1.0.1
3+
navTitle: "Version 1.0.1"
4+
---
5+
6+
This release of PG Failover Slots includes:
7+
8+
| Type | Description |
9+
| ------- | --------------------------------------- |
10+
| Bug fix | Fix support for PG13 and older. The missing interfaces caused either disconnects or outright crashes on PG13 and older. |
11+
| Improvement | Test compatibility improvements. Tests now work on PG11, and are more resilient to testing on slower machines. |
12+
| Improvement | PG16 compatibility improvements |
13+
| General | Various minor cleanups |

advocacy_docs/pg_extensions/pgrouting/configuring.mdx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@ title: Configuring pgRouting
33
navTitle: Configuring
44
---
55
!!! Note
6-
`pgRouting` depends on PostGIS. To install PostGIS, see [EDB PostGIS](https://www.enterprisedb.com/docs/postgis/latest/)
6+
pgRouting depends on PostGIS. To install PostGIS, see [EDB PostGIS](https://www.enterprisedb.com/docs/postgis/latest/)
77

8-
To enable `pgRouting`, create the extension.
8+
To enable pgRouting, create the extension:
99

10+
```
1011
CREATE EXTENSION pgrouting;
12+
```
1113

12-
For additional configuration information, see the [Configuring pgRouting](https://docs.pgrouting.org/latest/en/pgRouting-installation.html#configuring) in the official documentation.
14+
For additional configuration information, see [Configuring pgRouting](https://docs.pgrouting.org/latest/en/pgRouting-installation.html#configuring) in the official pgRouting documentation.

advocacy_docs/pg_extensions/pgrouting/index.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ directoryDefaults:
1010
product: pgRouting
1111
---
1212

13-
`pgRouting` is an extension released as open source software under the PostgreSQL License.
13+
pgRouting is an extension released as open source software under the PostgreSQL License.
1414

15-
`pgRouting` provides geospatial routing functionality.
15+
pgRouting provides geospatial routing functionality.
1616

17-
For more information about `pgRouting`, see:
17+
For more information about pgRouting, see:
1818

1919
- [Installing pgRouting](installing.mdx)
2020
- [Configuring pgRouting](configuring.mdx)

0 commit comments

Comments
 (0)