Skip to content

Commit 5ff50eb

Browse files
committed
initial commit
1 parent 8b8c8ae commit 5ff50eb

File tree

2 files changed

+32
-21
lines changed

2 files changed

+32
-21
lines changed

articles/azure-databricks/TOC.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,15 @@
77
- name: Quickstarts
88
expanded: true
99
items:
10-
- name: Create Databricks workspace - Portal
11-
href: quickstart-create-databricks-workspace-portal.md
12-
- name: Create Databricks workspace - Resource Manager template
13-
href: quickstart-create-databricks-workspace-resource-manager-template.md
14-
- name: Create Databricks workspace - Virtual network
15-
href: quickstart-create-databricks-workspace-vnet-injection.md
10+
- name: Create a workspace
11+
items:
12+
- name: Portal
13+
href: quickstart-create-databricks-workspace-portal.md
14+
- name: ARM template
15+
displayName: Resource Manager
16+
href: quickstart-create-databricks-workspace-resource-manager-template.md
17+
- name: Virtual network
18+
href: quickstart-create-databricks-workspace-vnet-injection.md
1619
- name: Tutorials
1720
items:
1821
- name: Query SQL Server running in Docker container

articles/azure-databricks/quickstart-create-databricks-workspace-resource-manager-template.md

Lines changed: 23 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Quickstart - Create an Azure Databricks workspace with Azure Resource manager
2+
title: Quickstart - Create an Azure Databricks workspace by Azure Resource manager template
33
description: This quickstart shows how to use the Azure Resource Manager template to create an Azure Databricks workspace, then create an Apache Spark cluster, and run a Spark job.
44
services: azure-databricks
55
ms.service: azure-databricks
@@ -8,31 +8,45 @@ ms.author: mamccrea
88
ms.reviewer: jasonh
99
ms.workload: big-data
1010
ms.topic: quickstart
11-
ms.custom: mvc
12-
ms.date: 03/23/2020
11+
ms.custom: mvc, subject-armqs
12+
ms.date: 05/27/2020
1313
---
1414

1515
# Quickstart: Run a Spark job on Azure Databricks using the Azure Resource Manager template
1616

1717
In this quickstart, you use an Azure Resource Manager template to create an Azure Databricks workspace with an Apache Spark cluster. You run a job on the cluster and use custom charts to produce real-time reports from free/paid usage based on demographics.
1818

19-
## Prerequisites
19+
[!INCLUDE [About Azure Resource Manager](../../includes/resource-manager-quickstart-introduction.md)]
2020

21-
- Azure subscription - [create one for free](https://azure.microsoft.com/free/)
21+
## Prerequisites
2222

23-
## Sign in to the Azure portal
23+
To complete this article, you need to:
2424

25-
Sign in to the [Azure portal](https://portal.azure.com).
25+
* Have an Azure subscription - [create one for free](https://azure.microsoft.com/free/)
26+
* [Create an Azure Blob storage account](../storage/common/storage-account-create.md).
27+
* Download a sample JSON file [from GitHub](https://github.com/Azure/usql/blob/master/Examples/Samples/Data/json/radiowebsite/small_radio_json.json).
28+
* Upload the sample JSON file to the Azure Blob storage account you created. You can use [Microsoft Azure Storage Explorer](../vs-azure-tools-storage-manage-with-storage-explorer.md) to upload files.
2629

27-
> [!Note]
30+
> [!NOTE]
2831
> This tutorial cannot be carried out using **Azure Free Trial Subscription**.
2932
> If you have a free account, go to your profile and change your subscription to **pay-as-you-go**. For more information, see [Azure free account](https://azure.microsoft.com/free/). Then, [remove the spending limit](https://docs.microsoft.com/azure/billing/billing-spending-limit#why-you-might-want-to-remove-the-spending-limit), and [request a quota increase](https://docs.microsoft.com/azure/azure-portal/supportability/resource-manager-core-quotas-request) for vCPUs in your region. When you create your Azure Databricks workspace, you can select the **Trial (Premium - 14-Days Free DBUs)** pricing tier to give the workspace access to free Premium Azure Databricks DBUs for 14 days.
3033
34+
35+
## Create an Azure Databricks workspace
36+
37+
### Review the template
38+
39+
The template used in this quickstart is from [Azure Quickstart templates](https://github.com/Azure/azure-quickstart-templates/tree/master/101-databricks-workspace).
40+
41+
:::code language="json" source="~/quickstart-templates/101-databricks-workspace/azuredeploy.json" range="1-150" highlight="107-148":::
42+
43+
The Azure resource defined in the template is Microsoft.Databricks/workspaces: create an Azure Databricks workspace.
44+
3145
## Create an Azure Databricks workspace
3246

3347
In this section, you create an Azure Databricks workspace using the Azure Resource Manager template.
3448

35-
1. Click the following image to open the template in the Azure portal.
49+
1. Select the following image to sign in to Azure and open a template. The template creates an Azure Databricks workspace.
3650

3751
[![Deploy to Azure](../media/template-deployments/deploy-to-azure.svg)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2Fazure-quickstart-templates%2Fmaster%2F101-databricks-workspace%2Fazuredeploy.json)
3852

@@ -82,12 +96,6 @@ For more information on creating clusters, see [Create a Spark cluster in Azure
8296

8397
## Run a Spark SQL job
8498

85-
Before you begin with this section, you must complete the following prerequisites:
86-
87-
* [Create an Azure Blob storage account](../storage/common/storage-account-create.md).
88-
* Download a sample JSON file [from GitHub](https://github.com/Azure/usql/blob/master/Examples/Samples/Data/json/radiowebsite/small_radio_json.json).
89-
* Upload the sample JSON file to the Azure Blob storage account you created. You can use [Microsoft Azure Storage Explorer](../vs-azure-tools-storage-manage-with-storage-explorer.md) to upload files.
90-
9199
Perform the following tasks to create a notebook in Databricks, configure the notebook to read data from an Azure Blob storage account, and then run a Spark SQL job on the data.
92100

93101
1. In the left pane, click **Workspace**. From the **Workspace** drop-down, click **Create**, and then click **Notebook**.

0 commit comments

Comments
 (0)