Questions tagged [azure-function-app]

A function app is the container that hosts the execution of individual functions in the serverless framework Azure Functions.

A function app is the container that hosts the execution of individual functions in the framework.

Create a function app from the Azure portal

574 questions
0
votes
1 answer

Very simple state variable in Azure function

I'm trying to find the most straight forward way to have a single persistent variable in and Azure function. The use case is as follows: 1) check a web site for a number (eg. 76); 2) If number if greater than current number (eg. 72) send an email…
0
votes
1 answer

In Azure Function which depends on .NET Standard library, how do I use ILogger log in a dependent .NET Standard Lib?

I have a Azure Function app (2.0) which depends on a .NET Standard Library contained within the same solution. I understand how to use the ILogger log within the azure function itself, but I want to use the same logger to log information within the…
Judy007
  • 5,484
  • 4
  • 46
  • 68
0
votes
1 answer

KeyError when deploying Python Function App on Azure

I'm new to azure and I'm getting this KeyError when deploying my python function on Azure portal, not sure what is the reason. I have added just one package, "tweepy == 3.8.0" in my requirements.txt and it seems like it is crashing mostly right…
0
votes
1 answer

Azure: How to add Custom Domain to Azure App through function App?

I am trying to automate adding custom domain to Azure App. Here's what I thought of doing: Trigger a HTTP call to Function App with a customDomain query param. Take this query param and run a Azure Powershell script to add custom domain to Azure…
Shyamal Parikh
  • 2,988
  • 4
  • 37
  • 78
0
votes
1 answer

how to use gulp with azure function Nodejs

Use gulp with azure function. Is it possible to use gulp for all azure functionApp? process.env.NODE_CONFIG_DIR = `${process.cwd()}/config/env`; import gulp from 'gulp'; import requireDir from…
Gopal Meena
  • 99
  • 1
  • 7
0
votes
1 answer

Windows PDB writer version Error while running an Azure Time Trigger Function

I have an Azure time trigger function developed in Azure portal which will trigger once in a day. The triggering function was working fine yesterday, but suddenly today function is returning the below error while running the…
0
votes
1 answer

Monitoring Azure WebJob & Function App Failures

I'm currently acting as the SharePoint admin for a company that has some code jobs (mix of WebJobs and Function Apps) running in the background of an O365 site, performing some misc tasks like ensuring the webhook sub is still active, cloning sites,…
0
votes
1 answer

Azure Event Hub Triggered Function App - publish message into multiply event hubs

I have created an event hub triggered function app, which would received from one event hub and send message/data to another event hub using public static async Task Run( [EventHubTrigger("source", Connection = "EventHubConnectionAppSetting")]…
Drex
  • 3,346
  • 9
  • 33
  • 58
0
votes
1 answer

Azure Function App process time can it be extended by extending the QueueMessage's invisibility until it is processed?

I am working with Azure Function Apps in Python, that has two Functions HTTPTrigger & QueueTrigger, in the QueueTrigger I call my custom code, which takes more than 10 mins to process. I changed it from 5 mins to 10 mins in host.json…
0
votes
1 answer

Rules for having different type of Azure Functions in same project (Azure Function App)

I have two Azure Functions in same project, one is TimeTrigger and another is QueueTrigger. When I run my project, TimeTrigger function working properly but QueueTrigger function throwing error as Microsoft.Azure.WebJobs.Host: Error indexing method…
Shri
  • 351
  • 3
  • 16
0
votes
1 answer

Service Bus Queue Lock Token Expired Error in Azure Function App

I'm more used to Service Bus Queue but have challenges when using it with Azure Function App. We have Azure Function App which reads data from Service Bus Queue through ServiceBugTrigger. Per this link, Azure Function App manage Queue message…
0
votes
2 answers

How to stop Azure Logic App SMS flooding?

I am trying to use this Azure Serverless IOT Button Project to send an SMS alert: https://azure.microsoft.com/en-in/resources/samples/azure-serverless-iot-button/ When I click the button once, I see that the Logic App starts running multiple times…
0
votes
1 answer

Azure Functions Blob Trigger Dynamic Binding

I need an Azure Functions blob trigger to trigger off a bucket that is given at runtime by an app setting. I read it is possible to do this: [FunctionName("Process")] public static async Task Process([BlobTrigger("%BucketName%/{name}", Connection =…
jn1kk
  • 5,012
  • 2
  • 45
  • 72
0
votes
2 answers

Blob triggered function cannot read some excel files

I have some azure function app that is supposed to be triggered by the blob. The idea is that every time something lands on the blob (those should only be excel files), the function runs and does some processing. def main(myblob: func.InputStream): …
0
votes
1 answer

How can i deploy an function-app in azure from a remote git using terraform?

When running my terraform deployment, i want to pull a function app from a remote git server. In the same terraform template i deploy a docker image from a private registry with no problem. I just can't find how to deploy the function app from a…