Wednesday, February 05, 2020

Data Platform Tips 70 - Transformation Query in Azure Stream Analytics

Stream Analytics transformation query helps to select data from one or many inputs into one or many outputs. The query language is similar to T-SQL but differs in how the query is executed.

Stream Analytics Query Language Reference - https://docs.microsoft.com/en-nz/stream-analytics-query/stream-analytics-query-language-reference

Even though a single Stream Analytics job can have multiple inputs and multiple outputs, it is better to split unrelated queries into multiple Stream Analytics jobs. This will help in improving the performance of the jobs.

The following aggregate functions in Stream Analytics job.

  • AVG
  • COUNT
  • Collect
  • CollectTOP
  • MAX
  • MIN
  • Percentile_Cont
  • Percentile_Disc
  • STDEV
  • STDEVP
  • SUM
  • TopOne
  • VAR
  • VARP

No comments:

Post a Comment