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

Use LearningTransport with nservicebus azure trigger functions (NServiceBusTriggerFunction)

Trying to use the example code snippet: builder.UseNServiceBus(ctx => { var endpointConfig = new EndpointConfiguration("ConsoleEndpoint"); endpointConfig.UseTransport(new LearningTransport()); return endpointConfig; }); It's not…
SwissCoder
  • 2,514
  • 4
  • 28
  • 40
0
votes
1 answer

Azure Function App timing out at an interval of what functionTimeout parameter is equal to

The functionTimeout parameter in my host.json file is set to "functionTimeout": "00:45:00" I'm seeing timeouts happen every 45 minute interval. When I dig into the timeouts through Application Insights, they have not been running for 45 minutes.…
BlakeB9
  • 345
  • 1
  • 3
  • 13
0
votes
1 answer

ServiceBusTrigger: session receiving one message at a time

I have an Azure Function with the ServiceBusTrigger trigger it's configured to receive sessions, and when I insert the messages, it's inserting with the correct "SessionId". But when executing the trigger it executes only one session message at a…
0
votes
1 answer

Can Timer Triggers call Activity Triggers in Azure?

I am creating a timer trigger function that is going to do certain checks. If a certain conditional is hit, I want to send an email and have set this up through an Activity Trigger. I keep getting the error The function 'activityTriggerName` doesn't…
0
votes
0 answers

Blob Storage trigger timing out before reaching max functionTimeout parameter

I'm getting quite a few timeouts as my blob storage trigger is running. It seems to timeout whenever I'm inserting values into an Azure SQL DB. I have just raised the functionTimeout parameter in the host.json file to "functionTimeout": "00:40:00"…
BlakeB9
  • 345
  • 1
  • 3
  • 13
0
votes
1 answer

Unable to get Blob SAS URL using Azure Function Blob trigger

I'm using a Blob trigger Azure function to get Blob files data whenever any file is uploaded to the Container. public static void Run(Stream myBlob,string BlobTrigger,System.Uri uri, string name, ILogger log) { log.LogInformation($"C# Blob…
0
votes
1 answer

Function app with time trigger, is triggered directly when enabled. How to prevent that

I have a function app with a time trigger that should run once per night. The function looks similar to this: [FunctionName("XName")] public async Task RunAsync( [TimerTrigger("0 0 0 * * *", RunOnStartup = false)] TimerInfo…
ibda
  • 376
  • 3
  • 15
0
votes
1 answer

how to execute ARM template when turning 'on' System Managed Identity of VMSS

how to execute ARM template whenever System Managed Identity is turned on VMSS (Virtual Machine Scale Set).
0
votes
2 answers

Azure function trigger with IoT-Hub "EntityPath"

I am currently having troubles with connecting my function trigger to an IoT-Hub, overnight it broke somehow. Function version 4. Node.js version 14 LTS. First I got an error saying I have to use web.jobs version 4.3.0, I changed the host.json to…
0
votes
2 answers

How to execute a pipeline just once no matter how many blobs are created? (Azure Data Factory)

I've created a Pipeline that's executed by a trigger every time a blob is created, the problem is that are scenarios where the process needs to upload multiple files at the same time, when it happens, the pipeline executes as many times as the…
Xkid
  • 338
  • 1
  • 4
  • 17
0
votes
1 answer

Uploading files to Azure storage using NodeJS

var BlobSerivceClient = require('@azure/storage-blob'); var multipart = require('parse-multipart'); const AZURE_STORAGE_CONNECTION_STRING = process.env["connectionstringstoragepath"] module.exports = async function (context, req) { …
0
votes
1 answer

How to make Timer Trigger call the Queue Trigger with the help of the queue messages?

For example, I have 2 queue triggers which are to be called by 2 different messages of queue trigger in Timer Trigger function. How do I call the triggers in the timer and automate the messages so that when Timer function is triggered and it…
0
votes
2 answers

How to add HTTP trigger in Azure Logic Apps

I want add a functionality in my ADF pipeline which will send me email notification in case of failure. On searching the internet, I came to know that Azure Logic Apps helps with this. I am trying to follow below link to achieve…
0
votes
0 answers
0
votes
1 answer

Function with ServiceBusTrigger not found after migration to Net5

I have read several guides on the subject, with no success. The following guide gave me a lot of hints about a setup that I was simply not able to figure nor find in the official…
zameb
  • 705
  • 11
  • 26