You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Azure Functions SQL Extension or Extension Bundle Version:
c# net8 isolated function
Microsoft.Azure.Functions.Worker.Extensions.Sql;3.1.284
Is this a deployed or local function: either
What type of Database are you using? (Run SELECT @@VERSION as Version, SERVERPROPERTY('EngineEdition') as EngineEdition on your database)
deployed: Microsoft SQL Azure (RTM) - 12.0.2000.8
Oct 2 2024 11:51:41
Copyright (C) 2022 Microsoft Corporation, 5
local: Version EngineEdition
Microsoft SQL Server 2019 (RTM-CU27-GDR) (KB5040948) - 15.0.4382.1 (X64)
Jul 1 2024 20:03:23
Copyright (C) 2019 Microsoft Corporation
Express Edition (64-bit) on Windows 10 Enterprise 10.0 (Build 22621: ) (Hypervisor), 4
List any custom settings for your function app. This could be a custom time-out defined specifically for your database server or optional configuration that can be customized for the app defined here.
no custom settings
I'm not really familiar with this Azure App Configuration stuff so I don't have an immediate answer, but digging around some other issues found this response to a similar question : Azure/azure-functions-host#9598 (comment)
This is just a lead: I remember reading that Event-based scaling doesn't allow dynamic elements in the function signature, all queues, databases, etc need to be hardcoded, constant, or app setting reference.
However, it is possible when Runtime-based scaling is enabled (Configuration --> Function Runtime Settings --> Runtime Scale Monitoring). This setting has conditions and affects a wider range of behaviour so check if that matches your use case.
In case that helps at all.
Is this functionality that you've successfully used in other extensions for signature provided parameters?
In any case, a workaround is always to just use the Azure Function app settings and define your connection string there. Not ideal I realize, but hopefully that could at least unblock you until we can figure out if this is even possible to support currently.
Azure Functions SQL Extension or Extension Bundle Version:
c# net8 isolated function
Microsoft.Azure.Functions.Worker.Extensions.Sql;3.1.284
Is this a deployed or local function: either
What type of Database are you using? (Run
SELECT @@VERSION as Version, SERVERPROPERTY('EngineEdition') as EngineEdition
on your database)deployed: Microsoft SQL Azure (RTM) - 12.0.2000.8
Oct 2 2024 11:51:41
Copyright (C) 2022 Microsoft Corporation, 5
local: Version EngineEdition
Microsoft SQL Server 2019 (RTM-CU27-GDR) (KB5040948) - 15.0.4382.1 (X64)
Jul 1 2024 20:03:23
Copyright (C) 2019 Microsoft Corporation
Express Edition (64-bit) on Windows 10 Enterprise 10.0 (Build 22621: ) (Hypervisor), 4
List any custom settings for your function app. This could be a custom time-out defined specifically for your database server or optional configuration that can be customized for the app defined here.
no custom settings
Steps to Reproduce:
Program.cs
CollectEvents.cs
The text was updated successfully, but these errors were encountered: