Search icon CANCEL
Subscription
0
Cart icon
Cart
Close icon
You have no products in your basket yet
Save more on your purchases!
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Azure Data Factory Cookbook

You're reading from  Azure Data Factory Cookbook

Product type Book
Published in Dec 2020
Publisher Packt
ISBN-13 9781800565296
Pages 382 pages
Edition 1st Edition
Languages
Authors (4):
Dmitry Anoshin Dmitry Anoshin
Profile icon Dmitry Anoshin
Dmitry Foshin Dmitry Foshin
Profile icon Dmitry Foshin
Roman Storchak Roman Storchak
Profile icon Roman Storchak
Xenia Ireton Xenia Ireton
Profile icon Xenia Ireton
View More author details
Toc

Table of Contents (12) Chapters close

Preface 1. Chapter 1: Getting Started with ADF 2. Chapter 2: Orchestration and Control Flow 3. Chapter 3: Setting Up a Cloud Data Warehouse 4. Chapter 4: Working with Azure Data Lake 5. Chapter 5: Working with Big Data – HDInsight and Databricks 6. Chapter 6: Integration with MS SSIS 7. Chapter 7: Data Migration – Azure Data Factory and Other Cloud Services 8. Chapter 8: Working with Azure Services Integration 9. Chapter 9: Managing Deployment Processes with Azure DevOps 10. Chapter 10: Monitoring and Troubleshooting Data Pipelines 11. Other Books You May Enjoy

Conventions used

There are a number of text conventions used throughout this book.

Code in text: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "Execute databricks configure --token in the Azure CLI."

A block of code is set as follows:

from pyspark.ml.evaluation import RegressionEvaluator
regEval = RegressionEvaluator(
 			 predictionCol="predictions", \
			       labelCol="rating", \
			       metricName="mse")
predictedTestDF = alsModel.transform(testDF)
testMse = regEval.evaluate(predictedTestDF)
print('MSE on the test set is {0}'.format(testMse))

When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:

CREATE TABLE [dbo].[CommonCrawlPartitions](
    [YearAndMonth][varchar](255) NULL,
    [Path] [varchar](255) NULL,
    [UpdatedAt] [Datetime]
)

Bold: Indicates a new term, an important word, or words that you see onscreen. For example, words in menus or dialog boxes appear in the text like this: Go to the Azure portal and find Azure Active Directory.

Tips or important notes

Appear like this.

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}