Questions tagged [azure-triggers]

Triggers and bindings in Azure Functions.

Links

  1. Azure Functions triggers and bindings concepts

  2. Azure Functions Recipes - Triggers and bindings

111 questions
1
vote
1 answer

azure functions, Multiple triggers in same .net project

I am new to azure web functions and I can't seem to find any documentation about multiple triggers in the same project. I have created my solution and already created a nice TimerTrigger, which works fine. This trigger downloads files from an ftp…
r3plica
  • 13,017
  • 23
  • 128
  • 290
0
votes
1 answer

ADF Tumbling Window Trigger

I need help clarifying some concepts about trigger to pipeline relationship. So, I created a test pipeline where by activity name it is clear what it does Sets the time now to @utcnow() Start time - trigger window start time (pipeline parameter)…
0
votes
1 answer

Using Azure HTTP trigger to get a list of documents from CosmosDB fails every time

Following the MS-Docs for creating HTTP Trigger to fetch list of documents from Azure CosmosDB fails to publish every time. Below is the code and local.settings.json file respectively I tried changing the Connection string name from…
0
votes
2 answers

How to schedule an azure datafactory pipeline to run on every 'n'th business day of a month

I need to schedule an Azure data factory pipeline that runs every 10th business day of the month. Saturday & Sunday are not business days. for example, if we exclude Sat & Sun, then 10th Business day for Jun 2023 falls on 14th June. The next 10th…
0
votes
1 answer

Azure pipeline doesn't triggers after completion of previous pipeline

In Azure DevOps I have 2 pipelines let's say Pipeline A and Pipeline B. Pipeline A is scheduled to run daily. Upon successful completion of Pipeline A I want to trigger Pipeline B. I've added the snippet that should trigger Pipeline B upon…
Lopez
  • 461
  • 5
  • 19
0
votes
1 answer

Synapse Pipeline Storage Trigger - client does not have authorization to perform action 'Microsoft.EventGrid/eventSubscriptions/write'

I am trying to create event triggers for synapse pipelines, specifically for when a blob is created. When I create one and publish, I get the following error message: The client '...guid...' with object id '...guid...' does not have authorization…
0
votes
1 answer

Using peak and lock patter inside Azure Trigger function for service bus topic in java(maven)

How can I implement the Peek and Lock pattern within the ServiceBusTopicTrigger in Azure Functions without creating a new receiver for receiving messages? I have an Azure Function that successfully receives messages from the Service Bus Topic, but…
0
votes
1 answer

Unable to create a trigger for azure function in vs code

I have been trying to create a function with a http trigger, but unfortunately while creating the azure function, it doesn't show the pop up to choose the trigger point for creating the function, but seeing the function app is created with out…
0
votes
1 answer

Azure function monthly trigger doesn't fire

I have an azure function that runs the first day of every month. This is my CRON: 0 0 0 1 * * It works fine in the last 6/7 months, but today the trigger doesn't fire. I checked azure portal and invocations in last 30 days is 0. Now has one because…
MMachado
  • 88
  • 10
0
votes
1 answer

process azure queue based on timer and on queue length

I want to run a function when my azure queue reaches x length or has not been looked at for y minutes. ie: I have a queue myQueue, which a webhook is adding messages to. I want to process the queue if it reaches X messages in length or if it hasn't…
Johan Grobler
  • 197
  • 1
  • 2
  • 11
0
votes
1 answer

How do I get the file name that triggered a Azure Function Blob Trigger

I have a Azure function with a blob trigger in Python that scans the content of of PDF files that get added to a container, how do I get the file name of the file that triggered the trigger e.g. "bank_data.pdf"? def main(myblob: func.InputStream): …
0
votes
1 answer

How to get Pipeline parameter working in ADF

I've setup a DataFactory v2 pipeline with one data bricks notebook activity. The data bricks notebook creates an SQL cursor, mounts the storage account and rejects or stages files(or blobs) that enter into the storage account path that has been set.…
0
votes
1 answer

After completion of one azure pipeline, only one of two pipelines is triggered

We have three pipelines: BUILD DEPLOY DEPLOY2 After completion of BUILD, we want to start DEPLOY and DEPLOY2 automatically and in parallel. But right now only DEPLOY starts and DEPLOY2 is not triggered. Both are same configured: resources: …
gipcu
  • 265
  • 2
  • 14
0
votes
1 answer

Azure Devops Trigger - Saving to dev triggers other pipelines as well

trigger: batch: true branches: include: - dev exclude: - '*' paths: exclude: - azure-pipelines.yml - pom.xml The above yml file mentions trigger only on the dev branch, but when I pushed any changes to the master…
0
votes
2 answers

logic app 'When a resource event occurs' won't trigger

I have a blob storage that has 2 Containers called input and output. when a file gets uploaded to input then a Function app (Blobtrigger) would work on it and save the result in output folder. right now i need to trigger a workflow in Azure logic…