Blog posts tagged with: Functions
Upgraded this site (and associated function) to .NET 8
by Patrick Lee on 13 Oct 2024 in categories tech with tags ASP.NET Core Functions .NET 6.0 .NET 8.0
I have just upgraded this website from .NET 7 to .NET 8, and also the associated Azure function from .NET 6 in-process to .NET 8 isolated. Upgrading an app service (website) from .NET 7 (or 6) to .NET 8 is pretty straightforward and essentially just involves changing the target framework ...
How to trigger and query an Azure Entity Function without using an ordinary function - just use the built in HTTP webhooks!
by Patrick Lee on 08 May 2022 in categories BigData tech with tags AzureFunctions DurableFunctions Functions
A simpler way to create and query Azure Entity Functions (previously called Durable Entities): just use the built in webhooks.
Azure Durable Functions: not necessarily suitable for orchestrating large numbers of tasks
by Patrick Lee on 20 Apr 2021 in categories BigData tech with tags Azure Functions SErverless
Microsoft's Durable Functions (see https://docs.microsoft.com/en-us/azure/azure-functions/durable/durable-functions-overview?tabs=csharp ) are a very useful tool for performing some complex tasks in a robust serverless way. But in situations where there is a large number of different tasks involved, they introduce their own overhead which can slow things down significantly. This is because if there ...