A development team is making use of Azure Stream Analytics. They have defined the following SQL query:
WITH step1 AS (SELECT * FROM input1 PARTITION BY XYZID INTO 10), step2 AS (SELECT * FROM input2 PARTITION BY XYZID INTO 10)
SELECT * INTO output FROM step1 PARTITION BY XYZID UNION step2 PARTITION BY XYZID
Does the query represent the joining of two streams of repartitioned data?
TonReurts
3 years, 9 months ago