462 questions
2
votes
4
answers
3k
views
Is it possible to Pass Azure Function ServiceBusTrigger connection at runtime
My Code Look like this :
public class Startup : IWebJobsStartup
{
public async void Configure(IWebJobsBuilder builder)
{
Get Connection string Via HTTP Service.
...
0
votes
1
answer
602
views
Azure Function Consumption streaming large file silently error 500
I am using Azure Functions, and have stumbled upon an issue.
When requesting large amount of data from an external source, it seems the stream is shut. I have simplified the example as simple as I ...
4
votes
2
answers
3k
views
Why is my python timer trigger function not running at the correct time?
this is probably a noob question. I have an Azure Function that responds to HTTP requests and it works fine, I can call it from a browser or from a Python 3.8 script.
I want to make another function ...
1
vote
2
answers
2k
views
Issue with Azure function configuration object caching
My Application settings of Azure function app, has keyvault reference like @Microsoft.KeyVault(SecretUri=https://myvalut.vault.azure.net/secrets/mySecret/),
whenever new version of "mySecret" ...
4
votes
1
answer
978
views
Limit Azure Function to be called from just one domain
Is there any way to limit an Azure function to just be allowed to be called from a particular domain? It is just in order to do not have an api exposed in public, I want that api to just be consumed ...
1
vote
0
answers
822
views
JobHost stopping randomly while running azure timer function app
I have timer triggered azure function which runs in every 5 seconds. But Web Job Host is stopping in every 3/4 hour randomly for about 5 minutes and then start again.
I am not sure why? There is no ...
-1
votes
1
answer
193
views
Autofac Dependecy Injection Azure function SingleInstance
I followed this links. https://dontcodetired.com/blog/post/Azure-Functions-Dependency-Injection-with-Autofac
Autofac Binding at Runtime
It worked fine. I want to know when azure function scales, ...
0
votes
2
answers
3k
views
How can I get the count of Azure function execution programmatically in c#?
I have timer trigger azure function which runs on every minute. Is it possible to get the count of how many time the function executed in my Azure function c# code at every time function execute?
PS: ...
2
votes
0
answers
494
views
Azure function - Issue in referencing custom c# class library project
using Microsoft.Azure.WebJobs;
using Microsoft.Azure.WebJobs.Host;
using Microsoft.Extensions.Logging; //Nuget package
using MyComp.MyLib.Contracts.Configuration; // Custom namespace after adding ...
0
votes
1
answer
48
views
How to Create (and remove) AzFunctions at runtime
I’m planning to build a mediator service to dynamically bind to various azure service bus subscriptions. This is to facilitate the http callback pattern using Azure service bus to manage the clients ...
0
votes
1
answer
375
views
Azure functions runtime unable to start
Trying to deploy azure function to azure.
Getting this error:
The function runtime is unable to start. Microsoft.Azure.WebJobs.ServiceBus: Microsoft Azure WebJobs SDK ServiceBus connection string
'...
1
vote
1
answer
2k
views
Azure Function: Insufficient memory to continue the execution of the program
Trying to run an Azure Functions project locally and get the following error:
Insufficient memory to continue the execution of the program.
This happens before anything is logged or startet so there ...
1
vote
1
answer
3k
views
Trigger the HttpTrigger function using Timer trigger using azure function for python
I want to trigger HttpTrigger function every day at 9.00 PM using the Timer trigger. Is it possible in Azure function for python?
I am not able to understand how can I implement it? Is there any way ...
2
votes
0
answers
627
views
Azure Functions for Node Shutdown Hook?
Is there a shutdown hook for JS Azure Functions? The C# library supports a CancellationToken which allows the user to supply a shutdown hook, but I can't find any doc on the equivalent for the v2 ...
1
vote
2
answers
2k
views
Azure function : Cant load DLL cognitive speech dll
Unable to load DLL 'Microsoft.CognitiveServices.Speech.core.dll' or
one of its dependencies: The specified module could not be found.
(Exception from HRESULT: 0x8007007E)
Please help Been ...
2
votes
1
answer
338
views
Do Azure Function output bindings have a retry policy?
Certain Azure Function triggers have a retry policy per docs, but what about output bindings? What if an attempted write to blob via output binding fails? Is there any retry around that?
0
votes
1
answer
1k
views
Azure functions - Deploy 64 bit only application
So a quick background - I am running an application called OpenFace - a facial behavior analysis toolkit. Its written in C++ but they have COM interops which allows me to use it within a NET framework ...
11
votes
2
answers
8k
views
Azure Functions host.json: maxPollingInterval
If I read the documentation for maxPollingInterval:
The maximum interval between queue polls
From here: https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-queue#...
11
votes
5
answers
8k
views
Error in Azure Function App VS 2019 .NET 3.0 - Method not found: 'IFunctionsHostBuilder.get_Services()'
Issue with Azure Functions/EFSQLSERVER .NET CORE 3.0:
To reproduce:
Use Visual Studio 2019 16.2.1
Use Azure Function template to create a project.
Changed Target Framework to .NET Core 3.0
Add ...
1
vote
1
answer
7k
views
Azure Functions Scoped instances are disposed and no longer available
I am receiving below error when function app is running on the run-time version "2.0.12701.0" (FUNCTIONS_EXTENSION_VERSION = ~2 in App Settings). As soon I change the FUNCTIONS_EXTENSION_VERSION to 2....
0
votes
1
answer
217
views
Azure function app deployment working with VS 2017 but not with Azure Web App deploy task
I have release azure function app from VSO Azure App Service Deploy release task,
it gives:
System.Nets.SocketException: An attempt was made to access a socket in a way forbidden by its access ...
0
votes
1
answer
163
views
Windows PDB writer version Error while running an Azure Time Trigger Function
I have an Azure time trigger function developed in Azure portal which will trigger once in a day.
The triggering function was working fine yesterday, but suddenly today function is returning the below ...
4
votes
1
answer
2k
views
ActivityTrigger Durable Function: max execution time limit via Azure Function App and Consumption plan
Is an ActivityTrigger Durable Function still restricted to max timeout duration of 10 mins via consumption plan below:
https://learn.microsoft.com/en-us/azure/azure-functions/functions-scale#timeout
...
1
vote
1
answer
384
views
Debug azure function 1.0 in vscode?
What is the proper way to use the azure function core tools and debug a V1 nodejs function locally using visual studio code?
For a new V2 function everything works great. I cannot update to V2 ...
2
votes
1
answer
4k
views
Azure Functions 2.0 - EventHubTrigger - System.Private.CoreLib: Could not load file or assembly "FunctionsProject.dll"
I was able to run function app which has eventhub binding from local as well as from West US2 Consumption plan. From last 4 days, after we moved all our dependent projects to build in x64 and updating ...