Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release: 2025-01-29a #6439

Merged
merged 29 commits into from
Jan 29, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
8d89aff
EPAS - Adding predefined roles
nidhibhammar Jan 22, 2025
bc038bf
MP: terminated DDL assessment due to EPAS-reserved words
gvasquezvargas Jan 23, 2025
5490daa
Apply suggestions from Umang's review
gvasquezvargas Jan 24, 2025
41b6eb6
Merge pull request #6424 from EnterpriseDB/mp/reserved-words-issue
gvasquezvargas Jan 27, 2025
964e94d
Update using-models.mdx - typo fix
djw-m Jan 27, 2025
0a397a8
Merge pull request #6432 from EnterpriseDB/djw-m-patch-aidb
djw-m Jan 27, 2025
7b87e50
Update openai-completions.mdx
bilge-ince Jan 27, 2025
d253045
Update openai-completions.mdx
bilge-ince Jan 27, 2025
023d9a4
Merge pull request #6433 from bilge-ince/patch-1
djw-m Jan 27, 2025
195b382
NET connector: docs version consolidation
gvasquezvargas Jan 23, 2025
8083ae9
Fixed local build
gvasquezvargas Jan 23, 2025
b58f154
Added consolidation redirects and fixed a link
gvasquezvargas Jan 23, 2025
84fd96f
Added release dates
gvasquezvargas Jan 24, 2025
84dd2f1
Added release dates to each version's rn
gvasquezvargas Jan 24, 2025
2333bb5
NET: Updated to compatibility page
gvasquezvargas Jan 27, 2025
35e2927
Implemented feedback from Xavier
gvasquezvargas Jan 27, 2025
cd1ea9d
Streamlined epas version in table
gvasquezvargas Jan 27, 2025
5efe4b0
MTK: clarify that 2 drivers are required.
gvasquezvargas Jan 28, 2025
1b9310b
Merge pull request #6434 from EnterpriseDB/mtk/jdbc_drivers
gvasquezvargas Jan 28, 2025
834ab17
Implemented feedback by Josh H
gvasquezvargas Jan 28, 2025
fed1486
Merge pull request #6425 from EnterpriseDB/net/consolidation
gvasquezvargas Jan 29, 2025
7da5b42
DMS/LakehouseSync: removal notice
gvasquezvargas Jan 29, 2025
a0b626c
PGD bug
gvasquezvargas Jan 29, 2025
9e6c8a9
Merge pull request #6435 from EnterpriseDB/pgd/bug-fix
gvasquezvargas Jan 29, 2025
2f211bd
Merge pull request #6436 from EnterpriseDB/DMS/lakehouse_notice
gvasquezvargas Jan 29, 2025
751cc61
Merge pull request #6423 from EnterpriseDB/content/docs/epas/feedback
nidhibhammar Jan 29, 2025
241db34
Fixed the order of release notes in the navigation
nidhibhammar Jan 29, 2025
e4b66fb
added 12.21.26 index table entry
nidhibhammar Jan 29, 2025
dbc55c1
Merge pull request #6437 from EnterpriseDB/content/docs/epas/releasen…
nidhibhammar Jan 29, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ In this example, we are creating a GPT-4o model with the name `my_openai_model`:
SELECT aidb.create_model(
'my_openai_model',
'openai_completions',
'{"model": "gpt-4o"}::JSONB,
'{"model": "gpt-4o"}'::JSONB,
'{"api_key": "sk-abc123xyz456def789ghi012jkl345mn"}'::JSONB
)
);
```

## Model configuration settings
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ SELECT aidb.create_model(
'openai_completions',
'{"model": "gpt-4o"}'::JSONB,
'{"api_key": "sk-abc123xyz456def789ghi012jkl345mn"}'::JSONB
};
);
```

You should replace the `api_key` value with your own OpenAI API key. Now you can use the `my_openai_model` model in your Pipelines functions and, in this example, leverage the GPT-4o model from OpenAI.
Expand All @@ -96,7 +96,7 @@ SELECT aidb.create_model(
'openai_embeddings',
'{"model": "text-embedding-3-large"}'::JSONB,
'{"api_key": "sk-abc123xyz456def789ghi012jkl345mn"}'::JSONB
};
);
```

This will create the `text-embedding-3-large` model with the name `my_openai_embeddings`. You can now use this model in your Pipelines functions to generate embeddings for text data.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
title: Lakehouse Sync
navTitle: Lakehouse Sync
description: How to perform a Lakehouse Sync.
directoryDefaults:
displayBanner: "Notice: Lakehouse Sync capabilities are no longer available in Cloud Service deployments. The documentation remains available for historical reference and will be removed in the future."
deepToC: true
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
description: "EDB Data Migration Service is a solution that enables secure, fault-tolerant, and performant migrations to EDB Postgres AI Cloud Service."
product: "data migration service"
iconName: EdbTransporter
displayBanner: "Notice: Data Migration Service capabilities are now only available as part of the EDB Postgres AI Hybrid Control Plane, which is currently in tech preview."
navigation:
- "#Concepts"
- terminology
Expand All @@ -19,6 +20,9 @@

**EDB Postgres® AI migrations powered by EDB Data Migration Service**

!!!note Notice
Data Migration Service capabilities are now only available as part of the EDB Postgres AI Hybrid Control Plane, which is currently in tech preview.

EDB Data Migration Service (DMS) offers a secure and fault-tolerant way to migrate database data to the EDB Postgres AI platform. Using change data capture or CDC and event streaming, source database row changes are replicated to the migration destination. You can select a subset of your schemas' tables to migrate including support for schema, table, and column name remapping.

EDB DMS is currently a public preview capability that is available for use with EDB Hosted EDB Postgres AI Cloud Service deployments on AWS.
Expand All @@ -26,3 +30,3 @@
EDB Data Migration Service is built on Apache Kafka and the open-source Debezium CDC platform.

To migrate self-managed database sources, see [Getting started](./getting_started/).
13 changes: 13 additions & 0 deletions product_docs/docs/epas/12/epas_rel_notes/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ navTitle: Release Notes
title: "EDB Postgres Advanced Server Release Notes"
navigation:
- epas12_22_27_rel_notes
- epas12_21_26_rel_notes
- epas12_20_25_rel_notes
- epas12_19_24_rel_notes
- epas12_18_23_rel_notes
Expand All @@ -14,6 +15,17 @@ navigation:
- epas12_13_17_rel_notes
- epas12_12_16_rel_notes
- epas12_11_15_rel_notes
- 05_epas12.10.14_rel_notes
- 06_epas12.9.13_rel_notes
- 07_epas12.8.12_rel_notes
- 08_epas12.7.10_rel_notes
- 09_epas12.7_rel_notes
- 10_epas12.6.7_rel_notes
- 11_epas12.5.6_rel_notes
- 13_epas12.4.5_rel_notes
- 15_epas12.3.4_rel_notes
- 17_epas12.2.3_rel_notes
- 19_epas12.1.2_rel_notes
legacyRedirectsGenerated:
# This list is generated by a script. If you need add entries, use the `legacyRedirects` key.
- "/edb-docs/d/edb-postgres-advanced-server/installation-getting-started/release-notes/12/toc.html"
Expand All @@ -34,6 +46,7 @@ The EDB Postgres Advanced Server (Advanced Server) documentation describes the l
| Version | Release Date | Upstream Merges |
| ----------------------------------------- | ------------ | -------------------------------------------------------------- |
| [12.22.27](epas12_22_27_rel_notes.mdx) | 21 Nov 2024 | [12.22](https://www.postgresql.org/docs/12/release-12-22.html) |
| [12.21.26](epas12_21_26_rel_notes.mdx) | 14 Aug 2024 | [12.21](https://www.postgresql.org/docs/12/release-12-21.html) |
| [12.20.25](epas12_20_25_rel_notes.mdx) | 08 Aug 2024 | [12.20](https://www.postgresql.org/docs/12/release-12-20.html) |
| [12.19.24](epas12_19_24_rel_notes.mdx) | 09 May 2024 | [12.19](https://www.postgresql.org/docs/12/release-12-19.html) |
| [12.18.23](epas12_18_23_rel_notes.mdx) | 08 Feb 2023 | [12.18](https://www.postgresql.org/docs/12/release-12-18.html) |
Expand Down
9 changes: 9 additions & 0 deletions product_docs/docs/epas/13/epas_rel_notes/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ navTitle: Release Notes
title: "EDB Postgres Advanced Server Release Notes"
navigation:
- epas13_18_24_rel_notes
- epas13_17_23_rel_notes
- epas13_16_22_rel_notes
- epas13_15_21_rel_notes
- epas13_14_20_rel_notes
Expand All @@ -14,6 +15,13 @@ navigation:
- epas13_9_13_rel_notes
- epas13_8_12_rel_notes
- epas13_7_11_rel_notes
- 13_epas13.6.10_rel_notes
- 14_epas13.5.9_rel_notes
- 15_epas13.4.8_rel_notes
- 16_epas13.3.7_rel_notes
- 17_epas13.3.6_rel_notes
- 19_epas13.2.5_rel_notes
- 20_epas13_rel_notes

legacyRedirectsGenerated:
# This list is generated by a script. If you need add entries, use the `legacyRedirects` key.
Expand All @@ -27,6 +35,7 @@ The EDB Postgres Advanced Server (Advanced Server) documentation describes the l
| Version | Release Date | Upstream Merges |
|-------------------------------------|--------------|------------------------------------------------------------------------------------------------------------------------|
| [13.18.24](epas13_18_24_rel_notes) | 21 Nov 2024 | [13.18](https://www.postgresql.org/docs/release/13.18/) |
| [13.17.23](epas13_17_23_rel_notes) | 14 Nov 2024 | [13.17](https://www.postgresql.org/docs/release/13.17/) |
| [13.16.22](epas13_16_22_rel_notes) | 08 Aug 2024 | [13.16](https://www.postgresql.org/docs/release/13.16/) |
| [13.15.21](epas13_15_21_rel_notes) | 09 May 2024 | [13.15](https://www.postgresql.org/docs/release/13.15/) |
| [13.14.20](epas13_14_20_rel_notes) | 08 Feb 2024 | [13.14](https://www.postgresql.org/docs/release/13.14/) |
Expand Down
2 changes: 2 additions & 0 deletions product_docs/docs/epas/14/epas_rel_notes/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ navTitle: Release notes
title: "EDB Postgres Advanced Server release notes"
navigation:
- epas14_15_0_rel_notes
- epas14_14_0_rel_notes
- epas14_13_1_rel_notes
- epas14_13_0_rel_notes
- epas14_12_0_rel_notes
Expand All @@ -27,6 +28,7 @@ The EDB Postgres Advanced Server (EDB Postgres Advanced Server) documentation de
| Version | Release date | Upstream merges |
|-----------------------------------|--------------|--------------------------------------------------------------------------------------------------------------------------|
| [14.15.0](epas14_15_0_rel_notes) | 21 Nov 2024 | [14.15](https://www.postgresql.org/docs/14/release-14-15.html/) |
| [14.14.0](epas14_14_0_rel_notes) | 14 Nov 2024 | [14.14](https://www.postgresql.org/docs/14/release-14-14.html/) |
| [14.13.1](epas14_13_1_rel_notes) | 16 Aug 2024 | |
| [14.13.0](epas14_13_0_rel_notes) | 08 Aug 2024 | [14.13](https://www.postgresql.org/docs/14/release-14-13.html) |
| [14.12.0](epas14_12_0_rel_notes) | 09 May 2024 | [14.12](https://www.postgresql.org/docs/14/release-14-12.html) |
Expand Down
26 changes: 14 additions & 12 deletions product_docs/docs/epas/15/epas_rel_notes/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ navTitle: Release notes
title: "EDB Postgres Advanced Server release notes"
navigation:
- epas15_10_0_rel_notes
- epas15_9_0_rel_notes
- epas15_8_1_rel_notes
- epas15_8_0_rel_notes
- epas15_7_0_rel_notes
Expand All @@ -18,18 +19,19 @@ EDB Postgres Advanced Server 15 is built on open-source PostgreSQL 15, which int

The EDB Postgres Advanced Server documentation describes the latest version of EDB Postgres Advanced Server 15 including minor releases and patches. These release notes provide information on what was new in each release.

| Version | Release date | Upstream merges |
|--------------------------------|--------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| [15.10.0](epas15_10_0_rel_notes) | 14 Nov 2024 | [15.10](https://www.postgresql.org/docs/release/15.10/) |
| [15.8.1](epas15_8_1_rel_notes) | 16 Aug 2024 | |
| [15.8.0](epas15_8_0_rel_notes) | 08 Aug 2024 | [15.8](https://www.postgresql.org/docs/release/15.8/) |
| [15.7.0](epas15_7_0_rel_notes) | 09 May 2024 | [15.7](https://www.postgresql.org/docs/release/15.7/) |
| [15.6.0](epas15_6_0_rel_notes) | 08 Feb 2024 | [15.6](https://www.postgresql.org/docs/release/15.6/) |
| [15.5.0](epas15_5_0_rel_notes) | 09 Nov 2023 | [15.5](https://www.postgresql.org/docs/release/15.5/) |
| [15.4.1](epas15_4_1_rel_notes) | 25 Sep 2023 | |
| [15.4.0](epas15_4_0_rel_notes) | 21 Aug 2023 | [15.4](https://www.postgresql.org/docs/release/15.4/) |
| [15.3.0](epas15_3_0_rel_notes) | 11 May 2023 | [15.3](https://www.postgresql.org/docs/release/15.3/) |
| [15.2.0](epas15_2_0_rel_notes) | 14 Feb 2023 | [15.0](https://www.postgresql.org/docs/release/15.0/), [15.1](https://www.postgresql.org/docs/release/15.1/), [15.2](https://www.postgresql.org/docs/release/15.2/) |
| Version | Release date | Upstream merges |
|----------------------------------|--------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| [15.10.0](epas15_10_0_rel_notes) | 21 Nov 2024 | [15.10](https://www.postgresql.org/docs/release/15.10/) |
| [15.9.0](epas15_9_0_rel_notes) | 14 Nov 2024 | [15.9](https://www.postgresql.org/docs/release/15.9/) |
| [15.8.1](epas15_8_1_rel_notes) | 16 Aug 2024 | |
| [15.8.0](epas15_8_0_rel_notes) | 08 Aug 2024 | [15.8](https://www.postgresql.org/docs/release/15.8/) |
| [15.7.0](epas15_7_0_rel_notes) | 09 May 2024 | [15.7](https://www.postgresql.org/docs/release/15.7/) |
| [15.6.0](epas15_6_0_rel_notes) | 08 Feb 2024 | [15.6](https://www.postgresql.org/docs/release/15.6/) |
| [15.5.0](epas15_5_0_rel_notes) | 09 Nov 2023 | [15.5](https://www.postgresql.org/docs/release/15.5/) |
| [15.4.1](epas15_4_1_rel_notes) | 25 Sep 2023 | |
| [15.4.0](epas15_4_0_rel_notes) | 21 Aug 2023 | [15.4](https://www.postgresql.org/docs/release/15.4/) |
| [15.3.0](epas15_3_0_rel_notes) | 11 May 2023 | [15.3](https://www.postgresql.org/docs/release/15.3/) |
| [15.2.0](epas15_2_0_rel_notes) | 14 Feb 2023 | [15.0](https://www.postgresql.org/docs/release/15.0/), [15.1](https://www.postgresql.org/docs/release/15.1/), [15.2](https://www.postgresql.org/docs/release/15.2/) |


## Component certification
Expand Down
2 changes: 2 additions & 0 deletions product_docs/docs/epas/16/epas_rel_notes/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ navTitle: Release notes
title: "EDB Postgres Advanced Server release notes"
navigation:
- epas16_6_0_rel_notes
- epas16_5_0_rel_notes
- epas16_4_1_rel_notes
- epas16_4_0_rel_notes
- epas16_3_0_rel_notes
Expand All @@ -18,6 +19,7 @@ The EDB Postgres Advanced Server documentation describes the latest version of E
| Version | Release date | Upstream merges |
|--------------------------------|--------------|------------------------------------------------------------------------------------------------------------------|
| [16.6.0](epas16_6_0_rel_notes) | 21 Nov 2024 | [16.6](https://www.postgresql.org/docs/16/release-16-6.html) |
| [16.5.0](epas16_5_0_rel_notes) | 14 Nov 2024 | [16.5](https://www.postgresql.org/docs/16/release-16-5.html) |
| [16.4.1](epas16_4_1_rel_notes) | 16 Aug 2024 | |
| [16.4.0](epas16_4_0_rel_notes) | 08 Aug 2024 | [16.4](https://www.postgresql.org/docs/16/release-16-4.html) |
| [16.3.0](epas16_3_0_rel_notes) | 09 May 2024 | [16.3](https://www.postgresql.org/docs/16/release-16-3.html) |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ navigation:
- 10_edb_resource_manager
- 02_edb_loader
- 14_edb_clone_schema
- roles
---

EDB Postgres Advanced Server includes features to help you to maintain, secure, and operate EDB Postgres Advanced Server databases.
16 changes: 16 additions & 0 deletions product_docs/docs/epas/17/database_administration/roles.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
title: Predefined roles
---

A set of predefined roles provides access to certain, commonly needed, privileged capabilities and information. Administrators including roles that have the CREATE ROLE privilege can GRANT these roles to users and/or other roles in their environment. The users/roles with these roles will have access to the specified capabilities and information.

For the complete list of the PostgreSQL's predefined roles, see [Predefined roles](https://www.postgresql.org/docs/17/predefined-roles.html) in the PostgreSQL documentation.

The following table provides the predefined roles specific to EDB Postgres Advanced Server:

| Role | Allowed access |
|---------------------------|----------------------------------------------------------------------|
| aq_administrator_role | Allows creation and administration of queuing infrastructure. |
| capture_admin | Allows the execute permission on the DBMS_PRIVILEGE_CAPTURE package. |
| edb_createdirectory_admin | Allows the user to create a directory. |
| edb_dropdirectory_admin | Allows the user to drop any directory. |
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ redirects:
- /epas/latest/epas_compat_ora_dev_guide/08_oracle_catalog_views/
---

Catalog views provide information about database objects. There are two catagories of catalog views:
Catalog views provide information about database objects. There are two categories of catalog views:

- Oracle catalog views provide information about database objects in a manner compatible with the Oracle data dictionary views.

Expand Down
14 changes: 14 additions & 0 deletions product_docs/docs/migration_portal/4/known_issues_notes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,20 @@ While using the Oracle default case, you may experience a lower compatibility ra
Character: 58
```

### Incomplete Object Definition

While assessing source schemas with Migration Portal, in rare scenarios, the converted Object Definitions are incomplete when the source DDL contains reserved words.

If you encounter an issue where some part of the Object Definition is missing or the definition gets terminated before reaching the actual end of the statement, you are possibly using keywords reserved by EDB Postgres Advanced Server. For example, when you use `CONSTRAINT` as a column name in a `TABLE` definition and then reference it in `VIEW` or `MVIEW` definitions, Migration Portal could terminate that DDL statement abruptly and skip to the next definition without successfully assessing or converting it.

To work around this issue, you have these options:

- Rename the column name in the Oracle database, then reextract the DDL and upload it to Migration Portal.

or

- Rename the column name in the extracted DDL file, and then upload it to Migration Portal.

## EDB DDL Extractor

### General limitations
Expand Down
Loading