Questions tagged [azure-functions-runtime]
424 questions
0
votes
0 answers
Ninject and Assembly Bindings in an Azure Function
I have an Azure Function that is relying on other assemblies which in turn relies on Ninject for dependency injection. During runtime, Ninject seems to fail to resolve a dependency for some custom Ninject.Activation.Provider, resulting in a…

Oskar Lindberg
- 2,255
- 2
- 16
- 36
0
votes
2 answers
Azure IoTHub Functions Cosmos DB (js)
I send data towards an Azure IoTHub.
This data is then retreived and processed by a IoTHub EventHub function.
This function retreives the data and insert this data into a Azure Cosmos DB.
In the IoTHub EventHub function you have to declare the…

arjan kroon
- 813
- 2
- 9
- 22
0
votes
1 answer
Azure Functions pre-compiled c# using System.Data.SqlClient missing reference
I created a Timer Azure Function that called an API and wrote that json response to Azure SQL DB.
I wanted to continue my project, so I created an Azure Functions App in VS2017. I moved my code over and changed the #r script reference to the…

user5216819
- 1
- 1
0
votes
1 answer
Azure function throwing "parameter not valid" calling Image.FromStream on large TIF file
I'm trying to process multi-page TIFs in an Azure Function. The function is triggered by changes in blob storage. When the trigger runs, it calls this:
function loadFile(Stream mpTif);
Bitmap pageOnes = (Bitmap)Image.FromStream(mpTif);
mpTif…

Chris Rae
- 5,627
- 2
- 36
- 51
0
votes
0 answers
Application Insights Live Metrics Stream of Azure Function periodically switches between "No servers online" and "3 servers online"
I've created an HTTP-triggered Azure Function (V1) on Consumption Plan.
When i watch the live metrics stream, the display constantly switches between "No servers online" and "3 servers online" in an interval of ~5 seconds.
This happens under load…

Markus S.
- 2,602
- 13
- 44
0
votes
1 answer
what is current latest runtime version of Azure Function?
is Azure Fucntion runtime 2.0 released now ? or it is still under preview ? What it is going to be realsed please ?
I coulnd't figure it out. Few MS documents say it is preview and some of the are saying it is alpha released ?

hussmom
- 55
- 1
- 9
0
votes
1 answer
Receiving JSON (Cosmos DB Documents) as input from Azure Service Bus in Azure Functions
I have an Azure Function (f1) take Cosmos DB Documents as input and I want to set up a path to redirect any Documents to an Azure Service Bus Queue in case of some kind of failure that might happen downstream (SQL statement to a SQL Server)…

kyarbles
- 169
- 1
- 9
0
votes
1 answer
Azure Functions Script Compilation Failed
I'm trying to create an Azure Function with Docker. When I create a Function with func new, it works fine and when I go to http://localhost:8182/api/HttpTriggerCSharp?name=John I get the message
Hello, John
Now I'm trying to run the same project…

Nahue
- 320
- 2
- 18
0
votes
1 answer
Azure functions transitive dependencies loading error
I'm using Azure functions 1.x runtime and using .net framework 4.6.2
In my solution , I've two projects
1) Function App project
2) Class library targeting 4.6.2 framework. It has all the code for my business logic. This class library has other…

MAQ
- 443
- 7
- 15
0
votes
1 answer
How to use bind Cloudtable in java azure functions
Is there a way to bind the table in java azure functions similar to c#
[FunctionName("TableInput")]
public static void Run(
[QueueTrigger("table-items")] string input,
[Table("MyTable", "Http", "{queueTrigger}", Connection =…

Ganesh Chippada
- 113
- 1
- 12
0
votes
1 answer
element equivalent in Azure Functions?
I'm in a position where two different 3rd party libraries use different versions of Newtonsoft.Json, which are incompatible. For a regular application with a web.config or app.config, I can solve this using the tag to resolve the…

bech
- 627
- 5
- 22
0
votes
2 answers
Azure Function CLI irregular trigger timing and wrong details
I m testing Azure function locally using cli.
I have noticed 2 issues:
Sometimes CLI do not shows correct time when function will be executing. For example I have cron to execute function every two mins but it shows function will be executed after…

user576510
- 5,777
- 20
- 81
- 144
0
votes
1 answer
BlobTrigger in Functions Runtime preview 2 with local storage account
I have the Functions Runtime preview 2 installed .
I was able to create and run functions with timer trigger. But the Blob trigger doesn't , seem to 'trigger'.
I am using local azure explorer ( local development blob container) as my trigger…

zingh
- 404
- 4
- 11
0
votes
3 answers
Azure functions on Premises - Error response from daemon: Cannot kill container
I am working with Azure Functions on Premises V2 (Runtime).
Trying to test a simple function that is executed each minute and write in logs.
However Function is not executed, and I am getting this error.
It is running on a Virtual Machine with…

Israel Calderon
- 173
- 1
- 2
- 8
0
votes
1 answer
Azure Functions On-Prem Setup Guidance
I'm evaluating azure functions on-prem and would like to have the manager and worker roles separated. The install docs go through a scenario where both roles are on the same machine.
Does this mean that separating the roles on different VMs would…

Steve L.
- 1,098
- 13
- 23