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/data-explorer/create-cluster-database-resource-manager.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -105,7 +105,7 @@ You can deploy the Azure Resource Manager template by [using the Azure portal](#
105
105
106
106

107
107
108
-
You can [edit and deploy the template in the Azure portal](/azure/azure-resource-manager/resource-manager-quickstart-create-templates-use-the-portal#edit-and-deploy-the-template) by using the form.
108
+
You can [edit and deploy the template in the Azure portal](/azure/azure-resource-manager/resource-manager-quickstart-create-templates-use-the-portal#edit-and-deploy-the-template) by using the form.
109
109
110
110
1. Complete **BASICS** and **SETTINGS** sections. Select unique cluster and database names.
111
111
It takes a few minutes to create an Azure Data Explorer cluster and database.
@@ -135,9 +135,9 @@ It takes a few minutes to create an Azure Data Explorer cluster and database.
135
135
1. Right-click the shell console, and then select **Paste**.
136
136
It takes a few minutes to create an Azure Data Explorer cluster and database.
137
137
138
-
#### Verify the deployment using powershell
138
+
#### Verify the deployment using PowerShell
139
139
140
-
To verify the deployment, use the following Azure PowerShell script. If the Cloud shell is still open, you don't need to copy/run the first line (Read-Host). For more information regarding managing Azure Data Explorer resources in PowerShell, read [Az.Kusto](/powershell/module/az.kusto/?view=azps-2.7.0). Make relevant changes
140
+
To verify the deployment, use the following Azure PowerShell script. If the Cloud Shell is still open, you don't need to copy/run the first line (Read-Host). For more information regarding managing Azure Data Explorer resources in PowerShell, read [Az.Kusto](/powershell/module/az.kusto/?view=azps-2.7.0).
141
141
142
142
```azurepowershell-interactive
143
143
$projectName = Read-Host -Prompt "Enter the same project name that you used in the last procedure"
@@ -158,9 +158,9 @@ When the Azure resources are no longer needed, clean up the resources you deploy
158
158
159
159
Delete the resources in the Azure portal by following the steps in [clean up resources](create-cluster-database-portal.md#clean-up-resources).
160
160
161
-
### Clean up resources using powershell
161
+
### Clean up resources using PowerShell
162
162
163
-
If the Cloud shell is still open, you don't need to copy/run the first line (Read-Host).
163
+
If the Cloud Shell is still open, you don't need to copy/run the first line (Read-Host).
164
164
165
165
```azurepowershell-interactive
166
166
$projectName = Read-Host -Prompt "Enter the same project name that you used in the last procedure"
Copy file name to clipboardExpand all lines: articles/data-explorer/power-bi-best-practices.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,13 +25,13 @@ When working with terabytes of fresh raw data, follow these guidelines to keep P
25
25
26
26
***Import mode versus DirectQuery mode** - Use **Import** mode for interaction of smaller data sets. Use **DirectQuery** mode for large, frequently updated data sets. For example, create dimension tables using **Import** mode since they're small and don't change often. Set the refresh interval according to the expected rate of data updates. Create fact tables using **DirectQuery** mode since these tables are large and contain raw data. Use these tables to present filtered data using Power BI [drillthrough](https://docs.microsoft.com/power-bi/desktop-drillthrough).
27
27
28
-
***Parallelism** – Azure Data explorer is a linearly scalable data platform, therefore, you can improve the performance of dashboard rendering by increasing the parallelism of the end-to-end flow as follows:
28
+
***Parallelism** – Azure Data Explorer is a linearly scalable data platform, therefore, you can improve the performance of dashboard rendering by increasing the parallelism of the end-to-end flow as follows:
29
29
30
30
* Increase the number of [concurrent connections in DirectQuery in Power BI](https://docs.microsoft.com/power-bi/desktop-directquery-about#maximum-number-of-connections-option-for-directquery).
31
31
32
32
* Use [weak consistency to improve parallelism](/azure/kusto/concepts/queryconsistency). This may have an impact on the freshness of the data.
33
33
34
-
***Effective slicers** – you can use[sync slicers](https://docs.microsoft.com/power-bi/visuals/power-bi-visualization-slicers#sync-and-use-slicers-on-other-pages) to prevent reports from loading data before you're ready. After you structure the data set, place all visuals, and mark all the slicers, you can select the sync slicer to load only the data needed.
34
+
***Effective slicers** – Use[sync slicers](https://docs.microsoft.com/power-bi/visuals/power-bi-visualization-slicers#sync-and-use-slicers-on-other-pages) to prevent reports from loading data before you're ready. After you structure the data set, place all visuals, and mark all the slicers, you can select the sync slicer to load only the data needed.
35
35
36
36
***Use filters** - Use as many Power BI filters as possible to focus the Azure Data Explorer search on the relevant data shards.
37
37
@@ -43,7 +43,7 @@ The following section includes tips and tricks for using Kusto query language wi
43
43
44
44
### Complex queries in Power BI
45
45
46
-
Complex queries are more easily expressed in Kusto than in Power Query. They should be implemented as [Kusto functions](/azure/kusto/query/functions), and invoked in Power BI. This method is required when using **DirectQuery** with `let` statements in your Kusto query. Since Power BI joins two queries, and `let` statements can't be used with the `join` operator, syntax errors may occur. Therefore, save each portion of the join as a Kusto function and allow Power BI to join these two functions together.
46
+
Complex queries are more easily expressed in Kusto than in Power Query. They should be implemented as [Kusto functions](/azure/kusto/query/functions), and invoked in Power BI. This method is required when using **DirectQuery** with `let` statements in your Kusto query. Because Power BI joins two queries, and `let` statements can't be used with the `join` operator, syntax errors may occur. Therefore, save each portion of the join as a Kusto function and allow Power BI to join these two functions together.
Source = Kusto.Contents("Help", "Samples", "StormEvents | where State == 'ALABAMA' | take 100", [])
102
102
```
103
103
104
-
1. Replace the relevant part of the query with your parameter. Splitting the query into multiple parts, and concatenate them back using the & sign, along with the parameter.
104
+
1. Replace the relevant part of the query with your parameter. Split the query into multiple parts, and concatenate them back using an ampersand (&), along with the parameter.
105
105
106
106
For example, in the query above, we'll take the `State == 'ALABAMA'` part, and split it to: `State == '` and `'` and we'll place the `State` parameter between them:
107
107
@@ -136,7 +136,7 @@ You can use a query parameter in any query step that supports it. For example, f
136
136
### Don't use Power BI data refresh scheduler to issue control commands to Kusto
137
137
138
138
Power BI includes a data refresh scheduler that can periodically issue
139
-
queries against a data source. This mechanism shouldn't be used to schedule control commands to Kusto, since Power BI assumes all queries are read-only.
139
+
queries against a data source. This mechanism shouldn't be used to schedule control commands to Kusto because Power BI assumes all queries are read-only.
140
140
141
141
### Power BI can send only short (<2000 characters) queries to Kusto
0 commit comments