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

Function Timeout Issue when using app service plan

I have set up azure function app in app service plan. The azure function is made of of durable function with multiple activity triggers. When the data is huge, the last activity trigger times out with 404 gateway timeout error, but when I check the…
0
votes
1 answer

Notification mechanisms when transiting to cold state

When Functions app is idle for some tinme, it will be moved to cold state. Is there a mechanism of notification when it starts to transit to code state?
Pingpong
  • 7,681
  • 21
  • 83
  • 209
0
votes
0 answers

Azure Function App: 'Cold start' happen when debugging locally

Lately, I've debugged a Blob Trigger function app in local by Visual Studio 2017. Now I'm testing with large batch upload for Blob Container (1000 image) and the function app randomly stop listen Blob Container, some time just few minutes, but some…
Nam Vũ
  • 103
  • 1
  • 8
0
votes
1 answer

How to take backup of images in container registry

I need to take back up of images which are store in azure container registry. The container registry is growing large with version of images. And i am planning to automate clean up process to archive images which are older or unused images. we can…
0
votes
1 answer

How to use azure functions to create trigger event based on files received in azure data lake store

I have a .csv file in Azure data lake store, can I Use a function app to trigger an Azure Data Factory (ADF) event whenever the .csv file gets loaded in the data lake store. Current ADF supports event's for blob storage but not for data…
0
votes
3 answers

configuration Error in running Azure function app

Function app unable to run with null configuration error Developed function in visual studio to read api response. It works fine when run locally, but doesnt work when publish as azure function app Below is my entry function which is run on incoming…
Gopal
  • 41
  • 1
  • 4
0
votes
1 answer

Does Azure Function App restrict outgoing HTTP calls from inside the function to HTTPS only?

I have a NodeJS Azure Function App that is up and running, and recently I have had to change the endpoint of one HTTP call to another URL. This URL is verified to be working and returning expected responses. However once the previous HTTPS URL on…
Ti Zhang
  • 17
  • 7
0
votes
2 answers

Azure function app executing when OPTIONS request made?

I created a function app using the Azure portal. I checked POST and OPTIONS as allowed methods. I deleted the default CORS settings and allowed *. Now, when I issue an OPTIONS request using a REST client, I get an error returned. I checked the…
Denise
  • 61
  • 5
0
votes
1 answer

Unable to select Resource in "Create Event Subscription" in Azure

I'm able to select the following from a drop-down in the "Create Event Subscription" window for Event Grid: (1) Topic Types (2) Subscription (3) Resource Group. The drop-down for "Resource" begins to load after I select the Resource Group, however,…
TheDude
  • 1,421
  • 4
  • 29
  • 54
0
votes
1 answer

Remove HTML markup from text in Azure Function app

I am writing a simple Azure Function app that should receive a string containing HTML markup remove the HTML tags and return the "sanitized" text. The code would be really simple, like module.exports = async function (context, req) { if…
Jesper Lund Stocholm
  • 1,973
  • 2
  • 27
  • 49
0
votes
1 answer

Azure Functions Premium plan timeout

Is there a 10min max timeout for Azure Functions Premium Plan the same way it applies on the Consumption Plan? Is it possible to configure a greater timeout? When working with Azure Functions on App Service Plan I can have functions with essentially…
-1
votes
1 answer

Azure function and Azure Cosmos DB conflict feed Integration

Does Azure function support Azure Cosmos DB conflict feed based trigger like how Azure function supports below Cosmos change feed trigger? If not why? public async Task RunAsync([CosmosDBTrigger( databaseName: "cars-island-eshop", …
-1
votes
1 answer

Azure DevOps self hosted windows agent to Azure Linux function app deployment

I am working on Linux based Azure functions with Python 3.7 and trying to use Azure DevOps. My python project has requirements like psycopg2-binary, cython to name a few of them. We have been provisioned a self hosted windows agent pool in Azure…
-1
votes
1 answer

Time Zone issue in Azure Function app with consumption plan (Windows)

I'm using a Function App in consumption plan (Windows) to execute a C# function, but when the line of code DateTime.Now is executed the time it returns UTC. I already have changed the WEBSITE_TIME_ZONE in the app settings to SA Pacific Standard…
-1
votes
1 answer

Azure Function to copy blobs from one container to another with different name of blob

So I have two questions here which I am trying to achieve using C# in Azure Functions: I am suppose to copy blobs from one container to another in same storage account whenever a new blob or directory arrives in the source container. the new blob in…
user2248618
1 2 3
38
39