Questions tagged [azure-blob-trigger]

123 questions
0
votes
1 answer

Can you use a BlobTrigger for a blob container with millions of blobs?

I have an existing blob container with over 3 million blobs in it. I have written an Azure Function using BlobTrigger and a Blob output binding to copy the file, including it's tags, to another container on another storage account. The Azure docs…
0
votes
1 answer

Can't have 2 blob trigger functions in the same FA listening on the same container

I have single FA that contains 2 functions. Both are triggered from the same container, but on different filters. When I do that, I get following error: Function 1 Function 2 I event tried creating a new container, and having 2 different…
Serlok
  • 432
  • 1
  • 10
  • 24
0
votes
1 answer

Function App with binding expression not triggering

I am using Binding Expression and Complex Object settings like so in my blobtrigger function app. I have included "local.settings.json" file using DI by overriding ConfigureAppConfiguration() as explained in the…
harry777
  • 61
  • 1
  • 5
0
votes
1 answer

Azure Function fires twice with SFTP when files uploaded

I have a BlobTrigger Azure Function which works with SFTP Connection via Webhook Event in Container. So my problem is when I upload files with SFTP Connection it fires my Azure Function twice. (via SFTP Clients(WinSCP, FileZilla etc.) or even with…
0
votes
1 answer

Azure function trigger Twice

Hello I have a problem about azure functions. I have a blob trigger function on azure. The problem is when i try to upload a file to container using by SFTP my function fires twice but if manually upload my file on azure its getting only one…
0
votes
1 answer

multiple "New blob detected" events emitted from EventGrid after a single upload from a function

I am trying to upgrade our app to listen for blob uploads via EventGrid instead of using the old blob polling process in Azure functions. However when I run my Azure function to write to the text to the blob it emits the same message multiple times…
0
votes
1 answer

Unzip file in blob storage with blob storage trigger

I have a task where I need to take a zipped file from an Azure Storage Container and spit back out the unzipped contents into said container... I've created a blob trigger with python to try and accomplish this task. From what I can tell, usually…
BlakeB9
  • 345
  • 1
  • 3
  • 13
0
votes
1 answer

Get correct text from pdf file in a container using blob trigger in Azure function - Python

Extracting text from a pdf file situated in a blob storage, the output comes with spaces between characters in words. I am downloading a pdf file from a container in Azure: blob_service_client =…
0
votes
1 answer

Blobtrigger on create/modify create snapshot and set to cool tier

I am trying to accomplish, that when I create a snapshot with an Azure function on create/modify, that it also sets the snapshot to the cool tier. The storage account itself, needs to be the Hot tier, while snapshots should not. How do i accomplish…
0
votes
0 answers

Azure blob trigger fired once for multiple files upload in azure blob

I need help for following scenario. I have setup azure blob trigger on one of the azure blob storage. Now suppose from media shuttle I am uploading 3 files to that azure blob and I have setup blob trigger on that azure blob but now what I want is…
0
votes
2 answers

How to uploade an Excel file to a Blob Storage as an Excel File

i have a process that's beening triggered by Blobs. I'm trying to upload a dataframe to Azure blob storage and i can achieve this via this code. async def main(myblob: func.InputStream, outputblob: func.Out[str]) -> None: (Some…
Mostafa Bouzari
  • 9,207
  • 3
  • 16
  • 26
0
votes
1 answer

local variable '*' referenced before assignment while using 2 IFs

I'm trying to merge 2 Dataframes. Due to Blobtrigger i have to check which file is it that's being read. Also i used Async because it jumped from one line to another (Multithread) and right now python executes commands line by line, which makes it…
0
votes
1 answer

Can queue trigger in azure send more than one data in one go?

My project flow contains- a machine learning container instance which receives some data and return a output. function app for queue trigger. from queues, data goes to container instance and returns output,then output is stored in a different…
0
votes
1 answer

Function App blob triggers stopped working

Sorry if in wrong place - please let me know where this should go. We're using blob triggers in a Function App to detect new files. Function Extension Version ~4, Node.js 16 LTS. Expected behaviour: new file added to container/path triggers the…
tmarsh1
  • 21
  • 3
0
votes
1 answer

InvalidHeaderValue Error in ADLS2 Blob trigger function C#

I am trying to implement ADLS2 blob trigger function using Azure managed identity instead of using connection string So here is my function public class BlobTrigger { [FunctionName("BlobTrigger")] public void…
1 2 3
8 9