Book Image

Building Hybrid Clouds with Azure Stack

Book Image

Building Hybrid Clouds with Azure Stack

Overview of this book

Azure Stack is all about creating fewer gaps between on-premise and public cloud application deployment. Azure Stack is the logical progression of Microsoft Cloud Services to create a true hybrid cloud-ready application. This book provides an introduction to Azure Stack and the cloud-first approach. Starting with an introduction to the architecture of Azure Stack, the book will help you plan and deploy your Azure Stack. Next, you will learn about the network and storage options in Azure Stack and you'll create your own private cloud solution. Finally, you will understand how to integrate public cloud using the third-party resource provider. After reading the book, you will have a good understanding of the end-to-end process of designing, offering, and supporting cloud solutions for enterprises or service providers.
Table of Contents (19 chapters)
Title Page
Credits
About the Authors
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface

Common scenarios for Azure (Stack) Functions


Common scenarios for functions are as follows:

  • Timer-based scenarios (for example, cron-jobs on databases for cleaning up)
  • Event procession based on Webhooks (for example, export newly discovered data in a BLOB storage to a SQL database)
  • SaaS event processing (for example, email in Outlook exports attachment to OneDrive)
  • Serverless web application architectures (for example, transfer web page inputs to an automation script)
  • Serverless mobile backends (for example, after a picture is taken, a thumbnail needs to be created)
  • Real-time stream processing (for example, transform data of thousands of devices and save the important data to a database)

As you can see in this list, there is a wide variety of solution scenarios where Azure Functions really make sense.

Note

For more details on Azure Functions, the following GitHub URL could help visit https://github.com/Azure/Azure-Functions/wiki.