Book Image

Implementing Azure Solutions - Second Edition

By : Florian Klaffenbach, Markus Klein, Sebastian Hoppe, Oliver Michalski, Jan-Henrik Damaschke
Book Image

Implementing Azure Solutions - Second Edition

By: Florian Klaffenbach, Markus Klein, Sebastian Hoppe, Oliver Michalski, Jan-Henrik Damaschke

Overview of this book

<p>Microsoft Azure offers numerous solutions that can shape the future of any business. However, the major challenge that architects and administrators face lies in implementing these solutions. </p><p>Implementing Azure Solutions helps you overcome this challenge by enabling you to implement Azure Solutions effectively. The book begins by guiding you in choosing the backend structure for your solutions. You will then work with the Azure toolkit and learn how to use Azure Managed Apps to share your solutions with the Azure service catalog. The book then focuses on various implementation techniques and best practices such as implementing Azure Cloud Services by configuring, deploying, and managing cloud services. As you progress through the chapters, you’ll learn how to work with Azure-managed Kubernetes and Azure Container Services. </p><p>By the end of the book, you will be able to build robust cloud solutions on Azure.</p>
Table of Contents (14 chapters)

File storage services

Currently, the most interesting type of storage for the IT professional is Azure File storage. File storage in Azure refers to cloud-based Server Message Block (SMB) or Common Internet File System (CIFS) such as that provided by traditional Windows or Samba fileservers. Like an SMB share, an Azure Storage share can be used from multiple computers and by multiple users simultaneously. The difference is that the users don't have to be connected to the company network anymore.

Azure file shares are commonly used for so called lift-and-shift migrations, where the on-premises app is basically copied to the cloud as-is. This is often fast and easy, but not always the most cost-efficient solution. Other scenarios are shares for diagnostics or debugging data, shared application files, or simply temporary storage:

Levels of file storage (https://docs.microsoft.com/en-us/azure/storage/storage-dotnet-how-to-use-files)

In the preceding diagram, the different...