Questions tagged [azure-functions-runtime]
424 questions
0
votes
1 answer
Chaining pattern activity function with reading data from blob and fan-out-fan-in execution
The question is somehow related to this one
I need to create a Http triggered Azure Durable Function that:
Gets an API Call with some parameters, where the most important one is the list of search_terms
Downloads a source data from Azure Blob…

Freejack
- 168
- 10
0
votes
1 answer
How to transform a http trigger Azure Function into Azure durable Function in Python?
I'm stuck with transforming an Azure HTTP triggered function into something more robust that can take more than 230 seconds.
I struggle with dividing the code into functions, not sure how to construct the activity, orchestrator and client function…

Freejack
- 168
- 10
0
votes
1 answer
All Azure Functions returning 404 after upgrading to v4 runtime
I recently upgraded our Azure Functions to use the new v4 runtime. I followed the migration guide from v3 to v4. As far as I know, I followed all of the steps and according to the Azure Portal, the functions app is now running runtime v4.x.
The…

Quiver
- 1,351
- 6
- 33
- 56
0
votes
1 answer
Blob Trigger Azure function is processing all files in a blob
I am trying to trigger a webjob when a new file is placed in blob in java , I have started using blob trigger azure function , but instead of processing newly added or updated files it is processing all files in the blob.
Below is the code…

Geeth
- 19
- 5
0
votes
1 answer
How to use Azure App Configuration Service with Azure Functions in local dev environment?
I am writing an Azure Function (Service Bus Topic Triggered Function in isolated mode) which is part of a bigger solution that has API and other projects. The API reads the configuration settings from Azure App Configuration Service and that is…

Gaurav Mantri
- 128,066
- 12
- 206
- 241
0
votes
1 answer
Funtion App not run defaultazurecredential.gettoken
I have an issue with Function app 1 after step "Start ConfigureServices" it must be run step "defaultazurecredential.gettoken" like Function App 2
Infrastructure:
+Both of them are located in the same ASP 1.
Function App 1 located in App…

ATY
- 41
- 5
0
votes
1 answer
Azure Function App endpoint stuck on 'running' but has already finished running
I have a Durable Function App (Elastic Premium) that gets triggered via Azure Data Factory. In ADF I have an activity that checks the runtime status of the activity that was triggered. However, I have an activity whose endpoint shows…

nahimmedto
- 25
- 6
0
votes
1 answer
Azure Function App shows custom runtime for images deployed as docker image
I am deploying an Azure Function via Terraform as a docker image and using the mcr.microsoft.com/azure-functions/python:4-python3.9-slim image as base.
I found no explanation on why the runtime version is still custom (~4) as seen on the image…

András Czinege
- 1
- 2
0
votes
0 answers
Azure Function HTTP trigger not triggering every time from IoT Device
I have a Shelly Motion Sensor 2 that is set up to trigger an anonymous Azure Function using .NET 6 isolated process runtime. But the Azure Function HTTP trigger is not being triggered properly.
The device is not able to use HTTPS, so I am allowing…

Martin H
- 349
- 4
- 16
0
votes
0 answers
Azure Function triggered by IoT Hub does not execute correctly
I am developping an Azure Function with the following structure:
Trigger: IoT Hub event.
Function: Gets the body of the telemetry message and applies some decoding to the data.
Output: Sends the processed data as json to en Event Hub.
IoT Hub --->…

NoelGK
- 1
0
votes
1 answer
Python.Runtime.dll not found in Azure Function(v4)
we have created an Azure function in the dotnet framework(.NET6) that processes some python scripts in runtime using pythonnnet which was embedded inside Numpy(3.7.1.28) - Nuget package.
Locally everything works fine(VS 2022, Windows 10). But once…

karmel
- 1
0
votes
1 answer
Azure functions queue trigger with managed identity
I created an isolated process Azure functions for queue trigger. Based on link I created managed identify string using __queueServiceUri. This property works locally when I specify in local.settings.json. But it doesn't work…

DxG
- 147
- 4
- 17
0
votes
2 answers
Disable/Enable Azure functions based on regions
I have a .net Azure function project which includes multiple functions such as EventGridTrigger function, BlobTrigger function etc. Few trigger functions in the project needs to be enabled only for specific regions. Is it possible to enable/disable…

DxG
- 147
- 4
- 17
0
votes
1 answer
Running Azure Functions on Azure giving error: The resource you are looking for has been removed, had its name changed, or is temporarily unavailable
I am new to Azure Functions and I am trying to follow the tutorial https://learn.microsoft.com/en-us/azure/azure-functions/create-first-function-vs-code-java
to create a basic HTTP Trigger Function using Visual Studio code and to deploy the same to…

Preethi H R
- 43
- 8
0
votes
1 answer
Java Azure Functions deployment error: Failed to execute goal com.microsoft.azure:azure-functions-maven-plugin:1.19.0:deploy
I have created a azure function in java created Using Command line by following below given Microsoft guide https://learn.microsoft.com/en-us/azure/azure-functions/create-first-function-cli-java
I have followed all the steps and locally I have…

Preethi H R
- 43
- 8