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

How to create Event Trigger in Azure Data Factory when three files created in Azure Blob Container?

I need to create a schedule trigger (it will run every 15 minutes for 3 hours) in Azure Data Factory, which will pipeline when three different files are created in an Azure Blob storage container. Pipeline execution should only start when all 3…
1
vote
2 answers

My azure pipeline is not triggering when my team members are pushing changes in GitHub repo

I created a classic CI azure pipeline for a .net application present in GitHub repo and enabled continuous integration in triggers and also added 2 branches in branch filters. But when my team members made some changes and make commits, my pipeline…
1
vote
2 answers

Azure IoT Hub trigger processing data sequentially

I have an IoT device (ESP32) that is sending data packets to IoT Hub (free tier) every x seconds. Each packet contains an integer property PacketID, which is incremented each time a new packet is sent, starting from 1 and so on. When the data is…
RollerMobster
  • 864
  • 1
  • 10
  • 28
1
vote
1 answer

Azure Functions "The operation has timed out." for timer trigger blob archival

I have a Python Azure Functions timer trigger that is run once a day and archives files from a general purpose v2 hot storage container to a general purpose v2 cold storage container. I'm using the Linux Consumption plan. The code looks like…
ddx
  • 469
  • 2
  • 9
  • 27
1
vote
1 answer

Can Logic Apps Monitor a large number of calendars effectively?

PROBLEM We want to track changes in user calendars, but are concerned with how often we'd need to check 2000+ user calendars (Outlook). Would the process of monitoring over 2000 user calendars present a problem for our network? WORKFLOW Trigger…
ezG
  • 391
  • 1
  • 17
1
vote
3 answers

How to run Timer-triggered Azure Functions locally on Mac?

I want to execute a timer-triggered function in my local development environment (Node, OS X) but it seems to require some changes to the HTTP-triggered functions setup I have. Here's the code related to the timer function so…
1
vote
1 answer

Using parameters to locate file during trigger creation in Azure Data Factory

I am trying to create a trigger that I will use for starting a pipeline in ADF: The folder I want to set my trigger on can have different paths: 202001/Test/TriggerFolder 202002/Test/TriggerFolder 202003/Test/TriggerFolder etc.. Therefore in my…
Tarta
  • 1,729
  • 1
  • 29
  • 63
1
vote
1 answer

azure function - triggered when new event in eventhub, writing it to cosmos db - not working, why?

I hope you can help me. I'm new to Azure and having lots of trouble understanding it. I'm trying to write an azure function, who is triggered with EventHubTrigger (when a new event is sent to eventHub), and will store the event in my table in cosmos…
1
vote
2 answers

Azure devops: Pipeline Trigger CI build on branch in different repositories

How do we trigger the Pipelines from commits made in one repository to the pipeline in another repository ? It's basically the issue mentioned here in details which is not resolved…
Marck
  • 107
  • 1
  • 10
1
vote
1 answer

Problem with the binding type of azure app-function when sending data from blob storage to cosmosDB whenever a blob is added into a container

I want an azure app-function that would be triggered when a new blob is added into the specified container in a storage account and transfer that blob to a specified database and container in Azure CosmosDB. I created an app-function and specified…
1
vote
0 answers

Azure Alert not Firing/Triggering

I have a simple query in Log Analytics set up as an Alert to test it. For I understand it should fire every 5 minutes, because at least 1 IIS request has been made for the past 5 minutes. Yet this Alert Rule never triggers... Am I doing something…
michiel Thai
  • 547
  • 5
  • 16
1
vote
1 answer

How to read cookies from the request in azure function app using python

I created a azure HTTP triggered function app using python which accepts request and return response based on the request parameters. Now I want read the cookies from the request. How to read the cookie from request?
Karthik Subramaniyam
  • 1,141
  • 2
  • 8
  • 15
1
vote
1 answer

Execute python script from azure data factory

Can someone help me with executing python function from azure data factory. I have stored python function in blob and i'm trying to trigger the same. However i'm not able to do it. Please assist. Second, Can i parameterize python function call from…
1
vote
1 answer

Cannot bind parameter 'orchestrationContext' to type DurableOrchestrationContext while using DurableOrchestration with Azure Functions

I am trying to use the new Durable Functions extension in Azure Functions I installed this Nuget package on my Function project: Microsoft.Azure.WebJobs.Extensions.DurableTask And then used the DurableOrchestrationContext in my function like…
Marzouk
  • 2,650
  • 3
  • 25
  • 56
1
vote
1 answer

Azure Table Storage and Trigger Functions

Currently I am appended entities to my Azure table storage. If at least 5 or more entities are added, what I need to do is trigger another function to retrieve all the data in the table and do some processing on them and then update the table with…