Skip to content

Commit 8ce381d

Browse files
author
github-actions
committed
Update extensions, pgBouncer, minor server versions, and capabilities per region
1 parent 38566a7 commit 8ce381d

File tree

5 files changed

+23
-5
lines changed

5 files changed

+23
-5
lines changed

articles/postgresql/flexible-server/includes/extensions-table.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ author: varun-dhawan
33
ms.service: postgresql
44
ms.subservice: flexible-server
55
ms.topic: include
6-
ms.date: 04/16/2024
6+
ms.date: 04/19/2024
77
ms.author: varundhawan
88
---
99
| **Extension name** | **Description** | **PostgreSQL 16** | **PostgreSQL 15** | **PostgreSQL 14** | **PostgreSQL 13** | **PostgreSQL 12** | **PostgreSQL 11** |
@@ -38,7 +38,6 @@ ms.author: varundhawan
3838
| [pg_buffercache](https://www.postgresql.org/docs/13/pgbuffercache.html) | Examine the shared buffer cache | 1.4 | 1.3 | 1.3 | 1.3 | 1.3 | 1.3|
3939
| [pg_cron](https://github.com/citusdata/pg_cron) | Job scheduler for PostgreSQL | 1.5 :heavy_check_mark: | 1.4-1 :heavy_check_mark: | 1.4-1 :heavy_check_mark: | 1.4-1 :heavy_check_mark: | 1.4-1 :heavy_check_mark: | 1.4-1 :heavy_check_mark:|
4040
| [pgcrypto](https://www.postgresql.org/docs/13/pgcrypto.html) | Cryptographic functions | 1.3 | 1.3 | 1.3 | 1.3 | 1.3 | 1.3|
41-
| [pg_failover_slots](https://github.com/EnterpriseDB/pg_failover_slots) (Preview) | Logical replication slot manager for failover purposes | 1.0.1 | 1.0.1 | 1.0.1 | 1.0.1 | 1.0.1 | 1.0.1|
4241
| [pg_freespacemap](https://www.postgresql.org/docs/13/pgfreespacemap.html) | Examine the free space map (FSM) | 1.2 | 1.2 | 1.2 | 1.2 | 1.2 | 1.2|
4342
| [pg_hint_plan](https://github.com/ossc-db/pg_hint_plan) | Makes it possible to tweak PostgreSQL execution plans using so-called hints in SQL comments. | 1.6.0 :heavy_check_mark: | 1.5 :heavy_check_mark: | 1.4 :heavy_check_mark: | 1.3.7 :heavy_check_mark: | 1.3.7 :heavy_check_mark: | 1.3.7 :heavy_check_mark:|
4443
| [pglogical](https://github.com/2ndQuadrant/pglogical) | PostgreSQL Logical Replication | 2.4.4 :heavy_check_mark: | 2.4.2 :heavy_check_mark: | 2.4.1 :heavy_check_mark: | 2.4.1 :heavy_check_mark: | 2.4.1 :heavy_check_mark: | 2.4.1 :heavy_check_mark:|

articles/postgresql/flexible-server/includes/majorversionsascending.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ author: varun-dhawan
33
ms.service: postgresql
44
ms.subservice: flexible-server
55
ms.topic: include
6-
ms.date: 04/16/2024
6+
ms.date: 04/19/2024
77
ms.author: varundhawan
88
---
99
11, 12, 13, 14, 15, 16

articles/postgresql/flexible-server/includes/minorversionsascending.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ author: varun-dhawan
33
ms.service: postgresql
44
ms.subservice: flexible-server
55
ms.topic: include
6-
ms.date: 04/10/2024
6+
ms.date: 04/19/2024
77
ms.author: varundhawan
88
---
99
11.22, 12.18, 13.14, 14.11, 15.6, 16.2
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
author: varun-dhawan
3+
ms.service: postgresql
4+
ms.subservice: flexible-server
5+
ms.topic: include
6+
ms.date: 04/19/2024
7+
ms.author: varundhawan
8+
---
9+
| Parameter name | Description | Default |
10+
|-------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------|
11+
| pgbouncer.default_pool_size | Set this parameter value to the number of connections per user/database pair. | 50|
12+
| pgbouncer.ignore_startup_parameters | Enter a comma-separated list of parameters that PgBouncer can ignore. For example, you can let PgBouncer ignore the `extra_float_digits` parameter. Some parameters are allowed; all others raise an error. This ability is needed to tolerate overenthusiastic Java Database Connectivity (JDBC) wanting to unconditionally set `extra_float_digits=2` in startup packets. Use this option if the library that you use reports errors such as `pq: unsupported startup parameter: extra_float_digits`. | |
13+
| pgbouncer.max_client_conn | Set this parameter value to the highest number of client connections to PgBouncer that you want to support. | 5000|
14+
| pgbouncer.max_prepared_statements | When this is set to a non-zero value PgBouncer tracks protocol-level named prepared statements related commands sent by the client in transaction and statement pooling mode. | 0|
15+
| pgbouncer.min_pool_size | Add more server connections to pool if below this number. | 0|
16+
| pgbouncer.pool_mode | Set this parameter value to TRANSACTION for transaction pooling (which is the recommended setting for most workloads). | transaction|
17+
| pgbouncer.query_wait_timeout | Maximum time (in seconds) queries are allowed to spend waiting for execution. If the query is not assigned to a server during that time, the client is disconnected. | 120|
18+
| pgbouncer.server_idle_timeout | If a server connection has been idle more than this many seconds it will be dropped. If 0 then timeout is disabled. | 600|
19+
| pgbouncer.stats_users | Comma-separated list of database users that are allowed to connect and run read-only queries on the pgBouncer console. | |

articles/postgresql/flexible-server/includes/pgbouncer-table.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ author: varun-dhawan
33
ms.service: postgresql
44
ms.subservice: flexible-server
55
ms.topic: include
6-
ms.date: 04/16/2024
6+
ms.date: 04/19/2024
77
ms.author: varundhawan
88
---
99
| **PostgreSQL 16** | **PostgreSQL 15** | **PostgreSQL 14** | **PostgreSQL 13** | **PostgreSQL 12** | **PostgreSQL 11** |

0 commit comments

Comments
 (0)