Skip to content

Commit c9a8db7

Browse files
Merge pull request #6667 from EnterpriseDB/release/2025-04-02a
Release: 2025-04-02a
2 parents 54b8090 + 09beec9 commit c9a8db7

File tree

46 files changed

+302
-143
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+302
-143
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@ edb=#
1818

1919
#### Proxy settings
2020

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.
21+
If you're using an HTTP proxy, you may need to set the `HTTP_PROXY` and `HTTPS_PROXY` environment variables in the Postgres environment. You can do this by adding the lines shown in the example that follows to the `environment` file in the `main` directory of the Postgres data directory.
2222

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.
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:
2424

2525
```bash
2626
echo "HTTP_PROXY = 'http://<yourproxysettings>/'" | sudo tee -a /etc/postgresql/16/main/environment
2727
echo "HTTPS_PROXY = 'http://<yourproxysettings>/'" | sudo tee -a /etc/postgresql/16/main/environment
2828
sudo systemctl restart postgresql@16-main
2929
```
3030

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.
31+
Replace `<yourproxysettings>` with your proxy settings. If you're 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.
3232

33-
Airgapped environments are not supported at this time.
33+
Airgapped environments aren't currently supported.
3434

3535
### Installing the Postgres File System extension
3636

advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/index.mdx

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ Select a link to access the applicable installation instructions:
1717

1818
- [Oracle Linux (OL) 9](linux_x86_64/edb-dms-reader_rhel_9), [Oracle Linux (OL) 8](linux_x86_64/edb-dms-reader_rhel_8)
1919

20-
- [Rocky Linux 9](linux_x86_64/edb-dms-reader_other_linux_9)
20+
- [Rocky Linux 9](linux_x86_64/edb-dms-reader_other_linux_9), [Rocky Linux 8](linux_x86_64/edb-dms-reader_other_linux_8)
2121

22-
- [AlmaLinux 9](linux_x86_64/edb-dms-reader_other_linux_9)
22+
- [AlmaLinux 9](linux_x86_64/edb-dms-reader_other_linux_9), [AlmaLinux 8](linux_x86_64/edb-dms-reader_other_linux_8)
2323

2424
### SUSE Linux Enterprise (SLES)
2525

@@ -33,8 +33,6 @@ Select a link to access the applicable installation instructions:
3333

3434
## Linux [AArch64 (ARM64)](linux_arm64)
3535

36-
### Red Hat Enterprise Linux (RHEL) and derivatives
37-
38-
- [RHEL 9](linux_arm64/edb-dms-reader_rhel_9)
36+
### Debian and derivatives
3937

40-
- [Oracle Linux (OL) 9](linux_arm64/edb-dms-reader_rhel_9)
38+
- [Debian 12](linux_arm64/edb-dms-reader_debian_12)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
navTitle: Debian 12
3+
title: Installing EDB Data Migration Service Reader on Debian 12 arm64
4+
---
5+
6+
## Prerequisites
7+
8+
Before you begin the installation process:
9+
10+
- Set up the EDB repository.
11+
12+
Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step.
13+
14+
To determine if your repository exists, enter this command:
15+
16+
`apt-cache search enterprisedb`
17+
18+
If no output is generated, the repository isn't installed.
19+
20+
To set up the EDB repository:
21+
22+
1. Go to [EDB repositories](https://www.enterprisedb.com/repos-downloads).
23+
24+
1. Select the button that provides access to the EDB repository.
25+
26+
1. Select the platform and software that you want to download.
27+
28+
1. Follow the instructions for setting up the EDB repository.
29+
30+
## Install the package
31+
32+
Install the EDB DMS Reader (packaged as `cdcreader`):
33+
34+
```shell
35+
sudo apt-get install cdcreader
36+
```

advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_arm64/index.mdx

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,11 @@ navTitle: "On Linux ARM64"
44
indexCards: none
55

66
navigation:
7-
- edb-dms-reader_rhel_9
7+
- edb-dms-reader_debian_12
88
---
99

1010
Operating system-specific install instructions are described in the corresponding documentation:
1111

12-
### Red Hat Enterprise Linux (RHEL) and derivatives
12+
### Debian and derivatives
1313

14-
- [RHEL 9](edb-dms-reader_rhel_9)
15-
16-
- [Oracle Linux (OL) 9](edb-dms-reader_rhel_9)
14+
- [Debian 12](edb-dms-reader_debian_12)
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
2-
navTitle: RHEL 9 or OL 9
3-
title: Installing EDB Data Migration Service Reader on RHEL 9 or OL 9 arm64
2+
navTitle: AlmaLinux 8 or Rocky Linux 8
3+
title: Installing EDB Data Migration Service Reader on AlmaLinux 8 or Rocky
4+
Linux 8 x86_64
45
---
56

67
## Prerequisites

advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing/linux_x86_64/index.mdx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ navigation:
77
- edb-dms-reader_rhel_9
88
- edb-dms-reader_rhel_8
99
- edb-dms-reader_other_linux_9
10+
- edb-dms-reader_other_linux_8
1011
- edb-dms-reader_sles_15
1112
- edb-dms-reader_ubuntu_24
1213
- edb-dms-reader_ubuntu_22
@@ -28,8 +29,12 @@ Operating system-specific install instructions are described in the correspondin
2829

2930
- [Rocky Linux 9](edb-dms-reader_other_linux_9)
3031

32+
- [Rocky Linux 8](edb-dms-reader_other_linux_8)
33+
3134
- [AlmaLinux 9](edb-dms-reader_other_linux_9)
3235

36+
- [AlmaLinux 8](edb-dms-reader_other_linux_8)
37+
3338
### SUSE Linux Enterprise (SLES)
3439

3540
- [SLES 15](edb-dms-reader_sles_15)

advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing2/index.mdx

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ Select a link to access the applicable installation instructions:
1717

1818
- [Oracle Linux (OL) 9](linux_x86_64/edb-dms-writer_rhel_9), [Oracle Linux (OL) 8](linux_x86_64/edb-dms-writer_rhel_8)
1919

20-
- [Rocky Linux 9](linux_x86_64/edb-dms-writer_other_linux_9)
20+
- [Rocky Linux 9](linux_x86_64/edb-dms-writer_other_linux_9), [Rocky Linux 8](linux_x86_64/edb-dms-writer_other_linux_8)
2121

22-
- [AlmaLinux 9](linux_x86_64/edb-dms-writer_other_linux_9)
22+
- [AlmaLinux 9](linux_x86_64/edb-dms-writer_other_linux_9), [AlmaLinux 8](linux_x86_64/edb-dms-writer_other_linux_8)
2323

2424
### SUSE Linux Enterprise (SLES)
2525

@@ -33,8 +33,6 @@ Select a link to access the applicable installation instructions:
3333

3434
## Linux [AArch64 (ARM64)](linux_arm64)
3535

36-
### Red Hat Enterprise Linux (RHEL) and derivatives
37-
38-
- [RHEL 9](linux_arm64/edb-dms-writer_rhel_9)
36+
### Debian and derivatives
3937

40-
- [Oracle Linux (OL) 9](linux_arm64/edb-dms-writer_rhel_9)
38+
- [Debian 12](linux_arm64/edb-dms-writer_debian_12)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
navTitle: Debian 12
3+
title: Installing EDB Data Migration Service Writer on Debian 12 arm64
4+
---
5+
6+
## Prerequisites
7+
8+
Before you begin the installation process:
9+
10+
- Set up the EDB repository.
11+
12+
Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step.
13+
14+
To determine if your repository exists, enter this command:
15+
16+
`apt-cache search enterprisedb`
17+
18+
If no output is generated, the repository isn't installed.
19+
20+
To set up the EDB repository:
21+
22+
1. Go to [EDB repositories](https://www.enterprisedb.com/repos-downloads).
23+
24+
1. Select the button that provides access to the EDB repository.
25+
26+
1. Select the platform and software that you want to download.
27+
28+
1. Follow the instructions for setting up the EDB repository.
29+
30+
## Install the package
31+
32+
Install the EDB DMS Writer (packaged as `cdcwriter`):
33+
34+
```shell
35+
sudo apt-get install cdcwriter
36+
```

advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing2/linux_arm64/index.mdx

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,11 @@ navTitle: "On Linux ARM64"
44
indexCards: none
55

66
navigation:
7-
- edb-dms-writer_rhel_9
7+
- edb-dms-writer_debian_12
88
---
99

1010
Operating system-specific install instructions are described in the corresponding documentation:
1111

12-
### Red Hat Enterprise Linux (RHEL) and derivatives
12+
### Debian and derivatives
1313

14-
- [RHEL 9](edb-dms-writer_rhel_9)
15-
16-
- [Oracle Linux (OL) 9](edb-dms-writer_rhel_9)
14+
- [Debian 12](edb-dms-writer_debian_12)
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
2-
navTitle: RHEL 9 or OL 9
3-
title: Installing EDB Data Migration Service Writer on RHEL 9 or OL 9 arm64
2+
navTitle: AlmaLinux 8 or Rocky Linux 8
3+
title: Installing EDB Data Migration Service Writer on AlmaLinux 8 or Rocky
4+
Linux 8 x86_64
45
---
56

67
## Prerequisites

advocacy_docs/edb-postgres-ai/migration-etl/data-migration-service/getting_started/installing2/linux_x86_64/index.mdx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ navigation:
77
- edb-dms-writer_rhel_9
88
- edb-dms-writer_rhel_8
99
- edb-dms-writer_other_linux_9
10+
- edb-dms-writer_other_linux_8
1011
- edb-dms-writer_sles_15
1112
- edb-dms-writer_ubuntu_24
1213
- edb-dms-writer_ubuntu_22
@@ -28,8 +29,12 @@ Operating system-specific install instructions are described in the correspondin
2829

2930
- [Rocky Linux 9](edb-dms-writer_other_linux_9)
3031

32+
- [Rocky Linux 8](edb-dms-writer_other_linux_8)
33+
3134
- [AlmaLinux 9](edb-dms-writer_other_linux_9)
3235

36+
- [AlmaLinux 8](edb-dms-writer_other_linux_8)
37+
3338
### SUSE Linux Enterprise (SLES)
3439

3540
- [SLES 15](edb-dms-writer_sles_15)
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: Advanced Storage Pack 1.3.0 release notes
3+
navTitle: Version 1.3.0
4+
originalFilePath: advocacy_docs/pg_extensions/advanced_storage_pack/rel_notes/src/relnote_1.3.0.yml
5+
editTarget: originalFilePath
6+
---
7+
8+
Released: 1 April 2025
9+
10+
Advanced Storage Pack 1.3.0 includes a number of enhancements and bug fixes.
11+
12+
## Highlights
13+
14+
- **Improved Compression for large tuples**: ASP 1.3.0 Bluefin now provides better compression rate for large tuples including variable length fields like JSON or text.
15+
16+
## Enhancements
17+
18+
<table class="table w-100"><thead><tr><th>Description</th><th width="10%">Addresses</th></tr></thead><tbody>
19+
<tr><td><details><summary>Better compression rate in Bluefin table access method.</summary><hr/><p>In order to provide better compression rate for large records including variable length fields (JSON, text), this new release of Bluefin can now decide to compress data using regular LZ4 compression, instead of delta compression. This new compression method can also be used to compress reference tuples. The reference tuples are the first tuples stored on a Postgres page, they are by definition not eligible to delta compression and were previously stored uncompressed. The choice of the compression method is automatically made by the table access method: the one giving the better compression rate is chosen. Under certain circumstances, this new release increases the compression rate from 28% to 57%.</p>
20+
</details></td><td></td></tr>
21+
</tbody></table>
22+
23+
Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,24 @@
11
---
22
title: Advanced Storage Pack release notes
3-
navTitle: "Release notes"
3+
navTitle: Release notes
4+
description: Release notes for Advanced Storage Packr
45
indexCards: none
6+
navigation:
7+
- asp_1.3.0_rel_notes
8+
- asp_1.2.1_rel_notes
9+
- asp_1.0.0_rel_notes
10+
originalFilePath: advocacy_docs/pg_extensions/advanced_storage_pack/rel_notes/src/meta.yml
11+
editTarget: originalFilePath
512
---
6-
The Advanced Storage Pack documentation describes the latest version of Advanced Storage Pack,
7-
including minor releases and patches. These release notes
8-
cover what was new in each release. For new functionality introduced
9-
in a minor or patch release, there are also indicators in the content
10-
about the release that introduced the feature.
11-
12-
| Version | Release Date |
13-
| --------------------------- | ------------ |
14-
| [1.2.1](asp_1.2.1_rel_notes) | 09 Nov 2023 |
15-
| [1.0.0](asp_1.0.0_rel_notes) | 30 Nov 2022 |
1613

1714

15+
The Advanced Storage Pack documentation describes the latest version of Advanced Storage Pack, including minor releases and patches.
16+
These release notes cover what was new in each release.
17+
For new functionality introduced in a minor or patch release, there are also indicators in the content about the release that introduced the feature.
1818

1919

20+
| Version | Release Date |
21+
|---|---|
22+
| [1.3.0](./asp_1.3.0_rel_notes) | 01 Apr 2025 |
23+
| [1.2.1](./asp_1.2.1_rel_notes) | 09 Nov 2023 |
24+
| [1.0.0](./asp_1.0.0_rel_notes) | 30 Nov 2022 |
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# yaml-language-server: $schema=https://raw.githubusercontent.com/EnterpriseDB/docs/refs/heads/develop/tools/automation/generators/relgen/meta-schema.json
2+
3+
product: Advanced Storage Pack
4+
shortname: asp
5+
title: Advanced Storage Pack release notes
6+
description: Release notes for Advanced Storage Packr
7+
intro: |
8+
The Advanced Storage Pack documentation describes the latest version of Advanced Storage Pack, including minor releases and patches.
9+
These release notes cover what was new in each release.
10+
For new functionality introduced in a minor or patch release, there are also indicators in the content about the release that introduced the feature.
11+
columns:
12+
- 0:
13+
label: "Version"
14+
key: version-link
15+
- 1:
16+
label: Release Date
17+
key: shortdate
18+
precursor:
19+
- date: 09 Nov 2023
20+
version: "1.2.1"
21+
- date: 30 Nov 2022
22+
version: "1.0.0"
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# yaml-language-server: $schema=https://raw.githubusercontent.com/EnterpriseDB/docs/refs/heads/develop/tools/automation/generators/relgen/relnote-schema.json
2+
product: Advanced Storage Pack
3+
version: 1.3.0
4+
date: 1 April 2025
5+
intro: |
6+
Advanced Storage Pack 1.3.0 includes a number of enhancements and bug fixes.
7+
highlights: |
8+
- **Improved Compression for large tuples**: ASP 1.3.0 Bluefin now provides better compression rate for large tuples including variable length fields like JSON or text.
9+
relnotes:
10+
- relnote: Better compression rate in Bluefin table access method.
11+
details: |
12+
In order to provide better compression rate for large records including variable length fields (JSON, text), this new release of Bluefin can now decide to compress data using regular LZ4 compression, instead of delta compression. This new compression method can also be used to compress reference tuples. The reference tuples are the first tuples stored on a Postgres page, they are by definition not eligible to delta compression and were previously stored uncompressed. The choice of the compression method is automatically made by the table access method: the one giving the better compression rate is chosen. Under certain circumstances, this new release increases the compression rate from 28% to 57%.
13+
jira: ""
14+
addresses: ""
15+
type: Enhancement
16+
impact: High

0 commit comments

Comments
 (0)