Microsoft Ignite | The Tour: Amsterdam — day one

Table of Contents

Microsoft Ignite | The Tour: Amsterdam is a two day tech conference organized by Microsoft. On this first day I attended the talks in the “Building your application for the cloud” learning path.

(On the second day I followed the sessions of the “Operating applications and infrastructure in the cloud” learning path.)

Welcome to Microsoft Ignite | The Tour: Amsterdam

Designing resilient cloud applications — Jeremy Likness

Most of the things in this talk allow you to scale your app without changing your application itself.

We want to design for security. So instead of relying on e.g. environment variables to distribute secrets, you are better off using a centralized solution, like Azure Key Vault.

Some of its features:

  • You can version your secrets
  • Manage all secrets in one place
  • Manage secrets across environments (dev, QA, production)
  • Easy to integrate

Use Managed identities (formerly “Managed Service Identity” or MSI) on your VM, app service or function to authenticate to Azure Key Vault.

To make your database more resilient, you can use Cosmos DB, which has features like:

  • Global distribution (get the DB as close to you as possible, without having to change connection strings)
  • Elastic scale
  • Consistency ranging from strong (wait until every replica is up to date) to “eventually consistent” (it might take a while until all the replicas are up to date).

Failovers can be done automatically and manually. But whatever you choose, you don’t have to touch your application. It is possible (and easy) to have a multi master setup. (It is more expensive though.)

There are several extensions for VS Code to connect to e.g. Cosmos DB from within VS Code. This means you could edit data from within VS Code. However, it might be better to hand out read-only credentials for your production database.

Azure App Service is a managed platform that makes it easy to run your application (like .NET, .NET Core, Node.js, Java or Python). It makes scaling up and scaling out on the fly easy. Even better: you can configure your application to autoscale.

Check out the Azure Extension Pack extension for VS Code. It has a lot of useful features like connecting with your Cosmos DB, as mentioned above, but you can also do things like deploying your application from within your editor.

Azure Storage is useful for static things you want stored in the cloud, e.g. blobs, tables, files and queues. Azure Static Sites are currently in preview. It allows you to serve static files via a web server. Even the right MIME types are returned.

Jeremy Likness about the Azure Front Door Service

To have a resilient architecture, you’ll have to have the service available across multiple regions. Use Azure Front Door Service (currently in preview). It can be used with Traffic Manager. In the Front Door designer there are “frontend hosts” (domains the service is hosted on), “backend pools” (the available backends) and “routing rules” which map frontend hosts to backend pools based on path patterns (e.g. /api/products/.*).

Additional resources:

Deploying your application faster and safer — Damian Brady

Damian Brady uses the analogy of a pit stop in 1905 compared to one in 2013. Summary: much faster, more people involved.

What is “DevOps”? There are a number of different definitions. At Microsoft it is defined as:

DevOps is the union of people, process and products to enable continuous delivery of value to our end users.

Why DevOps is important:

  • Increases velocity
  • Decreases downtime and human error
  • Your competitors are already doing this

Have a look at the State of DevOps Report. It is a yearly report full of interesting information. The report compares the high performing teams with low performing teams. The high performers have a 46 times higher deployment frequency, fail less frequently, fix failures 2555 times faster, etc. It’s a great report to convince your manager to change things.

Development used to toss software over the wall to the operations team. When things go wrong, people tend to blame the other team. Developers want change but operations want to have stability (in other words: not change anything)—the teams have opposite incentives.

To change this, you’ll need a process. And you’ll need good products to help you with the process. Azure DevOps can do everything you need. Fortunately Microsoft does allow you to use your current products as well.

Damian Brady showing Azure DevOps can be used in combination with many other products

Azure DevOps components:

This talk will demo Azure Pipelines.

Azure Pipelines is on the GitHub Marketplace. It is free, assuming you stay within the limits set.

You can configure your Pipeline in your browser and by doing so, a file called azure-pipelines.yml is created in your repository. This immediately creates a build check in GitHub.

Build configuration is similar to deployment configuration.

You can have multiple stages and have pre-deployment conditions between them. This way you can for instance make sure that person X or group Y has to approve the deployment to production.

You can have build artifacts, which you can use in your build pipeline. These artifacts are not available externally—they are part of the release pipeline. If you need more persistent artifacts, you’ll want to use Azure Artifacts.

You can configure canary deployments and do so in different ways. In this demo “deployment slots” are used. They allow you to create a duplicate deployment and direct a part of the traffic to the cloned slot (canary environment).

LaunchDarkly allows you to roll out based on many more criteria (e.g. regional, a specific customer, etc). Note that this is a paid service.

Manual approval can be replaced by a so called deployment gate. These deployment gates are automated approval processes. You can perform a number of checks (security and compliance assessment, work items, Azure Monitor Alerts or invoke a REST API or Azure Function). When they are successful, the application is deployed, otherwise not. This makes deployment faster and safer.

Additional resources:

Detecting application anomalies with Telemetry — Jason Hand

A demonstration of Azure Application Insights.

Jason Hand is using the analogy of a car: if it breaks down (e.g. runs out of gas), it becomes useless. You’ll want to prevent this. Cars have dashboards to warn if things go out of bounds.

Jason Hand about cars that have dashboards to warn if things go out of bounds

Application Insights has a lot of tools to help you monitor your application. Going back to the car analogy: it’s like having a mechanic with tools in the vehicle with you. It has, among other things, Smart Detection to warn about performance problems and failures. Something else it provides is Application Map where you can more easily spot performance issues.

More in depth information in his other talks:

Additional resources:

Selecting the right data storage strategy for your cloud application — Jeramiah Dooley

It is important to think about your data storage. The benefits of having a storage strategy:

  • It facilitates an upgrade of legacy processes without running past the operational teams supporting this.
  • It provides guardrails to keep everyone aligned.
  • To build a strategy, you have to break things down into manageable pieces. This will help you down the line.
  • A strategy can function as a plan on how to swap pieces in and out.
  • If everyone is on board on the strategy it is easier to maintain security posture.

Azure might give you a different way to look at data storage. There are a number of different storage options. Do note that storage is only a small part of the whole.

Jeramiah Dooley

Storage and compute are abstracted away more and more these days, but everything eventually depends on the storage sitting beneath it. If your storage breaks, you will have a bad day.

Why not use a relational database to store all data? By using other options, we may make the application more granular to deploy and/or give developers more control.

Different kinds of data:

  • Structured data: this is where we came from with relational databases.
  • Semi-structured data: this is data that is structured, but cannot be fit into a table that easily.
  • Unstructured data: for example video and images.

Different properties of data:

  • Volume: how big is it going to be?
  • Velocity: how much is it going to change?
  • Variety: how much different kinds of data will you have?

Strategies:

  • Storage driven: the operations team or the business decides on the storage and development will have to use it. This means developers need to know a lot of low-level details about the storage. And we probably don’t want that.
  • Cloud-driven: deploy storage to what makes sense. Not much better for development, the main difference is that the storage is not on premise.
  • Function-driven: build what you need, storage comes with it.

An example of function driven approach is building a search functionality. We could implement it as full-text search on our existing SQL database. However, this has an impact on the production database. If we would use Azure Search (search-as-a-service), we would not have to worry about the storage or paying for storage we don’t use.

Data architectures summary:

  • More complex and more options than in the past
  • Easier to choose, especially based on function
  • More direct access by developers
  • More control over experience and cost

Additional resources:

Investing in Serverless: less servers, more code — Jeremy Likness

On premise infrastructure requires you to answer a lot of questions, like:

  • What media should I use to keep backups?
  • How can I scale my app?
  • Who monitors my servers?
  • What happens if the power goes out?
  • Who has physical access to my servers?

Moving to infrastructure as a service still means dealing with a bunch of questions, but less lower level. You pay for the service of someone else worrying about the hardware, access, etc. You are left with questions like:

  • How can I scale my app?
  • How often should I patch my servers?
  • How do I deploy new code to my servers?

Platform as a service means even higher level questions:

  • What is the right size of my server?
  • How many servers do I need?

With serverless, you are down to a single question: how do I architect my app? You focus on the event that happened (a request was sent to an endpoint) not on the whole infrastructure to make that happen.

What is serverless (according to Jeremy)?

  • Abstraction of servers
  • Event driven / instant scale
  • Micro-billing (focus on what you are using)

Checklist to determine if something is serverless:

  • Is it capable of running entirely in the cloud?
  • Does it run and scale without configuring a VM/cluster?
  • Do I only get billed for active invocations?

Jeremy Likness with an overview of serverless components in Azure

Functions

Functions: you pay for functions that get called and consume memory, not for servers. You don’t care how much machines are needed to handle the number of requests.

Functions have triggers and bindings. Triggers are things like blob storage, Cosmos DB, HTTP, timer and a webhook. Bindings allow you to work with resources (like files, tables, emails, notifications).

Example: a file is added to storage, a function parses and transforms the file and stores a chart graphic.

Event grid

Managing events is cumbersome. Event grid can help you. It offers:

  • Fully managed event routing to get a message from A to B.
  • Near real-time event delivery at scale.
  • Broad coverage within Azure and beyond.

You can focus on the messages. The infrastructure ensures reliability and performance. It can, for instance, handle ten million events per second per region.

Event grid delivers the event to you; you never have to go out to grab events.

Scenarios:

  • Serverless apps
  • Ops automation
  • Application integration

Durable functions are an extension to functions for stuff that e.g. has to wait for an asynchronous event. They are paused, but state is stored. And you are only billed for the time the function is actually doing things; you don’t pay when the function is paused.

Durable function patterns:

  • Sequential asynchronous calls
  • Fan out / fan in
  • Human approval
  • Ongoing monitoring

Logic apps

Logic apps are the integration engine that connect things together. They allow you to design workflows and processes. For example: when a new product is added, an email is sent to the products team to add an image, etc.

Logic apps also have triggers.

Additional resources: