Skip to content

Commit 234f790

Browse files
authored
count -> number of partitions
1 parent a4197d4 commit 234f790

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/stream-analytics/repartition.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ FROM RepartitionedInput
5656
GROUP BY DeviceId, TumblingWindow(minute, 1)
5757
```
5858

59-
The following example query joins two streams of repartitioned data. When you join two streams of repartitioned data, the streams must have the same partition key and count. The outcome is a stream that has the same partition scheme.
59+
The following example query joins two streams of repartitioned data. When you join two streams of repartitioned data, the streams must have the same partition key and the same number of partitions. The outcome is a stream that has the same partition scheme.
6060

6161
```sql
6262
WITH step1 AS
@@ -75,7 +75,7 @@ FROM step1 PARTITION BY DeviceID
7575
UNION step2 PARTITION BY DeviceID
7676
```
7777

78-
The output scheme should match the stream scheme key and count so that each substream can be flushed independently. The stream could also be merged and repartitioned again by a different scheme before flushing, but you should avoid that method because it adds to the general latency of the processing and increases resource utilization.
78+
The output scheme should match the stream partition key and the partition count so that each substream can be flushed independently. The stream could also be merged and repartitioned again by a different scheme before flushing, but you should avoid that method because it adds to the general latency of the processing and increases resource utilization.
7979

8080
## Streaming Units for repartitions
8181

0 commit comments

Comments
 (0)