1

i am working with azure stream analytics and want to group multiple inputs with same time to only one output. current output

how can i modify my code that it prints for example in first line:

{"HO","KSPF","07","03","#300","46091240","2017-05-31T10:17:34:4430000Z"}
Tharif
  • 13,794
  • 9
  • 55
  • 77
s.kaiser
  • 103
  • 1
  • 1
  • 4

1 Answers1

0

You can probably aggregate using Collect over very small tumbling window, like 1 millisecond. And then write JavaScript UDF to create one event result from the array accumulated by Collect aggregate.

Aλeᵡ
  • 491
  • 2
  • 2