Questions tagged [azure-blob-trigger]

123 questions
0
votes
1 answer

How get multiple output from Azure Function Blob Trigger using python? i.e. "introduce a loop, instead of defining so many outputblobs"

I've a problem in defining multiple output for a blobtrigger case in Azure using python. How can I set all of the tries of WhileLoop into Outputblob? Now, I just get the last entity (replace the previous ones). I put the code for --init--.py: import…
Kave
  • 1
  • 2
0
votes
1 answer

Azure Function ~3 - AI (Internal): ERROR: Exception in Command Processing for EventSource Azure-Core

My project (.net core) includes an Azure Function (~3) as well a Azure Storage Account (Blobs). Currently, when processing my blobs from Storage Account via the Azure Form Recognizer API, I get the following error via Application Insights: AI…
0
votes
1 answer

compress and write a file in another container with azure blob storage trigger in nodejs

i have to make an api call passing a compressed file as input. i have a working example on premise but I would like to move the solution in cloud. i was thinking to use azure blob storage and the azure function trigger. i have the below code that…
zanza67
  • 223
  • 4
  • 20
0
votes
1 answer

Call Azure Function with Blob trigger

Does anyone aware of some way to trigger Azure Function having Blob trigger? No matter via API or using "Test/Run" feature. The case is I need to do that in testing purposes. Currently what I see is one can provide name of the file in blob storage…
0
votes
2 answers

Monitoring Azure Blob container file

I have a blob container in which I receive XML files. This container gets empty once the files are processed by function app. Is it possible to set up an alert (via email) if those files didn’t processed within 24hours? That is, if still files are…
AskMe
  • 2,495
  • 8
  • 49
  • 102
0
votes
2 answers

Azure Function is not getting triggered - Blob Storage Trigger

I have a simple Azure Function that is triggered when a new item is added in a Blob Storage. The function reads the new JSON file uploaded to the Blob Storage and loads the information in a DataBase. It works locally and when I deployed the function…
0
votes
1 answer

Azure logic app to connect to Virtual machine and run azcopy

I need to put together a logic app. The trigger in that if/when a new file comes to a blob storage the new file will be moved to a new location say 'XYZ'. The way the file will move to new location XYZ is, the logic app in actions will connect to…
Sarah
  • 1,199
  • 2
  • 21
  • 42
0
votes
1 answer

Error Launching Blob Trigger function in Azure Functions expected str, bytes or os.PathLike object, not PosixPath

My problem is: I try to execute a fresh uploaded python function in an Azure Function App service and launch it (no matter if I use blob trigger or http trigger) I allways get the same error: Exception while executing function:…
MrPotatoServer
  • 175
  • 5
  • 15
0
votes
0 answers

Dynamically specify the blob output path

I have written an IoT Hub Trigger which gets triggered when data is received and write it to Datalake Storage using output binding. Current Output Binding : @BlobOutput( name = "target", path =…
0
votes
2 answers

Azure function app blob trigger cannot upload file

I've created a blob trigger that accepts a file from a blob, unzips it and moves it to another blob using streams. My code looks like this [FunctionName("Requests")] [StorageAccount("samplecontainer")] public static void…
0
votes
1 answer

How to clone an existing blob to an Input Asset with Azure Media Services v3

I'm trying to create a Blob Trigger that will start an Media Service job when a video is uploaded to a specific container. I can't figure out how to create an input asset from that blob within the function app. There is clear documentation on this…
0
votes
0 answers

Blob trigger re-running copy on publish

I've got a fairly simple blob trigger in C# which just copies over files from one container to another when a file is uploaded. The frustrating thing is that any time I publish the trigger from Visual Studio it reruns over all the files and recopies…
morganics
  • 1,209
  • 13
  • 27
0
votes
2 answers

Issue in deploying Azure powershell function app with terraform

I am facing the below error with azure function app blob trigger deployed with terraform D:\a\1\s\src\RequestProcessor.cs:line 196 2021-01-08T14:24:46.222 [Error] Executed 'Functions.BlobTrigger1' (Failed, Id=973f1e27-3dc2-43d3-9463-7cac64bf56b7,…
0
votes
1 answer

Is there a way to only pass the appended blob content to blob trigger Azure Function?

I am trying to make a blob trigger azure function for log files, but the problem is it will pass through the entire blob content when any blob is created or updated. So I am wondering is there a way to only get the appended blob…
0
votes
1 answer

Azure Functions BlobTrigger Properties Binding Problem

I am trying to create a Azure Function that uses a BlobTrigger to manipulate some files and then save them back into the blob. To do this I want to be able to access the BlobProperties object to check the Content-Type of the file, to ensure it is…
Ryan Thomas
  • 1,724
  • 2
  • 14
  • 27
1 2 3
8 9