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
@@ -105,16 +105,16 @@ Most simple and common authentication method. This method is recommended for Azu
105
105
|**KUSTO_AAD_AUTHORITY_ID**| Azure AD authentication authority. Azure AD Directory (tenant) ID. |
106
106
|**KUSTO_AAD_CLIENT_PASSWORD**| Azure AD application key for the client. |
107
107
108
-
### Azure Data Explorer Privileges
108
+
### Azure Data Explorer privileges
109
109
110
-
The following privileges must be granted on an Azure Data Explorer Cluster:
110
+
The following privileges must be granted on an Azure Data Explorer cluster:
111
111
112
112
* For reading (data source), Azure AD application must have *viewer* privileges on the target database, or *admin* privileges on the target table.
113
113
* For writing (data sink), Azure AD application must have *ingestor* privileges on the target database. It must also have *user* privileges on the target database to create new tables. If the target table already exists, *admin* privileges on the target table can be configured.
114
114
115
115
For more information on Azure Data Explorer principal roles, see [role-based authorization](/azure/kusto/management/access-control/role-based-authorization). For managing security roles, see [security roles management](/azure/kusto/management/security-roles).
116
116
117
-
## Spark sink: Writing to Azure Data Explorer
117
+
## Spark sink: writing to Azure Data Explorer
118
118
119
119
1. Set up sink parameters:
120
120
@@ -179,10 +179,9 @@ For more information on Azure Data Explorer principal roles, see [role-based aut
179
179
.option(KustoSinkOptions.KUSTO_WRITE_ENABLE_ASYNC, "true") // Optional, better for streaming, harder to handle errors
180
180
.trigger(Trigger.ProcessingTime(TimeUnit.SECONDS.toMillis(10))) // Sync this with the ingestionBatching policy of the database
181
181
.start()
182
-
183
182
```
184
183
185
-
##Sparksource: Reading from AzureDataExplorer
184
+
##Sparksource: reading from AzureDataExplorer
186
185
187
186
1. When reading small amounts of data, define the data query:
0 commit comments