Real-time insights with Event Hubs, Stream Analytics and an A10 Warthog






Devices Device Connectivity Storage Analytics Presentation & Action
Event Hubs SQL Database
Machine
Learning
App Service
Service Bus
Table/Blob
Storage
Stream
Analytics
Power BI
External Data
Sources
DocumentDB HDInsight
Notification
Hubs
External Data
Sources
Data Factory Mobile Services
BizTalk Services
{ }
Power BI
Power BI
Ingestor
(broker)
Collection Presentation
and action
Event
producers
Transformation Long-term
storage
Event hubs
Storage
adapters
Stream
processingCloud gateways
(web APIs)
Field
gateways
Applications
Legacy IOT
(custom protocols)
Devices
IP-capable devices
(Windows/Linux)
Low-power
devices (RTOS)
Search and query
Data analytics (Excel)
Web/thick client
dashboards
Service bus
Azure DBs
Azure storage
HDInsight
Stream
Analytics
Devices to take action
PowerBI





 Every event that flows through the system has a timestamp
User can pick it from the payload
 SELECT * FROM TwitterStream TIMESTAMP BY CreatedAt
Or the system can assign timestamps automatically based on the event arrival time
 SELECT * FROM TwitterStream
 Projecting timestamp into payload
 SELECT System.Timestamp AS Time, Text FROM TwitterStream

SELECT TimeZone, COUNT(*) AS Count
FROM TwitterStream TIMESTAMP BY CreatedAt
GROUP BY TimeZone, TumblingWindow(second,10)
Tell me the count of tweets per time zone every 10 seconds
1 5 4 26 8 6 5
Time
(secs)
1 5 4 26
8 6
A 10-second Tumbling Window
3 6 1
5 3 6 1
SELECT Topic, COUNT(*) AS TotalTweets, AVG(SentimentScore)
FROM TwitterStream TIMESTAMP BY CreatedAt
GROUP BY Topic, HoppingWindow(second, 10 , 5)
Every 5 seconds give me the
count of tweets and the average
sentiment score over the last 10
seconds
1 5 4 26 8 7
A 10-second Hopping Window with a 5-second “Hop”
4 26
8 6
5 3 6 1
1 5 4 26
8 6 5 3
6 15 3
SELECT Topic, COUNT(*) FROM TwitterStream
TIMESTAMP BY CreatedAt
GROUP BY Topic, SlidingWindow(second, 10)
HAVING COUNT(*) > 10
Give me the count of tweets for all
topics which are tweeted more
than 10 times in the last 10
seconds
1 5
A 10-second Sliding Window
8
8
51
9
51 9
1
{“XO”, 4, “Ebola”} {“Jo”, 0, “ALS”} {“Foo”,4, “ALS”}{“Dip”, 2, “XBox”}
{“XO”, 0, “Ebola”} {“Dip”, 0, “Xbox”}{“Jo”, 4, “ALS”} {“Foo”, 0, “ALS”}Twitter Stream:
SELECT TS1.UserName, TS1.Topic
FROM TwitterStream TS1 TIMESTAMP BY CreatedAt
JOIN TwitterStream TS2 TIMESTAMP BY CreatedAt
ON TS1.UserName = TS2.UserName AND TS1.Topic = TS2.Topic
AND DATEDIFF(second, TS1, TS2) BETWEEN 1 AND 60
WHERE TS1.SentimentScore != TS2.SentimentScore
List all users and the topics on which they switched their sentiment within a minute
Reference Data
Seamless correlation of event streams
with reference data
Static or slowly-changing data
Same programming experience:
SELECT myRefData.Name, myStream.Value
FROM JOIN
ON
Power BI
DML
 SELECT
 FROM
 WHERE
 GROUP BY
 HAVING
 CASE WHEN THEN ELSE
 INNER/LEFT OUTER JOIN
 UNION
 CROSS/OUTER APPLY
 CAST
 INTO
 ORDER BY ASC, DSC
SAQL – Language & Library
Scaling Extensions
• WITH
• PARTITION BY
• OVER
Date and Time Functions
• DateName
• DatePart
• Day
• Month
• Year
• DateTimeFromParts
• DateDiff
• DateAdd
Windowing Extensions
• TumblingWindow
• HoppingWindow
• SlidingWindow
Aggregate Functions
• Sum
• Count
• Avg
• Min
• Max
• StDev
• StDevP
• Var
• VarP
String Functions
• Len
• Concat
• CharIndex
• Substring
• PatIndex
Temporal Functions
• Lag, IsFirst
• CollectTop
Stream Analytics is priced on two variables:
• Volume of data processed
• Streaming units required to process the data stream
Meter Price (USD)
Volume of Data Processed
 Volume of data processed by the streaming job (in GB)
$.001 per GB
Streaming Unit
 Blended measure of cores, memory, and bandwidth
$0.031 per hour
* Streaming unit is a unit of compute capacity with a maximum throughput of 1MB/s
Daily Azure Stream Analytics cost for 1 MB/sec of average processing
Volume of Data Processed Cost -
$0.001 /GB * 84.375 GB = $0.08 per day, streaming max 1 MB/s non-stop
Streaming Unit Cost -
$.031 /hr * 24 hrs = $0.74 per day, for 1 MB/sec max. throughput
Total cost -
$0.74 + $0.08 = $0.82 per day -or- ~ $25 per month
Solution PortalProvisioning API
Identity & Registry Stores
Stream Event Processor
Analytics/
Machine
Learning
Data
Visualization &
Presentation
Device State Store
Gateway
Storage
IP capable
devices
Existing IoT
devices
Low power
devices
PresentationDevice and Event Processing
Data
Transport
Devices and
Data Sources
Cloud
Gate-
way
Agent
Libs
Agent
Libs
Control System Worker Role
Agent
Libs
Field
Gateway
Device
Connectivity & Management
Analytics &
Operationalized Insights
Presentation &
Business Connectivity
Devices
RTOS,Linux,Android,iOS,Windows
Protocol
Adaptation
Batch Analytics & Visualizations
Azure HDInsight, AzureML, Power BI,
Azure Data Factory
Hot Path Analytics
Azure Stream Analytics, Azure Storm
Presentation & Business
Connections
Websites, Mobile Services
Dynamics, BizTalk Services,
Notification Hubs
Hot Path Business Logic
Service Fabric & Actor Framework
Cloud Gateway
Event Hub
Business Overview http://azure.microsoft.com/en-us/services/stream-analytics/
Documentation http://azure.microsoft.com/en-
us/documentation/services/stream-analytics/
ASA Blog http://blogs.msdn.com/b/streamanalytics/rss.aspx
Follow us on Twitter https://twitter.com/AzureStreaming (follow @AzureStreaming)
ASA Forum https://social.msdn.microsoft.com/Forums/en-
US/home?forum=AzureStreamAnalytics
Vote for ideas http://feedback.azure.com/forums/270577-azure-stream-analytics
Email ASA Team azstream@microsoft.com

Inflight to Insights: Real-time Insights with Event Hubs, Stream Analytics and an A10 Warthog

  • 1.
    Real-time insights withEvent Hubs, Stream Analytics and an A10 Warthog
  • 3.
  • 5.
    Devices Device ConnectivityStorage Analytics Presentation & Action Event Hubs SQL Database Machine Learning App Service Service Bus Table/Blob Storage Stream Analytics Power BI External Data Sources DocumentDB HDInsight Notification Hubs External Data Sources Data Factory Mobile Services BizTalk Services { }
  • 6.
  • 8.
  • 9.
    Ingestor (broker) Collection Presentation and action Event producers TransformationLong-term storage Event hubs Storage adapters Stream processingCloud gateways (web APIs) Field gateways Applications Legacy IOT (custom protocols) Devices IP-capable devices (Windows/Linux) Low-power devices (RTOS) Search and query Data analytics (Excel) Web/thick client dashboards Service bus Azure DBs Azure storage HDInsight Stream Analytics Devices to take action PowerBI
  • 10.
  • 11.
     Every eventthat flows through the system has a timestamp User can pick it from the payload  SELECT * FROM TwitterStream TIMESTAMP BY CreatedAt Or the system can assign timestamps automatically based on the event arrival time  SELECT * FROM TwitterStream  Projecting timestamp into payload  SELECT System.Timestamp AS Time, Text FROM TwitterStream 
  • 12.
    SELECT TimeZone, COUNT(*)AS Count FROM TwitterStream TIMESTAMP BY CreatedAt GROUP BY TimeZone, TumblingWindow(second,10) Tell me the count of tweets per time zone every 10 seconds 1 5 4 26 8 6 5 Time (secs) 1 5 4 26 8 6 A 10-second Tumbling Window 3 6 1 5 3 6 1
  • 13.
    SELECT Topic, COUNT(*)AS TotalTweets, AVG(SentimentScore) FROM TwitterStream TIMESTAMP BY CreatedAt GROUP BY Topic, HoppingWindow(second, 10 , 5) Every 5 seconds give me the count of tweets and the average sentiment score over the last 10 seconds 1 5 4 26 8 7 A 10-second Hopping Window with a 5-second “Hop” 4 26 8 6 5 3 6 1 1 5 4 26 8 6 5 3 6 15 3
  • 14.
    SELECT Topic, COUNT(*)FROM TwitterStream TIMESTAMP BY CreatedAt GROUP BY Topic, SlidingWindow(second, 10) HAVING COUNT(*) > 10 Give me the count of tweets for all topics which are tweeted more than 10 times in the last 10 seconds 1 5 A 10-second Sliding Window 8 8 51 9 51 9 1
  • 15.
    {“XO”, 4, “Ebola”}{“Jo”, 0, “ALS”} {“Foo”,4, “ALS”}{“Dip”, 2, “XBox”} {“XO”, 0, “Ebola”} {“Dip”, 0, “Xbox”}{“Jo”, 4, “ALS”} {“Foo”, 0, “ALS”}Twitter Stream: SELECT TS1.UserName, TS1.Topic FROM TwitterStream TS1 TIMESTAMP BY CreatedAt JOIN TwitterStream TS2 TIMESTAMP BY CreatedAt ON TS1.UserName = TS2.UserName AND TS1.Topic = TS2.Topic AND DATEDIFF(second, TS1, TS2) BETWEEN 1 AND 60 WHERE TS1.SentimentScore != TS2.SentimentScore List all users and the topics on which they switched their sentiment within a minute
  • 16.
    Reference Data Seamless correlationof event streams with reference data Static or slowly-changing data Same programming experience: SELECT myRefData.Name, myStream.Value FROM JOIN ON
  • 17.
  • 18.
    DML  SELECT  FROM WHERE  GROUP BY  HAVING  CASE WHEN THEN ELSE  INNER/LEFT OUTER JOIN  UNION  CROSS/OUTER APPLY  CAST  INTO  ORDER BY ASC, DSC SAQL – Language & Library Scaling Extensions • WITH • PARTITION BY • OVER Date and Time Functions • DateName • DatePart • Day • Month • Year • DateTimeFromParts • DateDiff • DateAdd Windowing Extensions • TumblingWindow • HoppingWindow • SlidingWindow Aggregate Functions • Sum • Count • Avg • Min • Max • StDev • StDevP • Var • VarP String Functions • Len • Concat • CharIndex • Substring • PatIndex Temporal Functions • Lag, IsFirst • CollectTop
  • 19.
    Stream Analytics ispriced on two variables: • Volume of data processed • Streaming units required to process the data stream Meter Price (USD) Volume of Data Processed  Volume of data processed by the streaming job (in GB) $.001 per GB Streaming Unit  Blended measure of cores, memory, and bandwidth $0.031 per hour * Streaming unit is a unit of compute capacity with a maximum throughput of 1MB/s
  • 20.
    Daily Azure StreamAnalytics cost for 1 MB/sec of average processing Volume of Data Processed Cost - $0.001 /GB * 84.375 GB = $0.08 per day, streaming max 1 MB/s non-stop Streaming Unit Cost - $.031 /hr * 24 hrs = $0.74 per day, for 1 MB/sec max. throughput Total cost - $0.74 + $0.08 = $0.82 per day -or- ~ $25 per month
  • 22.
    Solution PortalProvisioning API Identity& Registry Stores Stream Event Processor Analytics/ Machine Learning Data Visualization & Presentation Device State Store Gateway Storage IP capable devices Existing IoT devices Low power devices PresentationDevice and Event Processing Data Transport Devices and Data Sources Cloud Gate- way Agent Libs Agent Libs Control System Worker Role Agent Libs
  • 23.
    Field Gateway Device Connectivity & Management Analytics& Operationalized Insights Presentation & Business Connectivity Devices RTOS,Linux,Android,iOS,Windows Protocol Adaptation Batch Analytics & Visualizations Azure HDInsight, AzureML, Power BI, Azure Data Factory Hot Path Analytics Azure Stream Analytics, Azure Storm Presentation & Business Connections Websites, Mobile Services Dynamics, BizTalk Services, Notification Hubs Hot Path Business Logic Service Fabric & Actor Framework Cloud Gateway Event Hub
  • 24.
    Business Overview http://azure.microsoft.com/en-us/services/stream-analytics/ Documentationhttp://azure.microsoft.com/en- us/documentation/services/stream-analytics/ ASA Blog http://blogs.msdn.com/b/streamanalytics/rss.aspx Follow us on Twitter https://twitter.com/AzureStreaming (follow @AzureStreaming) ASA Forum https://social.msdn.microsoft.com/Forums/en- US/home?forum=AzureStreamAnalytics Vote for ideas http://feedback.azure.com/forums/270577-azure-stream-analytics Email ASA Team azstream@microsoft.com