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
0 answers

Logging from Azure Function Java only complete on cold start

I'm not sure if it's a bug or some obscure setting I haven't found yet but I am getting different log behaviours for identical calling parameters. I set up a script to call an endpoint every 3 seconds with the same payload. On first call where there…
0
votes
2 answers

Azure Queue Trigger function

How does Azure Queue triggered function app decides whether the method succeeded or not?
Fred
  • 41
  • 1
  • 6
0
votes
2 answers

IBM.Data.DB2.Core throws exception in azure function app

I'm using nuget package IBM.Data.DB2.Core version 1.3.0.100 dll to connect DB2 database from Azure functions with AzureFunctionsVersion V2. Application builds successfully. When I run the application and hit it with Postman I get the…
0
votes
1 answer

Cosmosdb Trigger for Azure Functions Application

We are developing applications using azure functions (python). I have 2 questions regarding Azure Functions Application Can we monitor 2 collections using single Cosmosdb trigger ? --- I have looked through the documentation and it seems it…
SunilS
  • 2,030
  • 5
  • 34
  • 62
0
votes
1 answer

Do Azure Functions deployment slots implement x-ms-routing-name?

I've been testing deployment slots for web apps. By attaching x-ms-routing-name to the query parameters you can redirect a call to a deployment slot (although you first need to manually change the traffic % for it to work). Now I'm setting up…
0
votes
1 answer

Have parameter in Function settings still getting Not found issue at Azure Function

I have deployed one azure function but getting below error - The function runtime is unable to start. Microsoft.Azure.ServiceBus: Value for the connection string parameter name '$(MyDemoConnectionString)' was not found When I checked into…
Neo
  • 15,491
  • 59
  • 215
  • 405
0
votes
1 answer

File version different between Azure Portal and Azure Portal Kudu for the same file

Currently my Azure Function shows a different file version in the portal as compared to Kudu. I am using Azure App Service /w Azure Functions V2 and Python 3.7. I publish my function app using: func azure functionapp publish It…
lammy
  • 457
  • 2
  • 5
  • 22
0
votes
1 answer

Azure function app ETIMEDOUT error works sometimes but not others

I have the below code: var request = require('request'); var rp = require('request-promise'); module.exports = async function(context, req) { var arr = [[url1],[url2]] for (i = 0; i < arr.length; i++) { func(context, arr[i]); …
JDT
  • 965
  • 2
  • 8
  • 20
0
votes
1 answer

Await function to finish calling another API

I am new to using async/await and having a couple issues. I have the code below, which seems to not wait until the previous function is finished? var url = require('url'); var path = require('path'); var https = require('https'); var request =…
JDT
  • 965
  • 2
  • 8
  • 20
0
votes
1 answer

Cosmos DB error connect ETIMEDOUT when trying to call many times

I have an array of items (to test I used around 250). Within each item is an ID that I am trying to call from CosmosDB. I am doing so in a simple for-loop for (i = 0; i < arr.length; k++) { var func = find(context, arr[i].id) } Within find I…
JDT
  • 965
  • 2
  • 8
  • 20
0
votes
2 answers

How to get latest deployment date of a Function App? Maybe via the Azure REST api?

Like the title says, I need to get the latest deployment date of a function app. I'm trying different Azure REST calls, but I can't find the right one. https://learn.microsoft.com/en-us/rest/api/appservice/ For deployment, I mean every time I make a…
guidout
  • 322
  • 1
  • 4
  • 13
0
votes
1 answer

is Linuxfxversion needed while creating a function app and publishing through code not container

The below snippet is a block from arm template for function app. "variables": { "linuxFxVersion": { "python":"DOCKER|microsoft/azure-functions-python3.6:2.0", …
0
votes
1 answer

Generate notification when an Azure Function App (python) deployment happens

I'm trying to figure out a way to generate a notification of some sort when a new Azure Function App gets deployed. I'm developing in Python and using consumption plan. Is it possible to achieve what I need? Alternatively, is it possible to run…
guidout
  • 322
  • 1
  • 4
  • 13
0
votes
2 answers

How can I get the count of Azure function execution programmatically in c#?

I have timer trigger azure function which runs on every minute. Is it possible to get the count of how many time the function executed in my Azure function c# code at every time function execute? PS: I need this count to generate a sequential…
0
votes
2 answers

Azure Function App to run "az graph query"

I need suggestions on how to use azure function app to run "az graph query" in Azure under a resource group and then store the output into storage or keyvault secrets. Thanks in advance.
user47
  • 105
  • 2
  • 12