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

How to return JSON Azure functio app httptrigger?

I created Azure function app with http trigger which should return JSON file. Here is part of my nodejs script. var promise = Promise.all([getFood("first"), getFood("second"), getFood("third")]); promise.then(function(data) { let res =…
SuperTroll
  • 447
  • 1
  • 4
  • 15
0
votes
1 answer

Multi-threading in Azure

I wanted to shift a windows service to azure by the means of running it through an Azure function. The windows service runs multi-threading using Parallel.ForEach loop and just to test whether the multithreading works in Azure perfectly or not , I…
0
votes
2 answers

How to deploy single cshtml file in Azure app service

I have a .Net core app developed using Visual Studio 2019 and deployed on Azure app service. I have function app as well in the same solution. I have to do couple of things and then redeploy to Azure app service. Add one .cshtml file Modify one…
AskMe
  • 2,495
  • 8
  • 49
  • 102
0
votes
0 answers

Call Azure function inside the Kubernetes cluster shows error?

I Created python azure function and its working fine in the local environment and I attached a storage account. I changed authLevel as below "authLevel": "anonymous".then I created a docker image and deployed in kubernetes cluster using deployment…
0
votes
1 answer

What is the best way to create PDF files in Azure storage blob using Python?

I am new to Python and I came up with a requirement for created PDF files with data available in SQL server using Python script. As I researched, there are many libraries which can be used for this purpose but most of their approach is to generate…
shary.sharath
  • 649
  • 2
  • 14
  • 29
0
votes
2 answers

Injecting Application Settings into Azure Functions v3.0 using IOptions<>

How to Injecting Application Settings into Azure Functions v3.0 using IOptions<> Always getting JwtIssuerOptions null values Say our settings file, local.settings.json contains the following data: { "IsEncrypted": false, "Values":…
0
votes
1 answer

HTTP Azure function - reusing cosmos connections between invocations

Is there any way to reuse external connection objects (like connections to table storage or Cosmos) between the invocations of frequently used HTTP Azure functions? Idea is to avoid creating costly connection like cosmos/table storage on every…
0
votes
1 answer

How to Edit Function-app Code in Azure portal

I published the Function-App to Azure and I am using Timer Trigger to Schedule the Function-app at a particular time I want to change the schedule Time how to Edit the Function-App Code I tried AppserviceEditor it gives an error Failed to save…
0
votes
1 answer

Azure function missing bindings in local for function.json

Visual Studio 2017 v15.9.25. Azure function v2. Here's my run function: public static async Task Run( [TimerTrigger("0 */2 * * *")]TimerInfo myTimer, ILogger log, [Blob("BlobContainer/blob.json", FileAccess.ReadWrite,…
dragos
  • 183
  • 1
  • 1
  • 13
0
votes
1 answer

Azure functions singleton on timer trigger...executing stored procedure

We have Azure Functions executing stored procedure every 2 seconds. Most of the time 90% of the time the stored procedure will finish in less than 1 second. But if the json is big and have lots of values some times it runs for more than 2 seconds. I…
Nathan
  • 35
  • 10
0
votes
1 answer

How to create scheduler in httpTrigger in azure function using python?

i have one httpTrigger where i have implemented cache we have a requirement where we have to update cache after 2 hr. Solution 1: we can expire the cache after 2 hour.. but we don't want to use this solution Solution 2: we want a function to get…
0
votes
0 answers

Azure custom worker logs are not visible anywhere

I have created an Azure Function in Go. The function is working properly in local machine & also when published. But, i don't see any logs from my Go program. I have tried with both fmt.Println & log.Println statements. With Log level set as…
0
votes
1 answer

azure app service authentication/authorization not available

I am attempting to set up the authentication for a Google login in my Azure App Service. However In my App Service the 'Authentication/Authorization' section is not available. What do I need to do to enable this???
Phil Lachmann
  • 211
  • 4
  • 14
0
votes
1 answer

Azure logic app timeout when your triggering function app

ideally need to extract all the invoice in xls format of website, storing in SharePoint. I am using Docker for pulling the python code, firefox, and gecko driver. when i call the logic app http trigger it gives the timeout error but all the invoices…
0
votes
1 answer

Azure function apps : [Errno 30] Read-only file system

I'm developing an API using Azure Function Apps. The API works fine locally (using localhost). However, after publishing to Function App, I'm getting this error: [Errno 30] Read-only file system This error happens after I made the connection as a…