3 minute read

Lately, I have been playing with Azure Functions. Since the release of v3 runtime, I noticed a really cool thing which signifies a nice progress in overall App Service architecture as well.

If we go back few years, I have been blogging about Speeding up your application in App Service. The article provided some insight into why some applications, especially those running on runtimes using JIT compilation (like PHP) might be slow and what can be done about it. Tldr; the reason was primarily the speed of storage which proved to be a real bottleneck.

In the past days I had to troubleshoot some Functions triggers and while browsing through the storage, I noticed something which I wasn’t expecting. For the Windows consumption plan - you can notice that a file share is created in the storage account associated with the function:

Azure Functions Storage

This is quite a significant progress as Azure Files provide decent performance and capacity and are scalable.

Obviously, I wanted to learn more about how it works behind the scenes… Azure Functions are running on top of Azure Web Jobs. Functions leverage that SDK and have their of Functions Host. The host allows for your code to run within an environment where it is setup like Azure Functions, Azure Stack or even on-prem or 3rd party cloud via KEDA.

Since the host is open-source and available on GitHub, I decided to take a peek (gotta love reading through GitHub, I really hope they enable code navigation for C# soon). The Functions host is really interesting piece of code, especially if you want to learn more about how it works - like dynamic extension downloading when using C# script (.csx), bindings and much more.

Going through the code, you can easily bump into MeshServiceClient (source) which exposes couple interesting methods - MountCifs, MountBlob and MountFuse. After further reading you can learn the following:

  • MountCifs is used for mounting the Azure File Share associated with the function
  • MountBlob is used when blob storage is used for storage
  • MountFuse is used for running from ZIP. It also appears to include support for SquashFS which is a compression read-only filesystem for Linux (I haven’t heard about it until now)

This generally means that the Function storage is no longer using the regular App Service storage which was slowing things down. And this may also have some good impact on cold starts as well.

One more interesting thing which caught my eyes was MeshServiceClient itself. Ever heard about Service Fabric Mesh? It is basically hyper scalable serverless platform for running microservices (probably more about that in another article). That means that Functions are probably moving away from App Service infrastructure into a more modern and scalable one!

The only thing which bothers me right now is that the File Shares are only mounted for Windows Consumption plans. I would really love to see the File Shares used more with App Service to see how much of a performance boost it can bring.

Also, just a side-note, with App Service on Linux you can already make use of mounted Azure Files / mounted blob storage (docs). I will test the performance in future article.

Until next time…

Comments

Emanuel

would be interested in knowing how that file share is used by the function. I noticed that if I add custom files to the share the function cannot see them.

To submit comments, go to GitHub Discussions.