Questions tagged [azure-functions-runtime]

424 questions
0
votes
2 answers

Azure.Storage.Blobs: No valid combination of account information found

I have created blob triggered azure function and while connecting it to azure I am getting error as "No valid combination of account information found". Here is my code sample CloudStorageAccount StorageConn; CloudBlobClient BlobClient;…
0
votes
1 answer

How do I set app setting value using Azure Function?

Wondering if it's possible for an Azure Function to set a value of an app setting. For example whilst developing locally or in production one can read custom settings by binding it to a class builder.Services.AddOptions() …
nlv
  • 791
  • 7
  • 28
0
votes
1 answer

Azure function runtime 3.3.1 cannot be chosen

when we set the FUNCTIONS_EXTENSION_VERSION to either 3.3.1 or 3.3.0 it still selects 3.2.0, so it seems that 3.3.1 is still not available to us even though it is on the release page? Anybody know what could be wrong?
0
votes
1 answer

Two Azure Functions share an In-Proc collection

I have two Azure Functions. I can think of them as "Producer-Consumer". One is "HttpTrigger" based Function (Producer) which can be fired randomly. It writes the input data in a static "ConcurrentDictionary". The second one is "Timer Trigger" Azure…
0
votes
0 answers

Http triggered Azure function - not scaling down even after idle time beyond 20 minutes

Below Http triggered Azure function running on consumption mode, not returning the latest secret value from Azure Keyvault even after idle time of 1 hour Assumption as per az func scaling: Azure function app will be deleted (or) scaled down to zero…
191180rk
  • 735
  • 2
  • 12
  • 37
0
votes
1 answer

Image not Loading in HTML file generated by azure function

I am trying to embed an image inside HTML which is generated by an azure function. when I run it in localhost I am able to see the image, but when I convert that to an azure function it throws a broken thumbnail image.iam using matplotlib to save…
0
votes
1 answer

Azure Function Logging

How does one configure logging in Azure Functions ver 3? The only way I managed to 'some what' configure logs is by having this in my Startup.cs (although I would like to have different configurations for local/development/production): …
ShaneKm
  • 20,823
  • 43
  • 167
  • 296
0
votes
0 answers

Azure function .Net 5 HTTP Trigger Post request Data limitation

I am trying to Post a data that is more than 4 MB (4096 Bytes) to the Azure function using HTTP Trigger. It is timing out . Following is my code in Azure function public static class SampleFunction { [Function("SampleFunction")] public static async…
0
votes
1 answer

Azure Functions not displaying logs in Monitoring

I've created an Azure Function App with python and have published an app that runs every 5 minutes. I used to go to the Function > Monitoring to see the last 30 day runs. I've checked today and all logs have disappeared and the function does not…
0
votes
1 answer

Use composer packages in Azure Functions PHP custom handler

I'm trying to install composer dependencies in Azure Fucntions PHP custom handler. With node js, the npm install command is run during function initialization. What is the correct way to install dependencies using PHP custom handler?
0
votes
1 answer

upload file to blob storage with Azure functions in PowerShell using Azure module

Requirement is to store the file in Storage account through Azure functions in PowerShell using Az module. Please help. $todaydate = Get-Date -Format MM-dd-yy $LogFull = "AzureScan-$todaydate.log" $LogItem = New-Item -ItemType File -Name $LogFull "…
0
votes
1 answer

Azure Function running in AKS throws 500 on query string parameter for http trigger function

I have an azure function app that I have containerized and running in AKS. One of my http endpoints has a query string parameter of code=. When I call that endpoint I immediately get a 500 response. To rule out anything in the code I only return a…
0
votes
2 answers

Azure functions event hub trigger binding registration failing when deploying code from storage account

Event hub trigger binding registration failing when deploying the code from zipped code in a storage account using the app setting, WEBSITE_RUN_FROM_PACKAGE. Giving the following error: The binding type(s) eventHubTrigger are not registered The same…
0
votes
4 answers

Azure function freezes

I have 15 azure functions in one project. I noticied that 2 of them freeze in azure cloud. Functions should be triggered by timer "schedule": "0 */1 * * * *" every minute, but from what i see in azure they called more rarely. I tried to change…
Maxim Kitsenko
  • 2,042
  • 1
  • 20
  • 43
0
votes
2 answers

Azure function error: app does not support remote build as it was created before August 1st, 2019

I am trying to deploy my azure function with VS code using func azure functionapp publish nhtsa --build remote and I am getting below error. Remote build is a new feature added to function apps. Your function app does not support remote build as it…