Tag: Azure

Azure Learning Resources

The following is a list of learning resources for your (and my) benefit, this list will be a work in progress and continually updated the more good stuff I come across.

Azure overview, lists ALL of the Azure serviceshttps://azure-overview.com/
Create your first Azure Function using Visual Studio 2017https://docs.microsoft.com/en-us/azure/azure-functions/functions-create-your-first-function-visual-studio
Great link with lots of awesome contenthttps://github.com/markheath/azure-functions-links

Azure Examples on Githubhttps://github.com/azure-samples

Courses

Blogs on Azure

Twitter Accounts to follow

  • @AzureFunctions – The Official account of the Azure Functions Product Team

Tags:


Azure Functions

So I have really gotten into Azure Functions of late and reading about some very clever usages of them, more on that later in another blog post coming soon.

I have also just completed a demo order pipeline using Azure Functions which I learned about from a Pluralsight course by Mark Heath called Azure Functions Fundamentals (highly recommended).

During this you build an order pipeline so you use Postman to send an example order in JSON to your azure function(s) which does a number of things, over the course you’ll add an order to Azure Table Storage, add the order to an Azure Storage Queue, generate a license file using Azure Blob Storage and the generate an email and send the license file using SendGrid a 3rd party email provider.

Then you can use the Azure Table Storage Explorer tool to look into what you’ve managed to create within your tables in Azure Storage.

What I like about this Pluralsight course is that I’m learning and also getting to see great demos of how to go about creating azure functions and using them for real scenarios all be it the code isn’t obviously production ready but its all about the learning at the moment.

I haven’t finished this course yet but I will soon and more blog posts will follow, off the back of this course I am hoping to do a talk on FaaS and Azure Functions at work this coming March.


Tags:


What have I learned so far with Azure?

So I have been getting my hands on Azure recently and just wanted to blog about what I have learned so far so here goes (condensed version as wanting to get back to learning way more)

 

App Service Plans

  • What the different levels are Basic, Standard and Premium and what the differences are.
  • App service plans govern how you pay for it
  • Scale out – beef up the VM or the server
  • Scale up – run more than one instance etc.
  • You can have staging environments and automated backups
  • Consumption plan – only pay for what u use

What is Serverless?

  • There are still servers of course – you delegate the management of them to third party offerings
  • Use third party Paas wherever possible (for example documentDB)
  • Run your custom code on Azure Functions
    – respond to events
    – let the framework work out how many servers you need
    – Functions as a Service (FaaS)

Benefits of Azure functions?

  • Rapid and simple development module
  • Code it within the portal
  • Eliminate boilerplate
  • Extremely reach feature set
  • CI, Kudu, Easy Auth, Certs, Custom Domains, Settings etc. all included
  • Cost effective pricing – only pay for what you use
  • No servers to maintain
  • Automatic scaling

Next up is Azure Functions…

 

 

 


Tags: