Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
28 views

I have a system of three blob containers being monitored by three separate functions. All three are set up with YAML CI/CD pipelines in Azure Dev Ops, and these pipelines succeed with their releases. ...
atomickiwi's user avatar
1 vote
2 answers
90 views

I have an ASP.NET MVC project where I am uploading an image to Azure. It works - the image is uploaded correctly, I can download and see the content of the image, all is good. I have a blob trigger ...
oscar hurtado's user avatar
0 votes
1 answer
84 views

public async Task RunAsync( [BlobTrigger("test/{name}", Connection = "CONN")]Stream incommingBlob, string name, ILogger log, [Blob("test/{name}", FileAccess....
user30615448's user avatar
0 votes
2 answers
106 views

I have a java azure function with blob triggers. We are moving from connection string based authentication to managed identity based authentication. Please find the azure function configs we have ...
Praveen's user avatar
  • 514
0 votes
1 answer
160 views

I am new to azure functions.I have written in python I am using blob Trigger but it gets stuck at Host lock lease acquired by instance ID '000000000000000000000000055662B6'. some forums say init.py is ...
academy_courses2021's user avatar
2 votes
2 answers
283 views

I am writing an Azure Function that needs to monitor a blob storage container and act on new blobs in that container. The storage account that the blob container I'm monitoring is in is different than ...
stevestevesteve's user avatar
0 votes
1 answer
602 views

In azure I have got a Function App deployed in a VNET, alongside a subnet containing a private endpoint connected to a Storage Account through private DNS zones (one for each of the storage types), ...
Recusiwe's user avatar
  • 890
0 votes
1 answer
106 views

I have the requirement to execute an Azure Function (let's call it OperationalFunction) only once in parallel. What I mean is the following: I have two "entry point" functions: I have a ...
RB_D4S's user avatar
  • 1
0 votes
1 answer
64 views

I have a data factory pipeline that is triggered by a create blob trigger. I need to parse the blob (JSON) and set a variable from the blob content that can be used downstream in the pipeline. I've ...
user avatar
2 votes
1 answer
327 views

I have a .NET Azure Function that has a BlobTrigger that I want to trigger on new blobs. My problem is that the function does not only trigger on newly added blobs, but also on all existing blobs that ...
George's user avatar
  • 62
0 votes
1 answer
142 views

When I have a timer-triggered Azure Function (v4 - running on .NET 8, isolated worker model), I have to define a CRON expression for the schedule: [Function(nameof(TimerFunction))] public static void ...
marc_s's user avatar
  • 760k
1 vote
2 answers
530 views

**I am trying to run my function app Blob trigger in my local . installed core tools and host.json,local.settings.json are configured for local . got this error , here is my class and json files.** ...
sindhu's user avatar
  • 35
0 votes
1 answer
448 views

I'm trying to get a blob-triggered Azure Function to work. I got the samples to run, and am all set up with my local development AzureWebJobsStorage connection string set up to use Azurite. I am ...
Rich's user avatar
  • 315
0 votes
1 answer
211 views

I have made a simple Azure Function with blob trigger. It is working fine in my development environment using Azure storage Explorer. However, when I created the function in Azure portal it is not ...
Muhammad Ashhar Hasan's user avatar
0 votes
2 answers
274 views

I just want to test a simple Azure function with blob trigger but I get following error locally when I try to run/debug the Azure Function. An unhandled exception has occurred. Host is shutting down. ...
Muhammad Ashhar Hasan's user avatar
1 vote
1 answer
1k views

I am getting the following errors in my Blob Triggered Azure Function App: Azure.Core: No such host is known. (examplestorage.blob.core.windows.net:443). System.Net.Http: No such host is known. (...
pumpkinchugger's user avatar
0 votes
2 answers
455 views

I am using Azure and trying to deploy a function to Azure function app, which reads in a file from blob storage when triggered, processes it and then returns the output as a csv. I am receiving an ...
India Skylar's user avatar
0 votes
1 answer
722 views

Got a function working locally, triggered when a file is dropped and now deploying to azure. Function signature looks like this. Notice the binding expression. This expression is attempting to pull a ...
bitshift's user avatar
  • 7,032
0 votes
1 answer
54 views

What is wrong with my binding expression when trying to use a Blob triggered function? [BlobTrigger("%CustomerABC:InboundFolder%/{name}", Connection = "AzureWebJobsStorage")] ...
bitshift's user avatar
  • 7,032
0 votes
1 answer
398 views

I have a process that uploads multiple files to azure blob storage. That storage raises events (either through storage trigger or event grid). I need to be able to determine from events consumer ...
tlt's user avatar
  • 15.5k
1 vote
1 answer
143 views

I tried to trigger the Azure blob function through ADF and got the following error. I have an issue with the structure of the request body format. could you please explain the format of the request ...
Ramesh Madhubhashitha's user avatar
0 votes
1 answer
149 views

I am working on setting up an Azure Function with a Blob Storage trigger using Python. Despite following the documentation and ensuring my setup seems correct, the trigger is not firing when a new ...
Ramesh Madhubhashitha's user avatar
0 votes
1 answer
298 views

I have create Azure Function with Blob trigger on storage account but when I upload blob in storage account function is not triggering. I have created environment variable with ConenctionString with ...
Naimesh Vaja's user avatar
1 vote
1 answer
1k views

I have recently created an Azure Function app (BlobTrigger) using .NET 6 and that worked perfectly. Then I decided to migrate to .NET 8 and started running into the issue below. I have tried various ...
Dave Green's user avatar
0 votes
1 answer
274 views

I have an Azure Function as below: import azure.functions as func import logging import os import tempfile import subprocess import json from pathlib import Path import glob app = func.FunctionApp()...
mfcss's user avatar
  • 1,611
0 votes
1 answer
490 views

I am working with C# and .NET8. Azure Function Version 4 I have a Blob Trigger Azure Function running without issues in Azure cloud. The function is updated using GitHub Actions from my repository. ...
Gonzalo Gomez's user avatar
2 votes
3 answers
4k views

I am porting an old .NET 6 in-process Azure Function app, to .NET 8 isolated worker model. I have an issue where it seems like the app configuration expression resolution for our Azure Function ...
kdeez's user avatar
  • 454
0 votes
1 answer
566 views

I have a consumption based function app in python which will be triggered when a blob with extension .db is created/uploaded in a folder in a container of a storage account. function.json: { "...
Rahul Sharma's user avatar
-1 votes
1 answer
205 views

I have the following situation. I had a function that ran on Windows App Service Plan. That function processed blobs. The function had default LogsAndContainerScan trigger. Now after some time I ...
Mykhailo Seniutovych's user avatar
0 votes
1 answer
118 views

function.json { "scriptFile": "__init__.py", "disabled": false, "bindings": [ { "name": "blob", &...
Shah Deep's user avatar
0 votes
1 answer
796 views

"I am unable to transfer files from Blob to SharePoint using a Logic App workflow. I have attempted to create a workflow, but after getting blob contents, it states 'moved secure content not ...
Anjum aara's user avatar
0 votes
1 answer
138 views

I have two functions in my container: one with a blob trigger and another one with a HTTP trigger. Runtime version is 4.28.4.4: The managed environment is "Consumption only". When I add a ...
Alexandre Giuseppe's user avatar
0 votes
1 answer
501 views

Background: I have an Az blob storage account with many files in it, organized in folders like this: /upload/yyyy/mm/dd/*.csv My function is a BlobTrigger, like so: [FunctionName("...
Troy Terry's user avatar
0 votes
1 answer
313 views

I am using blob trigger to read and process blobs from Azure storage container. Currently, it works fine, I am able to receive the blob content and process it using the annotations as shown below. Now ...
Praveen's user avatar
  • 514
0 votes
1 answer
890 views

I have a blob trigger function. this code snippet from init.py: credential = DefaultAzureCredential() endpoint = os.environ["connect__accountEndpoint"] client = CosmosClient( url = ...
aca1803's user avatar
  • 21
0 votes
1 answer
369 views

Here's all I've tried to try and stop the parallel processing: host.JSON file looks like this: "version": "2.0", "extensions": { "queues": { "...
BlakeB9's user avatar
  • 687
1 vote
2 answers
510 views

How can I keep the blobs_extension app key persistent so that I don't have to update the Webhook event subscription endpoint every time I restart or re-deploy a function or change any function or blob ...
Alexzander Zharkov's user avatar
2 votes
3 answers
2k views

I have the following Function (BlobTrigger) running as an isolated process (net8). Its failing to trigger when I upload a file to the storage account. I’m not sure why its not triggering. Any help ...
O'Neil Tomlinson's user avatar
1 vote
2 answers
282 views

In Azure, I'm setting up an Azure Function with a blobtrigger, it uses a SAS connectionstring to a blobstorage account in the same subscription, in the same resource group. When starting the function, ...
Dries Van Hertbruggen's user avatar
0 votes
1 answer
285 views

We have a Azure Function at work that stopped working so I got tasked to debug it and found that it gets stuck in a timeout loop right of the bat. I don't have that much experience with Azure ...
Sebastian Boström's user avatar
1 vote
1 answer
153 views

Once deployed the Trigger functions are long running tasks that trigger on certain events is what I believe to be true. To be precise, consider a scenario where I have deployed a Blob trigger which ...
BigChungus's user avatar
0 votes
1 answer
744 views

I need to create a function that polls a container every 5 minutes for new blobs, and then the data contained in each of these blobs will be forwarded on to an Event Hub to be picked up a SIEM system. ...
Ross's user avatar
  • 21
0 votes
2 answers
816 views

I'm trying to make an example of BlobTrigger Azure Function using Visual Studio Code. For that I was following along the Book "Beginning Azure Functions" of Rahul Sawhney. My csproj file is: ...
Code4Fun's user avatar
  • 473
0 votes
2 answers
648 views

I have set up 7 logic apps for 7 different storage containers. The logic apps copy new blobs in specific containers to specific folders in a shared drive. 5 of the 7 work without issues. 2 of them ...
ChrisT's user avatar
  • 1
0 votes
1 answer
496 views

I used blob trigger template to create an Azure function that is triggered by new file updated in Azure blob storage. I am using python v2 to create Azure function in VScode. My issue is not able to ...
langlearn's user avatar
0 votes
2 answers
455 views

Since we switched to Azure Functions with the Python V2 programming model, we experience a lot more problems during and after deployment then before. One that keeps puzzling me is that a blob trigger ...
pietz's user avatar
  • 2,613
0 votes
1 answer
2k views

Context A blob triggered function written in Java: @FunctionName("blob") public String execute( @BlobTrigger(name = "test", path = "testcontainer/{name}", connection =...
Amir Keibi's user avatar
  • 2,194
0 votes
1 answer
654 views

I followed the instructions here https://learn.microsoft.com/en-us/azure/data-factory/how-to-create-event-trigger? to create a pipeline and trigger but when I add a new file the trigger @triggerBody()....
Addy's user avatar
  • 1,851
0 votes
1 answer
748 views

I am trying to create a function that is executed when a file .xlsx is created in a container, and to do that I am using an event grid as proposed by the azure documentation: https://learn.microsoft....
Atilio's user avatar
  • 125
0 votes
1 answer
465 views

I am getting this error when running my Azure function locally on my machine. The function is running fine on my colleagues machine but I am getting the below error: [2023-08-22T07:44:21.803Z] An ...
Medha's user avatar
  • 1