+ All Categories
Home > Technology > ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

Date post: 13-Jul-2015
Category:
Upload: reidcarlberg
View: 301 times
Download: 6 times
Share this document with a friend
Popular Tags:
36
Enterprise IoT: Patterns, Opportunities & Predictions Reid Carlberg Sr. Director, Developer Evangelism @ReidCarlberg
Transcript
Page 1: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

Enterprise IoT: Patterns, Opportunities & PredictionsReid Carlberg

Sr. Director, Developer Evangelism

@ReidCarlberg

Page 2: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

Safe Harbor

Safe harbor statement under the Private Securities Litigation Reform Act of 1995:

This presentation may contain forward-looking statements that involve risks, uncertainties, and assumptions. If any such uncertainties materialize

or if any of the assumptions proves incorrect, the results of salesforce.com, inc. could differ materially from the results expressed or implied by the

forward-looking statements we make. All statements other than statements of historical fact could be deemed forward-looking, including any

projections of product or service availability, subscriber growth, earnings, revenues, or other financial items and any statements regarding

strategies or plans of management for future operations, statements of belief, any statements concerning new, planned, or upgraded services or

technology developments and customer contracts or use of our services.

The risks and uncertainties referred to above include – but are not limited to – risks associated with developing and delivering new functionality for

our service, new products and services, our new business model, our past operating losses, possible fluctuations in our operating results and rate

of growth, interruptions or delays in our Web hosting, breach of our security measures, the outcome of any litigation, risks associated with

completed and any possible mergers and acquisitions, the immature market in which we operate, our relatively limited operating history, our ability

to expand, retain, and motivate our employees and manage our growth, new releases of our service and successful customer deployment, our

limited history reselling non-salesforce.com products, and utilization and selling to larger enterprise customers. Further information on potential

factors that could affect the financial results of salesforce.com, inc. is included in our annual report on Form 10-K for the most recent fiscal year

and in our quarterly report on Form 10-Q for the most recent fiscal quarter. These documents and others containing important disclosures are

available on the SEC Filings section of the Investor Information section of our Web site.

Any unreleased services or features referenced in this or other presentations, press releases or public statements are not currently available and

may not be delivered on time or at all. Customers who purchase our services should make the purchase decisions based upon features that are

currently available. Salesforce.com, inc. assumes no obligation and does not intend to update these forward-looking statements.

Page 3: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions
Page 4: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

“Internet of Things” Search Volume

Page 5: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

“Internet of Things” vs “Arduino” Search Volume

Page 6: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

The Arduino

Launched 2005. Easy. Cheap. Open Source.

Page 7: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

etc

Page 8: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

The New “Hello, World”

int led = 13;

void setup() {

pinMode(led, OUTPUT);

}

void loop() {

digitalWrite(led, HIGH);

delay(1000);

digitalWrite(led, LOW);

delay(1000);

}

Page 9: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

The Internet of Things is about action.

Page 10: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

3 Use Case Patterns

Page 11: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

3 Use Case Patterns

#1 Remote

Monitoring

• Replaces human

inspection

• Drives operational

efficiency

• Creates proactive

service opportunity

Page 12: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

3 Use Case Patterns

#1 Remote

Monitoring

• Replaces human

inspection

• Drives operational

efficiency

• Creates proactive

service opportunity

#2 Instrument

Everything

• Instrument products

like apps

• Drives understanding,

performance and

reliability

• Creates proactive

service opportunity

Page 13: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

3 Use Case Patterns

#1 Remote

Monitoring

• Replaces human

inspection

• Drives operational

efficiency

• Creates proactive

service opportunity

#2 Instrument

Everything

• Instrument products

like apps

• Drives understanding,

performance and

reliability

• Creates proactive

service opportunity

#3 New Customer

UX

• Differentiate on

deeper understanding

• Drives more

meaningful

engagement

• Creates proactive

service opportunity

Page 14: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

Create a Proactive Service Opportunity

Page 15: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

Create a Proactive Engagement Opportunity

Page 16: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

Create a Case

Page 17: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

Five Enterprise IoT System Architecture Patterns

Anonymous, Direct, Buffered, Gateway, Cloudy

Page 18: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

Anonymous: Report Problems with Anonymous APIsPossible. Easy to implement.

No identity tied to request. One way.

Web2Case

Page 19: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

Direct: Phone Home w/ Standard Salesforce APIsGreat for low volume requests dealing with high level objects.

Requires Internet and integration user. Data treated as critical biz data.

In: OAuth2, REST

Out: Streaming API, Outbound

Messaging

Page 20: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

Buffered: Phone Home with Custom APIsGreat for high volume data. Heroku app figures out what’s important,

sends that to Salesforce.

Heroku Connect

OAuth2, RESTCustom API

Page 21: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

Gateway: Devices to gateways to SalesforceMany lightweight devices talk to a more powerful gateway, gateway does the

heavy lifting.

Custom APIHeroku Connect

OAuth2, REST

Page 22: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

Cloudy: Devices with integrated cloud.Devices tightly coupled with cloud services.

Simplifies deployment but depends on ability to connect to network.

In: OAuth2, REST

Out: Streaming API, Outbound

Messaging, REST endpoints

Page 23: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

Direct (Augmented): Use Standard APIs, Great for critical business data that needs processing before it’s useful.

E.g., Image analysis, where the original image & results are both important.

Heroku Connect

OAuth2, RESTCustom API

Variation #1

Page 24: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

Buffered (by Partners): Phone Home with Custom APIsPartner apps help decide what’s important, send that to Salesforce.

Great for high volume data.

Heroku Connect

OAuth2, REST

Variation #2

Page 25: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

Double Buffered: Partner & Custom APIs

Custom APIHeroku Connect

OAuth2, REST

Variation #3

Page 26: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

Custom APIHeroku Connect

OAuth2, REST

Business

Process

Data

Aggregation

Device

GatewayDevice

Abstract Architecture

Signals &

Transport

Aggregation & Understanding

Page 27: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

Custom APIHeroku Connect

OAuth2, REST

Business

Process

Data

Aggregation

Device

GatewayDevice

The Internet of Things is about Action

Action!

Page 28: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

Salesforce1 Data Services & Analytics Cloud

“BigObject”● HBase

● read only

● pilot in Summer

“Data

Pipelines”● Apache Pig

● access all data

● pilot now

“Wave”● Analytic Cloud

● High performance

● pilot now

Page 29: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

Context Specific AI is real today -- http://www.move.cc

Page 30: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

The UI is evolving quickly -- http://www.bragi.com

Page 31: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

Tech is disappearing - http://wearableexperiments.com

Page 32: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

China comes to you: http://seeedstudio.com

Page 33: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

Prediction #1

Within 2 years we’ll start seeing AI assistants

providing real-time work advice based on

massive amounts of passively collected data.

Page 34: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

Prediction #2

Within 18 months we’ll find a killer watch app

that goes significantly beyond today’s

designs, or the smartwatch form factor will

disappear.

Page 35: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

Prediction #3

In 3 yrs the default language won’t be C/C++.

But it’s not clear what it will be yet. JavaScript

is a very interesting possibility, but

challenging.

Page 36: ThingsExpo: Enterprise Internet of Things (IoT) Patterns, Opportunities and Predictions

http://developer.salesforce.com

@ReidCarlberg

[email protected]


Recommended