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/synapse-analytics/sql-data-warehouse/quickstart-create-a-workload-classifier-portal.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ ms.custom: azure-synapse
15
15
16
16
# Quickstart: Create a Synapse SQL pool workload classifier using the Azure portal
17
17
18
-
In this quickstart, you will create a [workload classifier](sql-data-warehouse-workload-classification.md) for assigning queries to a workload group. The classifier will assign requests from the `ELTLogin` SQL user to the `DataLoads` workload group. Follow the [Quickstart: Configure workload isolation](quickstart-create-a-workload-isolation-portal.md) tutorial to create the `DataLoads` workload group. This tutorial will create a workload classifier with the WLM_LABEL option to help further classify requests correctly. The classifier will assign high [workload importance](sql-data-warehouse-workload-importance.md) to these requests as well.
18
+
In this quickstart, you will create a [workload classifier](sql-data-warehouse-workload-classification.md) for assigning queries to a workload group. The classifier will assign requests from the `ELTLogin` SQL user to the `DataLoads` workload group. Follow the [Quickstart: Configure workload isolation](quickstart-configure-workload-isolation-portal.md) tutorial to create the `DataLoads` workload group. This tutorial will create a workload classifier with the WLM_LABEL option to help further classify requests correctly. The classifier will assign high [workload importance](sql-data-warehouse-workload-importance.md) to these requests as well.
19
19
20
20
21
21
If you don't have an Azure subscription, create a [free](https://azure.microsoft.com/free/) account before you begin.
@@ -62,7 +62,7 @@ END
62
62
```
63
63
64
64
## Configure workload classification
65
-
Classification allows you to route requests, based on a set of rules, to a workload group. In the [Quickstart: Configure workload isolation](quickstart-create-a-workload-isolation-portal.md) tutorial we created the `DataLoads` workload group. Now you will create a workload classifier to route queries to the `DataLoads` workload group.
65
+
Classification allows you to route requests, based on a set of rules, to a workload group. In the [Quickstart: Configure workload isolation](quickstart-configure-workload-isolation-portal.md) tutorial we created the `DataLoads` workload group. Now you will create a workload classifier to route queries to the `DataLoads` workload group.
66
66
67
67
68
68
1. Click **Azure Synapse Analytics (formerly SQL DW)** in the left page of the Azure portal.
@@ -87,12 +87,14 @@ Classification allows you to route requests, based on a set of rules, to a workl
Check the [sys.workload_management_workload_classifiers](sql/relational-databases/system-catalog-views/sys-workload-management-workload-classifiers-transact-sql?view=azure-sqldw-latest) catalog view to verify existence of the `ELTLoginDataLoads` classifier.
90
+
Check the [sys.workload_management_workload_classifiers](/sql/relational-databases/system-catalog-views/sys-workload-management-workload-classifiers-transact-sql?view=azure-sqldw-latest)
91
+
92
+
catalog view to verify existence of the `ELTLoginDataLoads` classifier.
91
93
```sql
92
94
SELECT*FROMsys.workload_management_workload_classifiersWHERE name ='ELTLoginDataLoads'
93
95
```
94
96
95
-
Check the [sys.workload_management_workload_classifier_details](sql/relational-databases/system-catalog-views/sys-workload-management-workload-classifier-details-transact-sql?view=azure-sqldw-latest) catalog view to verify classifier details.
97
+
Check the [sys.workload_management_workload_classifier_details](/sql/relational-databases/system-catalog-views/sys-workload-management-workload-classifier-details-transact-sql?view=azure-sqldw-latest) catalog view to verify classifier details.
0 commit comments