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/iot-operations/connect-to-cloud/howto-configure-fabric-endpoint.md
+27-25Lines changed: 27 additions & 25 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -138,6 +138,31 @@ kubectl apply -f <FILE>.yaml
138
138
139
139
---
140
140
141
+
## OneLake path type
142
+
143
+
The `oneLakePathType` setting determines the type of path to use in the OneLake path. The default value is `Tables`, which is the recommended path type for the most common use cases. The `Tables` path type is a table in the OneLake lakehouse that is used to store the data. It can also be set as `Files`, which is a file in the OneLake lakehouse that is used to store the data. The `Files` path type is useful when you want to store the data in a file format that isn't supported by the `Tables` path type.
144
+
145
+
# [Portal](#tab/portal)
146
+
147
+
The OneLake path type is set in the **Basic** tab for the dataflow endpoint.
148
+
149
+
# [Bicep](#tab/bicep)
150
+
151
+
```bicep
152
+
fabricOneLakeSettings: {
153
+
oneLakePathType: 'Tables' // Or 'Files'
154
+
}
155
+
```
156
+
157
+
# [Kubernetes](#tab/kubernetes)
158
+
159
+
```yaml
160
+
fabricOneLakeSettings:
161
+
oneLakePathType: Tables # Or Files
162
+
```
163
+
164
+
---
165
+
141
166
## Available authentication methods
142
167
143
168
The following authentication methods are available for Microsoft Fabric OneLake dataflow endpoints. For more information about enabling secure settings by configuring an Azure Key Vault and enabling workload identities, see [Enable secure settings in Azure IoT Operations Preview deployment](../deploy-iot-ops/howto-enable-secure-settings.md).
@@ -257,35 +282,12 @@ fabricOneLakeSettings:
257
282
258
283
---
259
284
285
+
Here, the scope is optional and defaults to `https://storage.azure.com/.default`. If you need to override the default scope, specify the `scope` setting using Bicep or Kubernetes.
286
+
260
287
## Advanced settings
261
288
262
289
You can set advanced settings for the Fabric OneLake endpoint, such as the batching latency and message count. You can set these settings in the dataflow endpoint **Advanced** portal tab or within the dataflow endpoint custom resource.
263
290
264
-
### OneLake path type
265
-
266
-
The `oneLakePathType` setting determines the type of path to use in the OneLake path. The default value is `Tables`, which is the recommended path type for the most common use cases. The `Tables` path type is a table in the OneLake lakehouse that is used to store the data. It can also be set as `Files`, which is a file in the OneLake lakehouse that is used to store the data. The `Files` path type is useful when you want to store the data in a file format that isn't supported by the `Tables` path type.
267
-
268
-
# [Portal](#tab/portal)
269
-
270
-
The OneLake path type is set in the **Basic** tab for the dataflow endpoint.
271
-
272
-
# [Bicep](#tab/bicep)
273
-
274
-
```bicep
275
-
fabricOneLakeSettings: {
276
-
oneLakePathType: 'Tables' // Or 'Files'
277
-
}
278
-
```
279
-
280
-
# [Kubernetes](#tab/kubernetes)
281
-
282
-
```yaml
283
-
fabricOneLakeSettings:
284
-
oneLakePathType: Tables # Or Files
285
-
```
286
-
287
-
---
288
-
289
291
### Batching
290
292
291
293
Use the `batching` settings to configure the maximum number of messages and the maximum latency before the messages are sent to the destination. This setting is useful when you want to optimize for network bandwidth and reduce the number of requests to the destination.
Copy file name to clipboardExpand all lines: articles/iot-operations/connect-to-cloud/howto-configure-kafka-endpoint.md
+4-5Lines changed: 4 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,9 @@ To set up bi-directional communication between Azure IoT Operations Preview and
29
29
30
30
### Create an Azure Event Hubs namespace and event hub in it
31
31
32
-
First, [create a Kafka-enabled Azure Event Hubs namespace](../../event-hubs/event-hubs-quickstart-kafka-enabled-event-hubs.md) and a event hub for each Kafka topic.
32
+
First, [create a Kafka-enabled Azure Event Hubs namespace](../../event-hubs/event-hubs-quickstart-kafka-enabled-event-hubs.md)
33
+
34
+
Next, [create an event hub in the namespace](../../event-hubs/event-hubs-create.md#create-an-event-hub). Each individual event hub corresponds to a Kafka topic. You can create multiple event hubs in the same namespace to represent multiple Kafka topics.
33
35
34
36
### Assign the managed identity to the Event Hubs namespace
35
37
@@ -52,10 +54,7 @@ Finally, create the *DataflowEndpoint* resource. Use your own values to replace
| Host | The hostname of the Kafka broker in the format `<NAMEPSACE>.servicebus.windows.net:9093`. Include port number `9093` in the host setting for Event Hubs. |
55
-
| Authentication method| The method used for authentication. Choose *System assigned managed identity*, *User assigned managed identity*, or *SASL*. |
56
-
| SASL type | The type of SASL authentication. Choose *Plain*, *ScramSha256*, or *ScramSha512*. Required if using *SASL*. |
57
-
| Synced secret name | The name of the secret. Required if using *SASL* or *X509*. |
58
-
| Username reference of token secret | The reference to the username in the SASL token secret. Required if using *SASL*. |
57
+
| Authentication method| The method used for authentication. Choose *System assigned managed identity*|
0 commit comments