Skip to content

Commit a46b2b0

Browse files
Merge pull request #277275 from alexbuckgit/alexbuckgit/docutune-autopr-20240605-130753-9046133-ignore-build
[BULK] - DocuTune - Minor formatting and syntax fixes (part 6)
2 parents a4e15f6 + 7f4dfc4 commit a46b2b0

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

articles/stream-analytics/power-bi-output.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -48,26 +48,26 @@ Azure Stream Analytics updates the data model dynamically at runtime when the ou
4848

4949
This table covers the data type conversions from [Stream Analytics data types](/stream-analytics-query/data-types-azure-stream-analytics) to Power BI [Entity Data Model (EDM) types](/dotnet/framework/data/adonet/entity-data-model), if a Power BI dataset and table don't exist.
5050

51-
From Stream Analytics | To Power BI
52-
-----|-----
53-
bigint | Int64
54-
nvarchar(max) | String
55-
datetime | Datetime
56-
float | Double
57-
Record array | String type, constant value `IRecord` or `IArray`
51+
| From Stream Analytics | To Power BI |
52+
| -----|----- |
53+
| bigint | Int64 |
54+
| nvarchar(max) | String |
55+
| datetime | Datetime |
56+
| float | Double |
57+
| Record array | String type, constant value `IRecord` or `IArray` |
5858

5959
### Update the schema
6060

6161
Stream Analytics infers the data model schema based on the first set of events in the output. Later, if necessary, the data model schema is updated to accommodate incoming events that might not fit into the original schema.
6262

6363
Avoid the `SELECT *` query to prevent dynamic schema update across rows. In addition to potential performance implications, it might result in uncertainty of the time taken for the results. Select the exact fields that need to be shown on the Power BI dashboard. Additionally, the data values should be compliant with the chosen data type.
6464

65-
Previous/current | Int64 | String | Datetime | Double
66-
-----------------|-------|--------|----------|-------
67-
Int64 | Int64 | String | String | Double
68-
Double | Double | String | String | Double
69-
String | String | String | String | String
70-
Datetime | String | String | Datetime | String
65+
| Previous/current | Int64 | String | Datetime | Double |
66+
| ---|---|---|---|--- |
67+
| Int64 | Int64 | String | String | Double |
68+
| Double | Double | String | String | Double |
69+
| String | String | String | String | String |
70+
| Datetime | String | String | Datetime | String |
7171

7272
## Limitations and best practices
7373
Currently, Power BI can be called roughly once per second. Streaming visuals support packets of 15 KB. Beyond that, streaming visuals fail (but push continues to work). Because of these limitations, Power BI lends itself most naturally to cases where Azure Stream Analytics does a significant data load reduction. We recommend using a Tumbling window or Hopping window to ensure that data push is at most one push per second, and that your query lands within the throughput requirements. For more info on output batch size, see [Power BI REST API limits](/power-bi/developer/automation/api-rest-api-limitations).

0 commit comments

Comments
 (0)