server and cloud platform template · azure iot suite remote monitoring back end systems and c#...

49

Upload: others

Post on 21-May-2020

5 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics
Page 2: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics
Page 3: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics

Considerationsfor a Cloud Solution

Page 4: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics
Page 5: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics
Page 6: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics

Preconfigured Solutions

Page 7: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics
Page 8: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics
Page 9: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics
Page 10: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics

https://github.com/Azure

https://azure.microsoft.com/en-us/documentation/services/iot-hub/

Page 11: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics

Deployment

Page 12: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics
Page 13: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics
Page 14: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics

File Name Content

Application.json Azure AD deployment details, sets up authorization roles

ConfigurationTemplate.config Template for the generated JSON file

DeploymentLib.ps1 PowerShell functions called by PrepareIoTSample, contains actual calls to

Azure/AAD

LocalMonitoring.json Resources deployed by ‘local’ mode, contains details like location, resource

group, api version, pricing etc. Azure Resource Manager format

PrepareIoTSample.ps1 Composer script, reads parameters from Remote/LocalMonitoring.json to call

into deployment functions in DeploymentLib

RemoteMonitoring.json Resources deployed by ‘cloud’ mode, contains details like location, resource

group, api version, pricing etc. Azure Resource Manager format

Page 15: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics
Page 16: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics
Page 17: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics

Suite Components

Page 18: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics

Solution Architecture

Devices

Azure IoT Suite Remote Monitoring

Back end

systems

and

processesC# simulator

Event Hub

Storage blobs DocumentDB

Web/Mobile App

Stream Analytics Logic Apps

Azure

Active Directory

IoT Hub Web Jobs

Power BI

Page 19: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics

Azure Stream Analytics

Page 20: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics
Page 21: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics
Page 22: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics
Page 23: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics
Page 24: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics
Page 25: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics
Page 26: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics
Page 27: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics

Event Processing with Event Hubs & Web Jobs

Page 28: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics
Page 29: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics

Consumer Group 2

Consumer Group 1

Page 30: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics

Relay

Queue

Topic

Notification Hub

Event Hub

• NAT and Firewall Traversal Service

• Request/Response Services

• Transactional Message Distribution

• Up to 2000 subscriptions per Topic

• High-scale Notification Distribution

• Mobile push notification services

• Collection of Event Streams

• Deals with Volume/Velocity/Variety

Page 31: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics

Event Producers

Azure Event Hub

> 1M Producers> 1GB/sec

Aggregate Throughput

Up to 32 partitions via portal, more on

request

Part

itio

ns

Direct

PartitionKey

Hash

Throughput Units:

• 1 ≤ TUs ≤ Partition Count

• TU: 1 MB/s writes, 2 MB/s reads

Consumer Group(s)

Receivers

AMQP 1.0

Credit-based flow control

Client-side cursors

Offset by Id or Timestamp

Event Processor Host

IEventProcessor

Page 32: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics

• Device Event Processor

Page 33: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics

Portal

Page 34: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics
Page 35: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics

Common

EventProcessor.WebJob

Page 36: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics

Infrastructure

Infrastructure.UnitTests

Page 37: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics

Simulator

Web

WebJobHost

Page 38: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics
Page 39: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics
Page 40: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics
Page 41: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics
Page 42: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics
Page 43: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics
Page 44: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics

Machine Learning

Page 45: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics

Azure Machine Learning is a powerful cloud-based predictive analytics service that

makes it possible to quickly create and deploy predictive models as analytics solutions.

Page 46: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics
Page 47: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics
Page 48: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics
Page 49: Server and Cloud Platform template · Azure IoT Suite Remote Monitoring Back end systems and C# simulator processes Event Hub Storage blobs DocumentDB Web/Mobile App Stream Analytics