Rajat
Rajat

Reputation: 13

how to write dynamic query in azure stream analytics?

For an instance, simulated device storing humidity to blob storage. How can I write a query (humidity > X) so that X is picked from another file in blob storage. This X can vary.

Upvotes: 0

Views: 598

Answers (1)

Vignesh Chandramohan
Vignesh Chandramohan

Reputation: 1306

You can use reference data for storing the thresholds (X in above example). Reference data can either be static, or dynamic.

https://learn.microsoft.com/en-us/azure/stream-analytics/stream-analytics-use-reference-data

Upvotes: 2

Related Questions