Posts
How to extend the timeout for Azure functions beyond the default limits - use AzureFunctionsJobHost__functionTimeout setting
by Patrick Lee on 20 May 2022 in categories BigData tech with tags AzureFunctions
By default, Azure functions timeout after 10 minutes (or 30 minutes if running in an App Service Plan, or a Premium plan). The official documentation (see https://docs.microsoft.com/en-us/azure/azure-functions/functions-host-json#functiontimeout) says that you can increase (or reduce) this by adding a functionTimeout value to host.json. But this doesn't seem to work for a ...
Working towards a Pensions Dashboard
by Patrick Lee on 08 May 2022 in categories actuarial BigData pensions tech with tags dashboard pensionsdashboard
I am creating a prototype, suitable for use with the UK's Pensions Dashboard project. Early days, but have made good progress so far! More in due course.
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.
Some Microsoft Professional certifications passed
by Patrick Lee on 01 May 2022 in categories actuarial tech with tags Azure CSharp lifelong learning
Both last year and this year I took (and passed) a Microsoft exam (I suppose the equivalent of CPD - Continuing Professional Development). Last year it was Programming in C# (certification: here ), and this year it was Microsoft Certified: Azure Developer Associate (certification: here ).
The IFoA's new website has a terrible search facility - here are two ways you can search it much more effectively
by Patrick Lee on 30 Apr 2022 in categories actuarial tech with tags Google search
The new website's search facility is of little practical use The Institute and Faculty of Actuaries has recently upgraded its website, with a new look. Unfortunately, the search facility is far worse than it was before. For example, if you search for "member pledge" you currently get this result: We ...
How to use Application Insights to get the most requested pages in a website
by Patrick Lee on 30 Apr 2022 in categories tech with tags Application Insights Azure dashboard kusto SQL
This shows you how to add a simple Application Insights query to get your top requested pages which you can then add (pin) to an Azure dashboard.
RSS Feed for this blog
by Patrick Lee on 30 Apr 2022 in categories tech with tags RSS
Where to find the link for an RSS feed to this blog.
Visual Studio 2022: my experience so far
by Patrick Lee on 30 Apr 2022 in categories tech with tags AI Visual Studio 2022
My experience so far of Visual Studio 2022: the good (AI enabled Intellicode, being able to edit and continue during debugging), the bad (some false positive errors, need to revert to Visual Studio 2019 for adding code migrations via Package Manager Console). But overall I like it.
Converting a .NET 5 web app to a .NET 6 one
by Patrick Lee on 30 Apr 2022 in categories tech with tags .NET 5.0 .NET 6.0 Visual Studio 2022
It is relatively easy to remove the use of a Startup.cs file after converting a web project from .NET 5.0 to .NET 6.0. This post shows how I did it.
This site now updated to use .NET 6.0
by Patrick Lee on 23 Apr 2022 in categories tech with tags .NET 5.0 .NET 6.0
I have just updated this site from .NET 5.0 (apart from an associated Azure function which was still .NET Core 3.1) to .NET 6.0 (for both the site and the function).