Book Image

Data Modeling for Azure Data Services

By : Peter ter Braake
Book Image

Data Modeling for Azure Data Services

By: Peter ter Braake

Overview of this book

Data is at the heart of all applications and forms the foundation of modern data-driven businesses. With the multitude of data-related use cases and the availability of different data services, choosing the right service and implementing the right design becomes paramount to successful implementation. Data Modeling for Azure Data Services starts with an introduction to databases, entity analysis, and normalizing data. The book then shows you how to design a NoSQL database for optimal performance and scalability and covers how to provision and implement Azure SQL DB, Azure Cosmos DB, and Azure Synapse SQL Pool. As you progress through the chapters, you'll learn about data analytics, Azure Data Lake, and Azure SQL Data Warehouse and explore dimensional modeling, data vault modeling, along with designing and implementing a Data Lake using Azure Storage. You'll also learn how to implement ETL with Azure Data Factory. By the end of this book, you'll have a solid understanding of which Azure data services are the best fit for your model and how to implement the best design for your solution.
Table of Contents (16 chapters)
1
Section 1 – Operational/OLTP Databases
8
Section 2 – Analytics with a Data Lake and Data Warehouse
13
Section 3 – ETL with Azure Data Factory

Summary

There is a lot more to know about Azure Cosmos DB than we have seen in this chapter. The basis for successful implementation was made in Chapter 5, Designing a NoSQL Database, which was on how to choose your JSON documents and how to choose a partition key.

In this chapter, you learned to configure the options needed to provision a Cosmos DB account. Then you learned how to create a database and a container. You added some data to the containers and queried the test data using SQL.

With this chapter, we end part 1 of this book. Part 1, Operational/OLTP databases, was about databases that are used by line-of-business applications, such as online shops, CRM systems, and financial systems. These systems should be able to handle new data well. New data gets inserted into these types of databases and possibly at a high rate. We need to build these databases with performance and scalability in mind. Of course, we need to consider cost as well. The first step in that is choosing...