Questions tagged [azure-blob-trigger]
123 questions
1
vote
2 answers
Azure Function Blob Trigger Retry Count
I have a situation where a blob might fail to process the first time but might work on a subsequent execution.
The issue I am having is around monitoring true failures, at the moment the first failure will throw an exception, which is logged and…

blawford
- 435
- 5
- 18
1
vote
2 answers
Azure Function fires multiple times for the same Blob storage event
My Python Azure Function configuration file (function.json) defines a Blob storage trigger.
When the Azure Function wakes up (i.e. the server shown in Live Metrics becomes online after some sleeping time) it processes all the existing blobs…

Rik797
- 11
- 4
1
vote
2 answers
Azure Function BlobTrigger: Microsoft.WindowsAzure.Storage: No connection could be made because the target machine actively refused it
I am not able to run my azure function locally written in java which should work based on BlobTrigger.
I am facing the following error:
A host error has occurred
Microsoft.WindowsAzure.Storage: No connection could be made because the target…

ARINDAM BANERJEE
- 659
- 1
- 8
- 29
0
votes
0 answers
ADF Blob Trigger does not have @triggerBody().folderPath
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().folderPath and @triggerBody().fileName
in the…

Addy
- 1,817
- 2
- 18
- 23
0
votes
1 answer
Error in Trigger Azure Functions on blob containers using an event subscription
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:…

Atilio
- 57
- 2
- 10
0
votes
0 answers
Azure Queue Storage: Value cannot be null, how to fix Azure Queue Storage error
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 unhandled exception has occurred. Host is shutting…

Medha
- 1
0
votes
1 answer
Azure Function BlobTrigger - BlobScaninfo missing
I understand that when using an Azure Function Blob trigger it is possible to rerun a trigger by either removing the blob receipt in the blob container azure-webjobs-host folder blobreceipts.
Or it's also possible to update the LastScan date or…

Sam Barber
- 458
- 1
- 6
- 13
0
votes
1 answer
Az Function EventGrid trigger from Blob Storage upload slow to start
I have implemented a system where FrontEnd upload a photo into a blob container, then Blob fire an event on EventGrid on "BlobCreated" that trigger an Az Function which generate a thumbnail and save it into a MongoDb instance.
I follow the rules…

DavideP
- 57
- 10
0
votes
1 answer
Trigger Azure Function which update the status of a record on blob containers file deletion
Use Case : We have a blob container contains CSV files which gets deletes on 24 hours from the creation. On delete event of file would like to call a azure blob trigger function to update the status of respective file row in SQL DB to…

naga sri
- 3
- 1
0
votes
1 answer
Azure function .zip upload
I am trying to fix an Azure function that is reading the stream from blob storage for uploded folders and its files. I am trying to add code for reading the contents/file name from a uploaded zipped folder.
I have two issues:
Issue #1: I was able to…

user21225864
- 1
- 2
0
votes
1 answer
How to ensure BlobTrigger is activated only when file is 'added' in the container and not when deleted due to LifeCycle management Policy?
I have function app pointing to azure storage using BlobTrigger.
[FunctionName("ProcessFiles")]
public async Task Run([BlobTrigger("container-path/{name}", Connection = "myconnection")] Stream myBlob, string name, ILogger log)
{
//Processing…

user2948533
- 1,143
- 3
- 13
- 32
0
votes
2 answers
Azure Functions python: BlobTrigger starts when stream is empty
I am trying to implement a pipeline that each step writes a file in a blob container.
Steps:
pdf triggers a function that extracts the text and saves it as txt in the container
the extracted text triggers a function that polishes the result and…

Otrebor
- 416
- 4
- 12
0
votes
1 answer
Not able to run Azure blob triggered function in portal
I'm new in developing with Azure. Currently I'm trying to develop a blob triggered python function which was initially developed using VS Code. When it was tested by running in VS Code, it worked perfectly and got the expected output, however when…

Luis Chigne
- 11
- 1
0
votes
1 answer
Azure Blob Trigger - Dynamic BlobOutput Binding Name Based on Input Container
[Function("Function1")]
[BlobOutput("test-samples-output/{name}", Connection = "ConnectionString1")]
public string Run([BlobTrigger("test-samples-trigger/{name}", Connection = "ConnectionString1")] string myBlob,
…

CDWatson
- 41
- 4
0
votes
0 answers
Azure Functions Blob Trigger not working with Python V2 model in local
I'm new to azure functions so bear with me.
I'm working on a microservice that will use a blob storage trigger and input/output bindings to process data and write to a database, but I am having trouble with the basic blob storage trigger function.…

MoHaKh
- 1