Questions tagged [azure-functions-runtime]
424 questions
0
votes
1 answer
Timeout after 10 minutes while running function app with premium app service plan
I have 2 function apps which use Premium (EP1) App Service Plan as follows:
Here is how host.json files look like in these 2 function apps:
{
"version": "2.0",
"functionTimeout": "00:10:00",
"extensions": {
"serviceBus": {
…

user989988
- 3,006
- 7
- 44
- 91
0
votes
1 answer
Queue triggered based function app not getting completed
We are using queue trigger based function app on premium plan where messages contains some details like azure subscriptions name. Based on which for each subscription we do many api calls specially to azure storage accounts(around 400 to 500). Since…

Riktim Mondal
- 51
- 1
- 4
0
votes
1 answer
how to copy blob data and store it in sub directory by using function app
I have a blob in my source virtual folder and I need to move the source blob to another virtual folder and delete the source blob by using azure function app
copying blob data from 1 directory to another
deleting the source blob
please guide me…

karthik kasula
- 67
- 3
- 9
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…

191180rk
- 735
- 2
- 12
- 37
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…

Mohit Singh
- 401
- 1
- 10
- 30
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…

Purusottam
- 611
- 6
- 19
0
votes
1 answer
Azure.Functions.Cli.Common.CliException: Error uploading archive (BadRequest)
I am not able to publish azure functionapp using CLI tool azure-functionapp-core-tools version 3. I am getting the below error -
Creating archive for current directory...
> /usr/local/Cellar/azure-functions-core-tools@3/3.0.2534/gozip -base-dir…

Sibaprasad Maiti
- 507
- 8
- 19
0
votes
2 answers
How to hide Azure Function URL?
So I just created an Azure Function that is triggered by Azure Blob Storage upload. There is no HTTP trigger.
Why does this app have a PUBLIC-FACING URL?
How do I disable it?
Is there any kind of security mitigation…

SeaDude
- 3,725
- 6
- 31
- 68
0
votes
1 answer
Getting exception while executing Azure function locally when trying to connect to local database
Have installed nuget for System.Data.SqlClient 4.8.1. Getting below error on running
[5/28/2020 4:09:39 PM] Executed 'Function1' (Failed, Id=990d4cbf-bd32-4a77-ab52-8b5fb1dce252)
[5/28/2020 4:09:39 PM] System.Private.CoreLib: Exception while…

shatakshi
- 31
- 5
0
votes
1 answer
azure function python - Blob Trigger and Timeout
I am working with Azure Function 2.0, Python 3.7 Runtime and Azure Function Tools 2.0.
I have a simple blob trigger based functions that read a file containing different urls (www.xxx.com/any,...) and scrape them using library requests and…

RaGus
- 1
0
votes
1 answer
Azure HTTP Function -- Encountering issues when creating trigger with OneDrive file input-binding
So I have a requirement to process a file when it is uploaded to a particular folder in OneDrive. An Azure Function would be nice to use for this purpose.
Here's what I see when trying to set this up in the Azure portal:
Is it even possible to do…

Steve Boniface
- 571
- 1
- 11
- 23
0
votes
1 answer
maxDequeueCount config setting not working for Azure Function
I have an an Azure Function which I want to fail and sent to the poison queue if it errors once or twice. I've set the maxDequeueCount property in my host.json file to 1, but it still retries 5 times. Based on all the doco I've read this seems to be…

PatrickNolan
- 1,671
- 2
- 20
- 40
0
votes
1 answer
Azure Function Consumption streaming large file silently error 500
I am using Azure Functions, and have stumbled upon an issue.
When requesting large amount of data from an external source, it seems the stream is shut. I have simplified the example as simple as I can below it will silently fail, and return 500. …

tank104
- 323
- 4
- 15
0
votes
1 answer
Not Found - GET https://registry.npmjs.org/functionscdn.azureedge.net - Not found
npm i -g azure-functions-core-tools@3 --unsafe-perm true --force --trusted-host aunctionscdn.azureedge.net
Hi all, i have been trying to install azure-functions-core tools using above command behind my company proxy, but return this error. need some…

sirimiri
- 509
- 2
- 6
- 18
0
votes
1 answer
Azure function conversion from project.json to function.proj xml
How to convert old project.json to function.proj xml for Azure Function App
{
"frameworks": {
"net46":{
"dependencies": {
"Newtonsoft.Json": "10.0.3",
"System.ServiceModel.Primitives":"4.4.0",
…

user3744961
- 53
- 1
- 7