Relative Content

Tag Archive for c#azureazure-functions

Azure Function Isolated Streaming

With Azure Functions In-Process, streaming is not a problem. But the more modern Isolated mode seems to not work with streaming, or i am doing something wrong. This is what i tried:

Http trigger in Aure functions application

I have an Azure functions application performing background jobs for my web site. Some jobs start by demand. To achieve that I use a single HTTP trigger function calling it from web server, providing job details. The function starts a corresponding orchestration and returns a check status response. It works well in test environment but in production some requests fail. Unfortunately I do not know the response code: there is no appropriate logging for now. But I think it could be due to big number of requests.