Reputation: 13
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
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