Skip to content

Commit f138f63

Browse files
author
helenz-msft
committed
change folder name
1 parent 2c39789 commit f138f63

File tree

1 file changed

+24
-23
lines changed

1 file changed

+24
-23
lines changed

articles/machine-learning/create-datastore-with-UI.md

Lines changed: 24 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,17 @@ ms.reviewer: franksolomon
88
ms.service: azure-machine-learning
99
ms.subservice: mldata
1010
ms.topic: how-to
11-
ms.date: 02/28/2025
11+
ms.date: 02/14/2025
1212
#Customer intent: Existing solutions help link lakehouse files to Azure Machine Learning resources, and create a datastore through the SDK. However, some customers have lakehouse tables, and they want to create a datastore in Azure Machine Learning through the UI.
1313
---
1414

1515
# Quickstart: Create a datastore in Azure Machine Learning through the UI to link a lakehouse table
1616

17-
Existing solutions can link an Azure Machine Learning resource to OneLake, extract the data, and create a datastore in Azure Machine Learning. However, [in those solutions](#references), the OneLake data is of type "Files." Those solutions don't work for OneLake table-type data. Additionally, some customers might prefer to build the link in the UI. A solution that links Azure Machine Learning resources to OneLake tables is needed.
17+
Existing solutions can link an Azure Machine Learning resource to OneLake, extract the data, and create a datastore in Azure Machine Learning. However, [in those solutions](#references), the OneLake data is of type "Files." Those solutions don't work for OneLake table-type data, as shown in the following screenshot:
1818

19-
:::image type="content" source="media/create-datastore-with-UI/table-in-fabric.png" alt-text="Screenshot showing how the table looks like in Microsoft Fabric." lightbox="./media/create-datastore-with-UI/table-in-fabric.png":::
19+
:::image type="content" source="media/create-datastore-with-ui/show-fabric-table.png" alt-text="Screenshot showing a table in Microsoft Fabric." lightbox="./media/create-datastore-with-ui/show-fabric-table.png":::
2020

21+
Additionally, some customers might prefer to build the link in the UI. A solution that links Azure Machine Learning resources to OneLake tables is needed.
2122
In this article, you learn how to link OneLake tables to Azure Machine Learning studio resources through the UI.
2223

2324
## Prerequisites
@@ -31,7 +32,7 @@ In this article, you learn how to link OneLake tables to Azure Machine Learning
3132

3233
This solution has three parts. First, create and set up a Data Lake Storage account in the Azure portal. Next, copy the data from OneLake to Azure Data Lake Storage. Bring the data to the Azure Machine Learning resource, and lastly, create the datastore. The following screenshot shows the overall flow of the solution:
3334

34-
:::image type="content" source="media/create-datastore-with-UI/overall-idea.png" alt-text="Screenshot showing the overall flow of the solution." lightbox="./media/create-datastore-with-UI/overall-idea.png":::
35+
:::image type="content" source="media/create-datastore-with-ui/overall-idea.png" alt-text="Screenshot showing the overall flow of the solution." lightbox="./media/create-datastore-with-ui/overall-idea.png":::
3536

3637
## Set up the Data Lake storage account in the Azure portal
3738

@@ -44,63 +45,63 @@ Assign the **Storage Blob Data Contributor** and **Storage File Data Privileged
4445

4546
1. On the **Storage accounts** page, select the Data Lake Storage account you created in the prerequisite step. A page showing the storage account properties opens.
4647

47-
:::image type="content" source="media/create-datastore-with-UI/create-storage-account.png" alt-text="Screenshot showing the properties page of the data lake storage account." lightbox="./media/create-datastore-with-UI/create-storage-account.png":::
48+
:::image type="content" source="media/create-datastore-with-ui/create-storage-account.png" alt-text="Screenshot showing the properties page of the data lake storage account." lightbox="./media/create-datastore-with-ui/create-storage-account.png":::
4849

4950
1. Select the **Access keys** from the left panel and record the key. This value is required in a later step.
5051

5152
1. Select and enable **Allow storage account key access** as shown in the following screenshot:
5253

53-
:::image type="content" source="media/create-datastore-with-UI/enable-key-access.png" alt-text="Screenshot showing how to enable key access of data lake storage account in Azure portal." lightbox="./media/create-datastore-with-UI/enable-key-access.png":::
54+
:::image type="content" source="media/create-datastore-with-ui/enable-key-access.png" alt-text="Screenshot showing how to enable key access of data lake storage account in Azure portal." lightbox="./media/create-datastore-with-ui/enable-key-access.png":::
5455

5556
1. Select **Access Control (IAM)** from left panel, and assign the **Storage Blob Data Contributor** and **Storage File Data Privileged Contributor** roles to the service principal.
5657

57-
:::image type="content" source="media/create-datastore-with-UI/assign-roles.png" alt-text="Screenshot showing how to assign roles of data lake storage account in Azure portal." lightbox="./media/create-datastore-with-UI/assign-roles.png":::
58+
:::image type="content" source="media/create-datastore-with-ui/assign-roles.png" alt-text="Screenshot showing how to assign roles of data lake storage account in Azure portal." lightbox="./media/create-datastore-with-ui/assign-roles.png":::
5859

5960
1. Create a container in the storage account. Name it **onelake-table**.
6061

61-
:::image type="content" source="media/create-datastore-with-UI/create-container.png" alt-text="Screenshot showing creation of a data lake storage account container in the Azure portal." lightbox="./media/create-datastore-with-UI/create-container.png":::
62+
:::image type="content" source="media/create-datastore-with-ui/create-container.png" alt-text="Screenshot showing creation of a data lake storage account container in the Azure portal." lightbox="./media/create-datastore-with-ui/create-container.png":::
6263

6364
## Use a Fabric data pipeline to copy data to an Azure Data Lake Storage account
6465

6566
1. At the Fabric portal, select **Data pipeline** at the New item page.
6667

67-
:::image type="content" source="media/create-datastore-with-UI/create-pipeline.png" alt-text="Screenshot showing selection of data pipeline at the Fabric New item page." lightbox="./media/create-datastore-with-UI/create-pipeline.png":::
68+
:::image type="content" source="media/create-datastore-with-ui/create-pipeline.png" alt-text="Screenshot showing selection of data pipeline at the Fabric New item page." lightbox="./media/create-datastore-with-ui/create-pipeline.png":::
6869

6970
1. Select **Copy data assistant**.
7071

71-
:::image type="content" source="media/create-datastore-with-UI/copy-data-assistant.png" alt-text="Screenshot showing selection of Copy data assistant." lightbox="./media/create-datastore-with-UI/copy-data-assistant.png":::
72+
:::image type="content" source="media/create-datastore-with-ui/copy-data-assistant.png" alt-text="Screenshot showing selection of Copy data assistant." lightbox="./media/create-datastore-with-ui/copy-data-assistant.png":::
7273

7374
1. In **Copy data assistant**, select **Azure Blobs**:
7475

75-
:::image type="content" source="media/create-datastore-with-UI/select-azure-blob.png" alt-text="Screenshot showing selection of Select Azure blobs in the Fabric Copy data assistant." lightbox="./media/create-datastore-with-UI/select-azure-blob.png":::
76+
:::image type="content" source="media/create-datastore-with-ui/select-azure-blob.png" alt-text="Screenshot showing selection of Select Azure blobs in the Fabric Copy data assistant." lightbox="./media/create-datastore-with-ui/select-azure-blob.png":::
7677

7778
1. To create a connection to the Azure Data Lake storage account, select **Authentication kind: Account key** and then **Next**:
7879

7980
<!-- Maybe place a red highlight box around "Authentication kind: Account key" -->
8081

81-
:::image type="content" source="media/create-datastore-with-UI/create-connection.png" alt-text="Screenshot that shows how to create a connection in a Fabric data pipeline." lightbox="./media/create-datastore-with-UI/create-connection.png":::
82+
:::image type="content" source="media/create-datastore-with-ui/create-connection.png" alt-text="Screenshot that shows how to create a connection in a Fabric data pipeline." lightbox="./media/create-datastore-with-ui/create-connection.png":::
8283

8384
1. Select the data destination, and select Next:
8485

8586
<!-- Maybe place red highlight boxes around "OK" and "Next" -->
8687

87-
:::image type="content" source="media/create-datastore-with-UI/select-destination-folder.png" alt-text="Screenshot that shows selection of the data destination." lightbox="./media/create-datastore-with-UI/select-destination-folder.png":::
88+
:::image type="content" source="media/create-datastore-with-ui/select-destination-folder.png" alt-text="Screenshot that shows selection of the data destination." lightbox="./media/create-datastore-with-ui/select-destination-folder.png":::
8889

8990
1. Connect to the data destination, and select Next:
9091

91-
:::image type="content" source="media/create-datastore-with-UI/connect-data-destination.png" alt-text="Screenshot that shows connection to the data destination." lightbox="./media/create-datastore-with-UI/connect-data-destination.png":::
92+
:::image type="content" source="media/create-datastore-with-ui/connect-data-destination.png" alt-text="Screenshot that shows connection to the data destination." lightbox="./media/create-datastore-with-ui/connect-data-destination.png":::
9293

9394
1. That step automatically starts the data copy job:
9495

9596
<!-- This image does not seem to highlight how to start the data copy job - it does not seem to highlight a control that actually starts the data copy job -->
9697

97-
:::image type="content" source="media/create-datastore-with-UI/copy-activity-scheduled.png" alt-text="Screenshot that shows the copy activity is scheduled." lightbox="./media/create-datastore-with-UI/copy-activity-scheduled.png":::
98+
:::image type="content" source="media/create-datastore-with-ui/copy-activity-scheduled.png" alt-text="Screenshot that shows the copy activity is scheduled." lightbox="./media/create-datastore-with-ui/copy-activity-scheduled.png":::
9899

99100
This step might take a while. It directly leads to the next step.
100101

101102
1. Check that the data copy job finished successfully:
102103

103-
:::image type="content" source="media/create-datastore-with-UI/copy-activity-success.png" alt-text="Screenshot showing that the copy operation succeeded." lightbox="./media/create-datastore-with-UI/copy-activity-success.png":::
104+
:::image type="content" source="media/create-datastore-with-ui/copy-activity-success.png" alt-text="Screenshot showing that the copy operation succeeded." lightbox="./media/create-datastore-with-ui/copy-activity-success.png":::
104105

105106
## Create datastore in Azure Machine Learning linking to Azure Data Lake Storage container
106107

@@ -113,27 +114,27 @@ Now that your data is in the Azure Data Lake storage resource, you can create an
113114
114115
The create-container.png image step created the **onelake-table** container.-->
115116

116-
:::image type="content" source="media/create-datastore-with-UI/check-container.png" alt-text="Screenshot that shows how to verify the data in Azure storage account container." lightbox="./media/create-datastore-with-UI/check-container.png":::
117+
:::image type="content" source="media/create-datastore-with-ui/check-container.png" alt-text="Screenshot that shows how to verify the data in Azure storage account container." lightbox="./media/create-datastore-with-ui/check-container.png":::
117118

118119
1. In Machine Learning studio create data asset, select the **File (uri_file)** type:
119120

120-
:::image type="content" source="media/create-datastore-with-UI/create-data-asset.png" alt-text="Screenshot showing selection of the File (uri_file) type." lightbox="./media/create-datastore-with-UI/create-data-asset.png":::
121+
:::image type="content" source="media/create-datastore-with-ui/create-data-asset.png" alt-text="Screenshot showing selection of the File (uri_file) type." lightbox="./media/create-datastore-with-ui/create-data-asset.png":::
121122

122123
1. Select **From Azure storage**:
123124

124-
:::image type="content" source="media/create-datastore-with-UI/select-azure-storage.png" alt-text="Screenshot that shows how to select Azure storage." lightbox="./media/create-datastore-with-UI/select-azure-storage.png":::
125+
:::image type="content" source="media/create-datastore-with-ui/select-azure-storage.png" alt-text="Screenshot that shows how to select Azure storage." lightbox="./media/create-datastore-with-ui/select-azure-storage.png":::
125126

126127
1. Using the **Account key** value from the earlier **Create a connection to the Azure Data Lake storage account** step, create a **New datastore**:
127128

128-
:::image type="content" source="media/create-datastore-with-UI/new-datastore.png" alt-text="Screenshot that shows how to create new datastore in Azure Machine Learning." lightbox="./media/create-datastore-with-UI/new-datastore.png":::
129+
:::image type="content" source="media/create-datastore-with-ui/new-datastore.png" alt-text="Screenshot that shows how to create new datastore in Azure Machine Learning." lightbox="./media/create-datastore-with-ui/new-datastore.png":::
129130

130131
1. You can also directly create a datastore in the Azure Machine Learning Studio:
131132

132-
:::image type="content" source="media/create-datastore-with-UI/create-datastore.png" alt-text="Screenshot that shows how to create a datastore in Azure Machine Learning." lightbox="./media/create-datastore-with-UI/create-datastore.png":::
133+
:::image type="content" source="media/create-datastore-with-ui/create-datastore.png" alt-text="Screenshot that shows how to create a datastore in Azure Machine Learning." lightbox="./media/create-datastore-with-ui/create-datastore.png":::
133134

134135
1. You can review details of the datastore you created:
135136

136-
:::image type="content" source="media/create-datastore-with-UI/datastore-created.png" alt-text="Screenshot that shows details of the datastore you created." lightbox="./media/create-datastore-with-UI/datastore-created.png":::
137+
:::image type="content" source="media/create-datastore-with-ui/datastore-created.png" alt-text="Screenshot that shows details of the datastore you created." lightbox="./media/create-datastore-with-ui/datastore-created.png":::
137138

138139
1. Review the data in the datastore
139140

@@ -143,7 +144,7 @@ Now that your data is in the Azure Data Lake storage resource, you can create an
143144
144145
resource. -->
145146

146-
:::image type="content" source="media/create-datastore-with-UI/access-datastore.png" alt-text="Screenshot that shows how to access a datastore in Azure Machine Learning." lightbox="./media/create-datastore-with-UI/access-datastore.png":::
147+
:::image type="content" source="media/create-datastore-with-ui/access-datastore.png" alt-text="Screenshot that shows how to access a datastore in Azure Machine Learning." lightbox="./media/create-datastore-with-ui/access-datastore.png":::
147148

148149
Now that you successfully created the datastore in Azure Machine Learning, you can use it in machine learning exercises.
149150

0 commit comments

Comments
 (0)