Remediation
From Azure Portalβ
- Login to Azure Portal using https://portal.azure.com.
- Go to
Azure Database for PostgreSQL flexible servers
. - For each database, under
Settings
, clickServer parameters
. - Search for
connection_throttle.enable
. - Set
connection_throttle.enable
toON
. - Click
Save
.
From Azure CLIβ
Use the below command to enable connection_throttle.enable
:
az postgres flexible-server parameter set --resource-group <resourceGroup> --server-name <serverName> --name connection_throttle.enable --value on
From PowerShellβ
Use the below command to update connection_throttling
configuration:
Update-AzPostgreSqlFlexibleServerConfiguration -ResourceGroupName <resourceGroup> -ServerName <serverName> -Name connection_throttle.enable -Value on