Skip to content

Commit

Permalink
DISTPG-648 Release notes 16.0 (#443)
Browse files Browse the repository at this point in the history
DISTPG-648 Release notes 16.0

new file:   docs/release-notes-v16.0.md
modified:   docs/release-notes.md
modified:   mkdocs-base.yml
modified:   variables.yml
  • Loading branch information
nastena1606 authored Sep 19, 2023
1 parent 6c8332a commit 805a77b
Show file tree
Hide file tree
Showing 7 changed files with 86 additions and 8 deletions.
2 changes: 1 addition & 1 deletion _resource/overrides/partials/nav.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
{% endfor %}
<br>
<label class="md-nav__title" for="__drawer">
<a href="https://learn.percona.com/download-manual-percona-distribution-for-postgresql-15" onclick="_gaq.push(['b._trackEvent', 'Percona Distribution for PostgreSQL', 'Download', 'Download Manual Distribution for PostgreSQL']);" class="md-nav__link md-nav__link--active">
<a href="https://learn.percona.com/download-manual-percona-distribution-for-postgresql-16" onclick="_gaq.push(['b._trackEvent', 'Percona Distribution for PostgreSQL', 'Download', 'Download Manual Distribution for PostgreSQL']);" class="md-nav__link md-nav__link--active">
Download PDF
</a>
</label>
Expand Down
78 changes: 78 additions & 0 deletions docs/release-notes-v16.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
# Percona Distribution for PostgreSQL 16.0 (2023-09-19)

[Installation](installing.md){.md-button}
[Upgrade](major-upgrade.md){.md-button}


We are pleased to announce the launch of Percona Distribution for PostgreSQL 16.0 - a solution with the collection of tools from PostgreSQL community that are tested to work together and serve to assist you in deploying and managing PostgreSQL. The aim of Percona Distribution for PostgreSQL is to address the operational issues like High-Availability, Disaster Recovery, Security, Observability, Spatial data handling, Performance and Scalability and others that enterprises are facing.

This release of Percona Distribution for PostgreSQL is based on [PostgreSQL 16](https://www.postgresql.org/docs/16/release-16.html).

## Release Highlights

Percona Distribution for PostgreSQL 16 features a lot of new functionalities and enhancements to performance, replication, monitoring, developer experience and more. Among them are the following:

* Performance improvements:

* The support for CPU acceleration using SIMD (Single Instruction/Multiple Data) computing method for both x86 and ARM architectures
* Optimized processing of ASCII and JSON strings and array and subtransaction searches improve query processing performance.
* The support of concurrent bulk data loading using `COPY` boost performance up to 300%.
* Load balancing for `libpq` client simplifies scaling read queries.
* The use of lz4 and zstd compression methods for `pg_dump` results in better compression performance compared to the default gzip compression method.

* Logical replication improvements include the ability to apply large transactions in parallel and the ability to perform logical decoding on standbys. This enables users to distribute their workloads among nodes.
* Developer experience:

* The standard for manipulating JSON data now includes the SQL/JSON constructors and the `ANY_VALUE` aggregate function, which returns any arbitrary value from the aggregate set.
* Developers can now specify non-decimal integers such as 0xff and 0o777.
* Added support for the extended query protocol to the `psql` client.


* Privilege administration improvements:

* Logical replication subscribers now execute transactions on a table as the table owner, not the superuser.
* Now only the users that have the ADMIN OPTION for roles can grant privileges in these roles using the `CREATEROLE` function. This allows fine-tuning privileges definition.
* New predefined role `pg_maintain` enables non-superusers to run VACUUM, ANALYZE, CLUSTER, REFRESH MATERIALIZED VIEW, REINDEX, and LOCK TABLE on all tables.

* Database administrators can now view insights on I/O statistics in a separate `pg_stat_io` view provides.


!!! admonition "See also"

* [PostgreSQL 16 release notes](https://www.postgresql.org/docs/16/release-16.html)


The following is the list of extensions available in Percona Distribution for PostgreSQL.

| Extension | Version | Description |
| ------------------- | -------------- | ---------------------------- |
|[HAProxy](http://www.haproxy.org/) | 2.8.2 | a high-availability and load-balancing solution |
| [Patroni](https://patroni.readthedocs.io/en/latest/) | 3.1.0 | a HA (High Availability) solution for PostgreSQL |
| [PgAudit](https://www.pgaudit.org/) | 16.0 | provides detailed session or object audit logging via the standard logging facility provided by PostgreSQL |
| [pgAudit set_user](https://github.com/pgaudit/set_user)| 4.0.1 | provides an additional layer of logging and control when unprivileged users must escalate themselves to superusers or object owner roles in order to perform needed maintenance tasks.|
| [pgBackRest](https://pgbackrest.org/) | 2.47 | a backup and restore solution for PostgreSQL |
|[pgBadger](https://github.com/darold/pgbadger) | 12.2 | a fast PostgreSQL Log Analyzer.|
|[PgBouncer](https://www.pgbouncer.org/) |1.20.1 | a lightweight connection pooler for PostgreSQL|
| [pg_gather](https://github.com/jobinau/pg_gather)| v22 | an SQL script for running the diagnostics of the health of PostgreSQL cluster |
| [pgpool2](https://git.postgresql.org/gitweb/?p=pgpool2.git;a=summary) | 4.4.4 | a middleware between PostgreSQL server and client for high availability, connection pooling and load balancing.|
| [pg_repack](https://github.com/reorg/pg_repack) | 1.4.8 | rebuilds PostgreSQL database objects |
| [pg_stat_monitor](https://github.com/percona/pg_stat_monitor)|2.0.2 | collects and aggregates statistics for PostgreSQL and provides histogram information.|
| [PostGIS](https://github.com/postgis/postgis) | 3.3.4 | a spatial extension for PostgreSQL.|
| [PostgreSQL Common](https://salsa.debian.org/postgresql/postgresql-common)| 253 | PostgreSQL database-cluster manager. It provides a structure under which multiple versions of PostgreSQL may be installed and/or multiple clusters maintained at one time.|
|[wal2json](https://github.com/eulerto/wal2json) |2.5 | a PostgreSQL logical decoding JSON output plugin|

Percona Distribution for PostgreSQL also includes the following packages:

* `llvm` 12.0.1 packages for Red Hat Enterprise Linux 8 / CentOS 8. This fixes compatibility issues with LLVM from upstream.
* supplemental `ETCD` packages which can be used for setting up Patroni clusters. These packages are available for the following operating systems:

| Operating System | Package | Version | Description |
| ------------------- | ---------------------| --------| ------------------ |
| CentOS 8 | `etcd` | 3.3.11 | A consistent, distributed key-value store|
| | `python3-etcd`| 0.4.5 | A Python client for ETCD |


Percona Distribution for PostgreSQL is also shipped with the [libpq](https://www.postgresql.org/docs/16/libpq.html) library. It contains "a set of
library functions that allow client programs to pass queries to the PostgreSQL
backend server and to receive the results of these queries."
4 changes: 1 addition & 3 deletions docs/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
# Percona Distribution for PostgreSQL release notes



* [Percona Distribution for PostgreSQL 16](release-notes-v16.0.md) (2023-09-)

* [Percona Distribution for PostgreSQL 16](release-notes-v16.0.md) (2023-09-19)
4 changes: 2 additions & 2 deletions docs/solutions/backup-recovery.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ A Disaster Recovery (DR) solution ensures that a system can be quickly restored

To achieve a production grade PostgreSQL disaster recovery solution, you need something that can take full or incremental database backups from a running instance, and restore from those backups at any point in time. Percona Distribution for PostgreSQL is supplied with [pgBackRest](#pgbackrest): a reliable, open-source backup and recovery solution for PostgreSQL.

This document focuses on the Disaster recovery solution in Percona Distribution for PostgreSQL. The [Deploying backup and disaster recovery solution in Percona Distribution for PostgreSQL](dr-pg-backrestsetup.md) tutorial provides guidelines of how to set up and test this solution.
This document focuses on the Disaster recovery solution in Percona Distribution for PostgreSQL. The [Deploying backup and disaster recovery solution in Percona Distribution for PostgreSQL](dr-pgbackrest-setup.md) tutorial provides guidelines of how to set up and test this solution.

### pgBackRest

Expand All @@ -68,7 +68,7 @@ Finally, `pgBackRest` also supports restoring PostgreSQL databases to a differen

## Setup overview

This section describes the architecture of the backup and disaster recovery solution. For the configuration steps, refer to the [Deploying backup and disaster recovery solution in Percona Distribution for PostgreSQL](dr-pg-backrestsetup.md).
This section describes the architecture of the backup and disaster recovery solution. For the configuration steps, refer to the [Deploying backup and disaster recovery solution in Percona Distribution for PostgreSQL](dr-pgbackrest-setup.md).

### System architecture

Expand Down
2 changes: 1 addition & 1 deletion docs/solutions/postgis-testing.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Query spatial data

After you [installed and set up PostGIS](postgis-install.md), let’s find answers to the following questions by querying the database:
After you [installed and set up PostGIS](postgis-deploy.md), let’s find answers to the following questions by querying the database:

## *What is the population of the New York City?*

Expand Down
2 changes: 1 addition & 1 deletion mkdocs-base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
site_name: Percona Distribution for PostgreSQL
site_description: Documentation
site_author: Percona LLC
copyright: Percona LLC, &#169; 2023
copyright: <a href="https://www.percona.com/about">Percona LLC</a> and/or its affiliates © 2023 — <a href="#__consent">Cookie Consent</a>

repo_name: percona/postgresql-docs
repo_url: https://github.com/percona/postgresql-docs
Expand Down
2 changes: 2 additions & 0 deletions mkdocs-pdf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

INHERIT: mkdocs-base.yml

copyright: Percona LLC, &#169; 2023

markdown_extensions:
pymdownx.tabbed: {}
admonition: {}

0 comments on commit 805a77b

Please sign in to comment.