You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/machine-learning/tutorial-enable-materialization-backfill-data.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,24 +39,24 @@ In this tutorial, you learn how to:
39
39
Before you proceed with this tutorial, be sure to cover these prerequisites:
40
40
41
41
* Completion of [Tutorial 1: Develop and register a feature set with managed feature store](tutorial-get-started-with-feature-store.md), to create the required feature store, account entity, and `transactions` feature set.
42
-
* An Azure resource group, where you (or the service principal that you use) have user access administrator and contributor roles.
43
-
* On your user account, the owner or contributor role for the resource group that holds the created feature store.
42
+
* An Azure resource group, where you (or the service principal that you use) have User Access Administrator and Contributor roles.
43
+
* On your user account, the Owner or Contributor role for the resource group that holds the created feature store.
44
44
45
45
## Set up
46
46
47
47
This list summarizes the required setup steps:
48
48
49
49
1. In your project workspace, create an Azure Machine Learning compute resource to run the training pipeline.
50
-
1. In your feature store workspace, create an offline materialization store. Create an Azure storage account and a container inside it, and attach it to the feature store. Optionally, you can use an existing storage container.
50
+
1. In your feature store workspace, create an offline materialization store. Create an Azure Data Lake Storage Gen2 account and a container inside it, and attach it to the feature store. Optionally, you can use an existing storage container.
51
51
1. Create and assign a UAI to the feature store. Optionally, you can use an existing managed identity. The system-managed materialization jobs - in other words, the recurrent jobs - use the managed identity. The third tutorial in the series relies on it.
52
-
1. Grant required role-based authentication control (RBAC) permissions to the UAI.
52
+
1. Grant required role-based access control (RBAC) permissions to the UAI.
53
53
1. Grant required RBAC permissions to your Azure Active Directory (Azure AD) identity. Users, including you, need read access to the sources and the materialization store.
54
54
55
55
### Configure the Azure Machine Learning Spark notebook
56
56
57
57
You can create a new notebook and execute the instructions in this tutorial step by step. You can also open the existing notebook named *2. Enable materialization and backfill feature data.ipynb* from the *featurestore_sample/notebooks* directory, and then run it. You can choose *sdk_only* or *sdk_and_cli*. Keep this tutorial open and refer to it for documentation links and more explanation.
58
58
59
-
1. On the top menu, in the **Compute** dropdown list, select **Azure Machine Learning Spark compute**.
59
+
1. On the top menu, in the **Compute** dropdown list, select **Serverless Spark Compute** under **Azure Machine Learning Serverless Spark**.
60
60
61
61
1. Configure the session:
62
62
@@ -193,9 +193,9 @@ This UAI is assigned to the feature store shortly. It requires these permissions
| Feature store | Azure Machine Learning data scientist role |
197
-
| Storage account of the offline store on the feature store | Blob storage data contributor role |
198
-
| Storage accounts of the source data | Blob storage data reader role |
196
+
| Feature store | Azure Machine Learning Data Scientist role |
197
+
| Storage account of the offline store on the feature store | Blob storage Data Contributor role |
198
+
| Storage accounts of the source data | Blob storage Data Reader role |
199
199
200
200
The next CLI commands assign the first two roles to the UAI. In this example, the "storage accounts of the source data" scope doesn't apply because you read the sample data from a public access blob storage. To use your own data sources, you must assign the required roles to the UAI. To learn more about access control, see [Manage access control for managed feature store](./how-to-setup-access-control-feature-store.md).
201
201
@@ -211,17 +211,17 @@ The next CLI commands assign the first two roles to the UAI. In this example, th
211
211
212
212
---
213
213
214
-
### Grant the blob data reader role access to your user account in the offline store
214
+
### Grant the blob Data Reader role access to your user account in the offline store
215
215
216
-
If the feature data is materialized, you need the blob data reader role to read feature data from the offline materialization store.
216
+
If the feature data is materialized, you need the blob Data Reader role to read feature data from the offline materialization store.
217
217
218
218
Obtain your Azure AD object ID value from the Azure portal, as described in [Find the user object ID](/partner-center/find-ids-and-domain-names#find-the-user-object-id).
219
219
220
220
To learn more about access control, see [Manage access control for managed feature store](./how-to-setup-access-control-feature-store.md).
221
221
222
222
[!notebook-python[] (~/azureml-examples-main/sdk/python/featurestore_sample/notebooks/sdk_only/2. Enable materialization and backfill feature data.ipynb?name=grant-rbac-to-user-identity)]
223
223
224
-
The following steps grant the blob data reader role access to your user account:
224
+
The following steps grant the blob Data Reader role access to your user account:
225
225
226
226
1. Attach the offline materialization store and UAI, to enable the offline store on the feature store.
Copy file name to clipboardExpand all lines: articles/machine-learning/tutorial-enable-recurrent-materialization-run-batch-inference.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ Before you proceed with the following procedures, be sure to complete the first,
41
41
42
42
To run this tutorial, you can create a new notebook and execute the instructions step by step. You can also open and run the existing notebook named *4. Enable recurrent materialization and run batch inference*. You can find that notebook, and all the notebooks in this series, in the *featurestore_sample/notebooks* directory. You can choose *sdk_only* or *sdk_and_cli*. Keep this tutorial open and refer to it for documentation links and more explanation.
43
43
44
-
1. On the top menu, in the **Compute** dropdown list, select **Azure Machine Learning Spark compute**.
44
+
1. On the top menu, in the **Compute** dropdown list, select **Serverless Spark Compute** under **Azure Machine Learning Serverless Spark**.
Copy file name to clipboardExpand all lines: articles/machine-learning/tutorial-experiment-train-models-using-features.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ Before you proceed with the following procedures, be sure to complete the first
43
43
44
44
You can create a new notebook and execute the instructions in this tutorial step by step. You can also open and run the existing notebook named *3. Experiment and train models using features.ipynb* from the *featurestore_sample/notebooks* directory. You can choose *sdk_only* or *sdk_and_cli*. Keep this tutorial open and refer to it for documentation links and more explanation.
45
45
46
-
1. On the top menu, in the **Compute** dropdown list, select **Azure Machine Learning Spark compute**.
46
+
1. On the top menu, in the **Compute** dropdown list, select **Serverless Spark Compute** under **Azure Machine Learning Serverless Spark**.
Copy file name to clipboardExpand all lines: articles/machine-learning/tutorial-get-started-with-feature-store.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ Before you proceed with this tutorial, be sure to cover these prerequisites:
43
43
44
44
* An Azure Machine Learning workspace. For more information about workspace creation, see [Quickstart: Create workspace resources](./quickstart-create-resources.md).
45
45
46
-
* On your user account, the owner or contributor role for the resource group where the feature store is created.
46
+
* On your user account, the Owner or Contributor role for the resource group where the feature store is created.
47
47
48
48
If you choose to use a new resource group for this tutorial, you can easily delete all the resources by deleting the resource group.
0 commit comments