Extension considerations specific to Azure Database for PostgreSQL flexible server
To check which versions of an extension are available for your current database installation, query the pg_available_extensions
system catalog view.
For example, to determine the version available for the `azure_ai'extension, execute:
SELECT * FROM pg_available_extensions WHERE name = 'azure_ai';
These commands provide necessary insights into your database's extension configurations, helping maintain your systems efficiently and securely. When you enable easy updates to the latest extension versions, Azure Database for PostgreSQL continues to support your database applications' robust, secure, and efficient management.
Prerequisites
Follow the following article to learn how to allow extensions.
Extensions
The following is a list of supported extensions that require specific considerations in the Azure Database for PostgreSQL flexible server service:
dblink
pg_buffercache
pg_cron
pg_failover_slots
pg_hint_plan
pg_prewarm
pg_repack
pg_stat_statements
postgres_fdw
pgstattuple
dblink
The dblink
extension allows you to connect from one Azure Database for PostgreSQL flexible server instance to another or another database in the same server. Azure Database for PostgreSQL flexible server supports both incoming and outgoing connections to any PostgreSQL server. The sending server needs to allow outbound connections to the receiving server. Similarly, the receiving server needs to allow connections from the sending server.
If you plan to use this extension, we recommend deploying your servers with virtual network integration. By default, virtual network integration allows connections between servers in the virtual network. You can also choose to use virtual network network security groups to customize access.
pg_buffercache
The pg_buffercache
extension can be used to study the contents of shared_buffers. Using this extension, you can tell whether a particular relation is cached (in shared_buffers
). This extension can help you troubleshoot performance issues (caching-related performance issues).
This extension is integrated with the core installation of PostgreSQL, and it's easy to install.
CREATE EXTENSION pg_buffercache;
pg_cron
The pg_cron
extension is a simple, cron-based job scheduler for PostgreSQL that runs inside the database as an extension. The pg_cron
extension can run scheduled maintenance tasks within a PostgreSQL database. For example, you can run a periodic vacuum of a table or remove old data jobs.
The pg_cron
extension can run multiple jobs in parallel, but it runs at most one instance of a job at a time. If a second run is supposed to start before the first one finishes, then the second run is queued and started as soon as the first run completes. In such a way, it's ensured that jobs run precisely as many times as scheduled and don't run concurrently with themselves.
The pg_cron
extension is preloaded in shared_preload_libraries
for every Azure Database for PostgreSQL flexible server instance inside the Postgres database to provide you with the ability to schedule jobs to run in other databases within your Azure Database for PostgreSQL flexible server DB instance without compromising security.
For security reasons, you must allowlist the pg_cron
extension and install it using CREATE EXTENSION command.
Examples
To delete old data on Saturday at 3:30 am (GMT).
SELECT cron.schedule('30 3 * * 6', $$DELETE FROM events WHERE event_time < now() - interval '1 week'$$);
To run the vacuum every day at 10:00 am (GMT) in the default database
postgres
.SELECT cron.schedule('0 10 * * *', 'VACUUM');
To unschedule all tasks from
pg_cron
.SELECT cron.unschedule(jobid) FROM cron.job;
To see all jobs currently scheduled with
pg_cron
.SELECT * FROM cron.job;
To run the vacuum every day at 10:00 am (GMT) in the database
test cron
under theazure_pg_admin
role account.SELECT cron.schedule_in_database('VACUUM',' 0 10 * * * ', 'VACUUM', 'testcron',null,TRUE);
More examples
Starting with pg_cron
version 1.4, you can use the cron.schedule_in_database
and cron.alter_job
functions to schedule your job in a specific database and update an existing schedule, respectively.
The cron_schedule_in_database
function allows for the user name as an optional parameter. Setting the username to a non-null value requires PostgreSQL superuser privilege and isn't supported in Azure Database for PostgreSQL flexible server. Preceding examples show running this function with an optional user name parameter omitted or set to null, which runs the job in the context of the user scheduling the job, which should have azure_pg_admin
role privileges.
To delete old data on Saturday at 3:30 am (GMT) on database DBName.
SELECT cron.schedule_in_database('JobName', '30 3 * * 6', $$DELETE FROM events WHERE event_time < now() - interval '1 week'$$,'DBName');
To update or change the database name for the existing schedule
SELECT cron.alter_job(job_id:=MyJobID,database:='NewDBName');
pg_failover_slots
The pg_failover_slots
extension enhances Azure Database for PostgreSQL flexible server when operating with both logical replication and high availability enabled servers. It effectively addresses the challenge within the standard PostgreSQL engine that doesn't preserve logical replication slots after a failover. Maintaining these slots is critical to prevent replication pauses or data mismatches during primary server role changes, ensuring operational continuity and data integrity.
The extension streamlines the failover process by managing the necessary transfer, cleanup, and synchronization of replication slots, thus providing a seamless transition during server role changes. The extension is supported for PostgreSQL versions 11 to 16.
You can find more information and instructions on using the pg_failover_slots
extension on its GitHub page.
To enable the pg_failover_slots
extension for your Azure Database for PostgreSQL flexible server instance, you need to modify the server's configuration by including the extension in the server's shared preload libraries and adjusting a specific server parameter. Here's the process:
Update the
shared_preload_libraries
parameter to add thepg_failover_slots
to the server's shared preload libraries.Change the server parameter
hot_standby_feedback
toon
.
Any changes to the shared_preload_libraries
parameter require a server restart to take effect.
Using the Azure portal:
Select your Azure Database for PostgreSQL flexible server instance.
From the resource menu, under Settings section, select Server parameters.
Search for the
shared_preload_libraries
parameter and edit its value to includepg_failover_slots
.Search for the
hot_standby_feedback
parameter and set its value toon
.Select Save to preserve your changes. Now, you have the option to Save and restart.
- Choose this to ensure that the changes take effect since modifying
shared_preload_libraries
requires a server restart.
- Choose this to ensure that the changes take effect since modifying
By selecting Save and restart, your server automatically reboots, applying the changes made. Once the server is back online, the pg_failover_slots
extension is enabled and operational on your primary Azure Database for PostgreSQL flexible server instance, ready to handle logical replication slots during failovers.
pg_hint_plan
The pg_hint_plan
extension makes it possible to tweak PostgreSQL execution plans using so-called "hints" in SQL comments, like:
/*+ SeqScan(a) */
The pg_hint_plan
extension reads hinting phrases in a comment of the special form given with the target SQL statement. The particular form begins with the character sequence "/*+" and ends with "*/". Hint phrases consist of hint names and following parameters enclosed by parentheses and delimited by spaces. New lines for readability can delimit each hinting phrase.
Example:
/*+
HashJoin(a b)
SeqScan(a)
*/
SELECT *
FROM pgbench_branches b
JOIN pgbench_accounts an ON b.bid = a.bid
ORDER BY a.aid;
The previous example causes the planner to use the results of a seqscan
on table a
to combine with table b
as a hashjoin
.
To install pg_hint_plan
, in addition to allowing listing it, as shown in how to use PostgreSQL extensions-use-postgresql-extensions), you need to include it in the server's shared preload libraries. A change to Postgres's shared_preload_libraries
parameter requires a server restart to take effect. You can change parameters using the Azure portal or the Azure CLI.
Using the Azure portal:
Select your Azure Database for PostgreSQL flexible server instance.
From the resource menu, under Settings section, select Server parameters.
Search for the
shared_preload_libraries
parameter and edit its value to includepg_hint_plan
.Select ** Save ** to preserve your changes. You now have the option of Save and restart.
- Choose this to ensure that the changes take effect since modifying
shared_preload_libraries
requires a server restart.
- Choose this to ensure that the changes take effect since modifying
You can now enable pg_hint_plan
your Azure Database for PostgreSQL flexible server database. Connect to the database and issue the following command:
CREATE EXTENSION pg_hint_plan;
pg_prewarm
The pg_prewarm
extension loads relational data into the cache. Prewarming your caches means your queries have better response times on their first run after a restart. The autoprewarm functionality for the PostgreSQL flexible server isn't currently available in the Azure Database.
pg_repack
When they first try to use this extension, a typical question is: Is pg_repack
an extension or a client-side executable like psql
or pg_dump
?
The answer to that is that it's both. pg_repack/lib holds the code for the extension, including the schema and SQL artifacts it creates, and the C
library implementing the code of several of those functions. On the other hand, pg_repack/bin keeps the code for the client application, which knows how to interact with the programmability artifacts created by the extension. This client application aims to ease the complexity of interacting with the different interfaces surfaced by the server-side extension by offering the user some command-line options that are easier to understand. The client application is useless without the extension created on the database it's pointed to. The server-side extension on its own would be fully functional but would require the user to understand a complicated interaction pattern consisting of executing queries to retrieve data that is used as input to functions implemented by the extension.
Permission denied for schema repack
Currently, because we grant permissions to the repack schema created by this extension, it's only supported to run pg_repack
functionality from the context of azure_pg_admin
.
You might notice that if the owner of a table, who isn't azure_pg_admin
, tries to run pg_repack
, they end up receiving an error like the following:
NOTICE: Setting up workers.conns
ERROR: pg_repack failed with error: ERROR: permission denied for schema repack
LINE 1: select repack.version(), repack.version_sql()
To avoid that error, run pg_repack from the context of azure_pg_admin
.
pg_stat_statements
The pg_stat_statements extension gives you a view of all the queries that run on your database. This is useful for understanding your query workload performance on a production system.
The pg_stat_statements extension is preloaded in shared_preload_libraries
on every Azure Database for PostgreSQL flexible server instance to provide a means of tracking SQL statement execution statistics.
For security reasons, you must allowlist the pg_stat_statements extension and install it using CREATE EXTENSION command.
The setting pg_stat_statements.track
, which controls what statements are counted by the extension, defaults to top
, meaning all statements issued directly by clients are tracked. The two other tracking levels are none
and all
. This setting is configurable as a server parameter.
There's a tradeoff between the query execution information the pg_stat_statements
extension provides on the server performance as it logs each SQL statement. If you aren't actively using the pg_stat_statements
extension, we recommend that you set pg_stat_statements.track
to none
. Some third-party monitoring services might rely on pg_stat_statements
to deliver query performance insights, so confirm whether this is the case for you.
postgres_fdw
The postgres_fdw
extension allows you to connect from one Azure Database for PostgreSQL flexible server instance to another or another database in the same server. Azure Database for PostgreSQL flexible server supports both incoming and outgoing connections to any PostgreSQL server. The sending server needs to allow outbound connections to the receiving server. Similarly, the receiving server needs to allow connections from the sending server.
If you plan to use this extension, we recommend deploying your servers with virtual network integration. By default, virtual network integration allows connections between servers in the virtual network. You can also choose to use virtual network network security groups to customize access.
pgstattuple
When using the pgstattuple
extension to try to obtain tuple statistics from objects kept in the pg_toast
schema in versions of Postgres 11 through 13, you receive a "permission denied for schema pg_toast" error.
Permission denied for schema pg_toast
Customers using PostgreSQL versions 11 through 13 on Azure Database for Flexible Server can't use the pgstattuple
extension on objects within the pg_toast
schema.
In PostgreSQL 16 and 17, the pg_read_all_data
role is automatically granted to azure_pg_admin
, allowing pgstattuple
to function correctly. In PostgreSQL 14 and 15, customers can manually grant the pg_read_all_data
role to azure_pg_admin
to achieve the same result. However, in PostgreSQL 11 through 13, the pg_read_all_data
role doesn't exist.
Customers can't directly grant the necessary permissions. If you need to be able to run pgstattuple
to access objects under the pg_toast
schema, proceed to create an Azure support request.
timescaleDB
The timescaleDB
extension is a time-series database packaged as an extension for PostgreSQL. It provides time-oriented analytical functions and optimizations and scales Postgres for time-series workloads.
Learn more about TimescaleDB, a registered trademark of Timescale, Inc. Azure Database for PostgreSQL flexible server provides the TimescaleDB Apache-2 edition.
Install TimescaleDB
In addition to installing the timescaleDB
extension and allowing listing it, you need to include it in the server's shared preload libraries. A change to Postgres's shared_preload_libraries
parameter requires a server restart to take effect. You can change parameters using the Azure portal or the Azure CLI.
Using the Azure portal:
Select your Azure Database for PostgreSQL flexible server instance.
From the resource menu, under Settings section, select Server parameters.
Search for the
shared_preload_libraries
parameter and edit its value to includeTimescaleDB
.Select ** Save ** to preserve your changes. You now have the option - Save and restart. Choose this to ensure that the changes take effect since modifying
shared_preload_libraries
requires a server restart.
You can now enable TimescaleDB in your Azure Database for PostgreSQL flexible server database. Connect to the database and issue the following command:
CREATE EXTENSION IF NOT EXISTS timescaledb CASCADE;
Tip
If you see an error, confirm that you restarted your server after saving shared_preload_libraries.
You can now create a TimescaleDB hypertable from scratch or migrate existing time-series data in PostgreSQL.
Restore a Timescale database using pg_dump and pg_restore
To restore a Timescale database using pg_dump
and pg_restore
, you must run two helper procedures in the destination database: timescaledb_pre_restore()
and timescaledb_post restore()
.
First, prepare the destination database:
--create the new database where you want to perform the restore
CREATE DATABASE tutorial;
\c tutorial --connect to the database
CREATE EXTENSION timescaledb;
SELECT timescaledb_pre_restore();
Now, you can run pg_dump
on the original database and then do pg_restore
. After the restore, be sure to run the following command in the restored database:
SELECT timescaledb_post_restore();
For more information on the restore method with Timescale enabled database, see Timescale documentation.
Restore a Timescale database using timescaledb-backup
While running the SELECT timescaledb_post_restore()
procedure, you might get permissions denied when updating timescaledb.restoring flag. This is due to limited ALTER DATABASE permission in Cloud PaaS database services. In this case, you can perform an alternative method using the timescaledb-backup
tool to back up and restore the Timescale database. Timescaledb-backup is a program that makes dumping and restoring a TimescaleDB database simpler, less error-prone, and more performant.
To do so, you should do the following:
Install tools as detailed here.
Create a target Azure Database for PostgreSQL flexible server instance and database.
Enable Timescale extension.
Grant the
azure_pg_admin
role to the user that is used by ts-restore.Run ts-restore to restore database.
More details on these utilities can be found here.
Extensions and major version upgrade
Azure Database for PostgreSQL flexible server has introduced an in-place major version upgrade feature that performs an in-place upgrade of the Azure Database for PostgreSQL flexible server instance with just a select. In-place major version upgrade simplifies the Azure Database for PostgreSQL flexible server upgrade process, minimizing the disruption to users and applications accessing the server. In-place major version upgrades don't support specific extensions, and there are some limitations to upgrading certain extensions.
The extensions anon
, Apache AGE
, dblink
, orafce
, pgaudit
, postgres_fdw
, and timescaledb
are unsupported for all Azure Database for PostgreSQL flexible server versions when using in-place major version update feature.
Share your suggestions and bugs with the Azure Database for PostgreSQL product team.