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
0
votes
1 answer

How to get notified when a file is uploaded in ftp location using Azure and start copy job?

I need to start a copy job whenever a file(desired) is uploaded in an FTP location. so for notifying that the file is available in that location is there any way( like if the file is available then run this copy job) other than logic apps using ADF?…
0
votes
1 answer

Azure queue trigger error using .Net.Sdk.Functions 3.0.13: Error indexing method 'Function1',Storage: No valid combination of account info found

I cannot get a new servicebus queue trigger to run even after reading many posts on this error. I have not added any logic to the solution yet, simply trying to get the generated shell to run correctly. It is built in Core 3.1, using the…
0
votes
2 answers

Azure Functions Trigger Failed: A listener for function was unable to start

I'm creating an azure function with a cosmos db trigger, i used the visual studio code azure tools to create it and it generated the following code: public static class offers_trigger { [Function("items_trigger")] public static…
0
votes
1 answer

Azure Cosmos DB Trigger - Trigger When Multiple Changes Occur

I need to run a function only when all the 4 rows in my container are updated. I have not found anything online about whether it is even possible. It would be very nice if you could tell me if this were possible, and if so how it could be done.
Niv
  • 17
  • 1
  • 5
0
votes
1 answer

Timer trigger azure function with table storage input binding

so I have an azure table that has a list of users (identified by the row and partition key) and their activityStatus which is either 1 (completed) or 0 (not completed). I am trying to make a simple azure function that checks the activityStatus of…
0
votes
1 answer

Stop all Azure Data Factory triggers through CLI

I am trying to deploy ARM template through Azure CLI as follows: az deployment group create --name APP-ADF-Template --resource-group --template-file ./pipelines/app_arm.json --parameters ./pipelines/app_stage_arm_params.json But…
Paramesh Korrakuti
  • 1,997
  • 4
  • 27
  • 39
0
votes
2 answers

Azure pipeline - trigger on feature branch

My azure-pipeline.yml is defined like this: trigger: branches: include: - master - develop steps: -task1 -task2 -task3 On each push to develop branch the pipeline is triggered - as expected. I want to trigger the same pipeline on the…
user3590094
  • 119
  • 1
  • 2
  • 11
0
votes
3 answers

In data factory does Azure Event trigger wait till full file is copied?

Let us say that I am copying a 10 GB file to an ADLS location and this location is being monitored by an Azure Event trigger. Will the Event trigger wait for the full 10 GB file to be copied to trigger the event OR trigger the pipeline as soon as…
pradeep .p
  • 5
  • 1
  • 3
0
votes
1 answer

Azure Data factory trigger: Pipeline has to trigger every December on second Friday from end of the month

A pipeline has to trigger every December on second Friday from the end of the month. I am trying to do this using scheduled trigger of ADF See Trigger Definition by using, Start date of Dec 1st 2021 Recurrence of 12 months No end date Advanced…
nareshDE
  • 31
  • 5
0
votes
1 answer

Tumbling Window trigger dependency's creation

I have two pipelines A and B , A needs to be run in every 3 hrs and B needs to be run in every 2 hrs. A is the one need to run firstly then B. How could i add these dependencies ?
BIJU C
  • 1
0
votes
1 answer

What are different ways to host c# code and trigger the hosted code?

I have created an MVC Application with three methods 1st method --> To Read data from SQL 2nd method --> To send picklist data to DevOps client (1st and 3rd methods will be called inside this method) 3rd method --> To create business rules in…
0
votes
1 answer

Logic App trigger not being evaluated except on manual run?

I followed Azure's quickstart to create a Logic App that should trigger on RSS updates and send me an email. When I hit "Run" the workflow works correctly and I get an email. But I don't get any emails except when I run it manually, even though…
M. Lautaro
  • 97
  • 1
  • 7
0
votes
1 answer

Failure of pipelines deployed to a trigger at same time?

There is a trigger set to run pipelines at 5 AM. Pipeline name: 5_AM_Trigger Pipelines running on trigger: Pipeline_A, Pipeline_B I was working on Pipeline_C and another developer is working on Pipeline_D. We ended up deploying to same trigger…
0
votes
1 answer

Azure Data Factory Event Based Trigger not working as Expected

Storage Explorer Version: 1.14.2 Build Number: 20200715.2 Platform/OS: Windows 10 Architecture: ia32 Regression From: Not sure Hello All, I have created a event based trigger for triggering some pipelines. So the issue is when i try to add csv files…
0
votes
1 answer

Azure Datafactory Pipeline Failed inside a scheduled trigger

I have created 2 pipeline in Azure Datafactory. We have a custom activity created to run a python script inside the pipeline.When the pipeline is executed manually it successfully run for n number of time.But i have created a scheduled trigger of…