- Azure Serverless Computing Cookbook
- Praveen Kumar Sreeram
- 229字
- 2021-03-26 16:08:59
Introduction
Every software application requires back-end components that are responsible for taking care of the business logic and storing data in some kind of storage, such as databases and filesystems. Each of these back-end components can be developed using different technologies. Azure serverless technology allows us to develop these back-end APIs using Azure Functions.
Azure Functions provides many out-of-the-box templates that solve most common problems, such as connecting to storage and building web APIs. In this chapter, you'll learn how to use these built-in templates. Along with learning about concepts related to Azure serverless computing, we'll also implement a solution to the basic problem domain of creating the components required for an organization to manage internal employee information.
Figure 1.1 highlights the key processes that you will learn about in this chapter:

Figure 1.1: The key processes
Let's go through a step-by-step explanation of the figure to get a better understanding:
- Client call to the API.
- Persist employee details using Azure Table Storage.
- Save profile picture links to queues.
- Invoke a queue trigger as soon as a message is created.
- Create the blobs in Azure Blob Storage.
- Invoke the blob trigger as soon as a blob is created.
- Resize the image and store it in Azure Blob Storage.
We'll leverage Azure Functions' built-in templates using HTTP triggers, with the goal of resizing and storing images in Azure Blob Storage.
- Containerization with LXC
- Ansible權威指南
- 精通Linux內核開發
- Windows Vista融會貫通
- 高性能Linux服務器構建實戰:系統安全、故障排查、自動化運維與集群架構
- 奔跑吧 Linux內核(入門篇)
- Windows 7案例教程
- 突破平面3ds Max動畫設計與制作
- 注冊表應用完全DIY
- OpenStack系統架構設計實戰
- Linux服務器配置與管理
- Hands-On GPU Programming with Python and CUDA
- OpenStack Essentials(Second Edition)
- Mastering Azure Serverless Computing
- 基于Arduino的嵌入式系統入門與實踐