Changing wal_level configuration in Azure Database for PostgreSQL

Emanuele Quinto 1 Reputation point
2020-09-07T10:35:40.82+00:00

According the the question Changing wal_level configuration in Azure Database for PostgreSQL referred from Debezium > Test with Postgres on Azure support for

wal_level = logical
max_wal_senders = 1
max_replication_slots = 1 

was expected by 4Q/2019.

What is the status? Has it been implemented?

Azure Database for PostgreSQL
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Anurag Sharma 17,576 Reputation points
    2020-09-07T11:39:01.543+00:00

    Hi @Emanuele Quinto , you can change the appropriate configuration as mentioned below through Azure CLI:

    az postgres server configuration set --resource-group mygroup --server-name myserver --name azure.replication_support --value logical  
    
    az postgres server restart --resource-group mygroup --name myserver  
    

    If you want to change these through azure Portal, please refer to below screenshot:

    23054-image.png

    Please refer to below article for complete details:

    https://learn.microsoft.com/en-us/azure/postgresql/concepts-logical

    0 comments No comments