azure-sql-db-hyperscale-autoscaler
                                
                                 azure-sql-db-hyperscale-autoscaler copied to clipboard
                                
                                    azure-sql-db-hyperscale-autoscaler copied to clipboard
                            
                            
                            
                        Autoscaling Azure SQL Database Hyperscale with Azure Functions
This implements a new rule for analyzing the limit on the number of workers, which in many scenarios, can compromise the stability of the server while it is expected to...
All GEN4 and GEN5 listed are in lower case but the SQL query returns camel case. So was not working without this fix.
As a premise of ease for other developers; An example file of how the settings should be made for local execution was included.
We had to change line 200 of the AutoScaler.cs file from ... var index = availableSlos.IndexOf(currentSLO.ToString()); to... var index = availableSlos.IndexOf(currentSLO.ToString().ToLower()); Once we did that, the RequestedSLO was showing correctly...