Exam DP203 Azure Stream Analytics: Difference between revisions
No edit summary |
No edit summary |
||
Line 12: | Line 12: | ||
'''reference inputs''' for static data | '''reference inputs''' for static data | ||
<pre> | |||
SELECT observation_time, weather_station, temperature | |||
INTO cold-temps | |||
FROM weather-events TIMESTAMP BY observation_time | |||
WHERE temperature < 0 | |||
</pre> |
Revision as of 14:10, 21 November 2024
Azure Stream Analytics.
Unbounded - no limit to the amount of data.
Temporal - each piece of data has a datetimestamp.
Aggregation over these temporal windows.
Real time or near-real time analysis.
Create a Stream Analytics job. Optionally create a Stream Analytics cluster.
reference inputs for static data
SELECT observation_time, weather_station, temperature INTO cold-temps FROM weather-events TIMESTAMP BY observation_time WHERE temperature < 0