SlideShare a Scribd company logo
Confidential 1
How to get Real-Time Value from your IoT Data
Vincent Poncet Solution Engineer EMEA
IoT Application Characteristics
© DataStax, All Rights Reserved.3
Real-Time DistributedAlways-OnContextual Scalable
Platform for IoT Applications
DataStax is a registered trademark of DataStax, Inc. and its subsidiaries in the United States
and/or other countries.4
DSEFS
From validation to momentum.
400+
Employees
$190M
Funding
500+
Customers
Founded in April 2010
Santa Clara • San Francisco • Austin •
London • Paris • Berlin • Tokyo • Sydney
(Series E – Sept. 2014) 30% +
2016 World’s Best
100 Cloud Companies
Ranked #1 in multiple operational
database categories
© 2017 DataStax, All Rights Reserved. Company Confidential
GE
THE CHALLENGE: Collect sensor data from millions of
devices from around the world and
manage trillions of transactions per day
© DataStax, All Rights Reserved.6
• GE offers the first Industrial Cloud Platform called
GE Predix. Datastax is part of the data services
layer within the platform
• DSE will collect sensor data from millions of
devices from around the world to help GE provide
predictive maintenance to their customers and
increase operational efficiencies
• Predix manages trillions of transactions
per day. DSE was recognized as the only
solution that could support this scale and
data center replication
First Utility
• First Utility offers a disruptive, modern
application called My Energy that gives
customers total transparency to understand &
manage their energy consumption
• Each Smart Meter produces up to 17,000
readings per year
• DSE provides the distributed, responsive &
intelligent foundation to power My Energy at
scale
• As a result, customers use 5-6% less energy
and further reduce their energy bills
THE CHALLENGE: Drive better customer experiences by
giving customers the information they
need to control their energy usage
through Smart Meters technology
© DataStax, All Rights Reserved.7
Traxens
THE CHALLENGE: Implement a solution for global,
real-time, end-to-end monitoring of
containers door to door and proactive
alerts for issues
© DataStax, All Rights Reserved.8
• Traxens offers an IOT service, Trax-Hub, for
real-time, end to end global monitoring of
containers door to door
• Alerts for open boxes, temperature changes,
etc.
• Granular monitoring of individual
containers: Traxens can store information
on all containers (up to 20,000 in one ship),
and hundreds of attributes per container
• Scalable platform for future needs
What is Apache Cassandra?
© DataStax, All Rights Reserved.9
Apache Cassandra
©2014 DataStax Confidential.
Do not distribute without
• Distributed NoSQL Database
• Google Big Table
• Amazon Dynamo
• Continuous Availability
• Disaster Avoidance
• Linear Scale Performance
• Add nodes to scale
• Runs on Commodity Hardware
• Cloud or on Premise
San
Francisco
New York
Munich
Apache Cassandra Disaster Avoidance
©2014 DataStax Confidential. Do not distribute without consent.
San
Francisco
New York
Munich
© DataStax, All Rights Reserved. 12
Example Data Model
Sensor collects data
Cassandra stores in sequence
Application reads in sequence
Car Sensor Use Case
• Store data per sensor
• Store time series in order: first to last
• Get all data for one sensor
• Get data for a single date and time
• Get data for a range of dates and times
Needed Queries
Data Model to support queries
Use Case
Sensor Id and Time are unique
Store as many as needed
CREATE TABLE car_stats (
sensor_id text,
collect_time timestamp,
temperature text,
longitude text,
latitude text,
speed text,
PRIMARY KEY (sensor_id,collect_time)
);
INSERT INTO car_stats(sensor_id,collect_time,temperature,longitude,latitude,speed)
VALUES ('1234ABCD','2013-04-03 07:01:00','19C',’134.231’,‘234.234’,’60kmh’);
INSERT INTO car_stats(sensor_id,collect_time,temperature,longitude,latitude,speed)
VALUES ('1234ABCD','2013-04-03 07:02:00','20C',’135.230’,‘237.239’,’65kmh’);
INSERT INTO car_stats(sensor_id,collect_time,temperature,longitude,latitude,speed)
VALUES ('1234ABCD','2013-04-03 07:03:00','20C',’137.431’,‘240.793’,’68kmh’);
INSERT INTO car_stats(sensor_id,collect_time,temperature,longitude,latitude,speed)
VALUES ('1234ABCD','2013-04-03 07:04:00','21C',’138.589’,‘234.234’,’69kmh’);
Data Model
SELECT sensor_id,collect_time,temperature,longitude,latitude,speed
FROM car_stats
WHERE sensor_id='1234ABCD';
Sensor_id Collect_time temperature longitude latitude Speed
1234ABCD 2015-04-03
07:01:00
19C 134.231 234.234 60kmh
1234ABCD 2015-04-03
07:02:00
20C 135.230 237.239 65kmh
1234ABCD 2015-04-03
07:03:00
20C 137.431 240.793 68kmh
1234ABCD 2015-04-03
07:04:00
21C 138.589 234.234 69kmh
Storage Model – Logical View
SELECT sensor_id,collect_time,temperature,longitude,latitude,speed
FROM car_stats
WHERE sensor_id='1234ABCD';
Merged, Sorted and Stored Sequentially
1234A
BCD
2015-04-03 07:01:00 2015-04-03 07:02:00 2015-04-03 07:03:00 2015-04-03 07:04:00
19C 134.2
31
234.2
34
60km
h
20C 135.2
30
237.2
39
65kmh 20C 137.4
31
240.7
93
68kmh 21C 138.5
89
234.2
34
69kmh
Storage Model – Disk Layout
Range queries
“Slice” operation on disk
SELECT sensor_id,collect_time,temperature,longitude,latitude,speed
FROM car_stats
WHERE sensor_id='1234ABCD'
AND collect_time >= '2015-04-03 07:01:00'
AND collect_time <= '2015-04-03 07:04:00';
Single seek on disk
Query Patterns
1234
ABC
D
2015-04-03 07:01:00 2015-04-03 07:02:00 2015-04-03 07:03:00 2015-04-03 07:04:00
19C 134.2
31
234.2
34
60km
h
20C 135.2
30
237.2
39
65kmh 20C 137.4
31
240.7
93
68kmh 21C 138.5
89
234.2
34
69kmh
Range queries
“Slice” operation on disk
Sorted by
collect_time
SELECT sensor_id,collect_time,temperature,longitude,latitude,speed
FROM car_stats
WHERE sensor_id='1234ABCD'
AND collect_time >= '2015-04-03 07:01:00'
AND collect_time <= '2015-04-03 07:04:00';
Query Patterns
Sensor_id Collect_time temperature longitude latitude Speed
1234ABCD 2015-04-03
07:01:00
19C 134.231 234.234 60kmh
1234ABCD 2015-04-03
07:02:00
20C 135.230 237.239 65kmh
1234ABCD 2015-04-03
07:03:00
20C 137.431 240.793 68kmh
1234ABCD 2015-04-03
07:04:00
21C 138.589 234.234 69kmh
Cassandra Data Modeling
Requires a different mindset than RDBMS modeling
Know your data and your queries up front
Queries drive a lot of the modeling decisions (i.e. “table per query” pattern)
Denormalize/Duplicate data at write time to do as few queries as possible
come read time
Remember, storage is cheap and writes in Cassandra are FAST ( about
1,000 inserts / second per physical CPU core )
20
© DataStax, All Rights Reserved. 21
DataStax Enterprise DSE
© 2015 DataStax, All Rights Reserved. 22
I’ve ingested my data, now what?
Platform for IoT Applications
DataStax is a registered trademark of DataStax, Inc. and its 23
DSEFS
DataStax Enterprise Company Confidential
Offline
Application
External
Spark or
Hadoop
Cluster
Spark/
Hadoop
RDBMS
24
Real Time
Analytics
Batch
Analytics
Real
Time
Search
Certified Apache Cassandra
No Single Point of Failure | Linear Scalability | Always-On
DSE – Fully Integrated Technology Stack
Ease of
Use
DataStax
Studio
OpsCenter
Services
Monitoring,
Operations
Low
Latency
In-
Memory
Data
DSE
Graph
Graph
Database
Operational
Resiliency
File
System
Advanced
Security
DSEFS
Analytics
Transformations
• Ready and certified for production environments.
• Rigorous certification process:
• Extensive quality assurance testing.
• Performance and scale tests with 1,000 node clusters.
• 3rd party software validation.
• Certified for key supported platforms.
©2014 DataStax Confidential. Do not distribute without consent.
DataStax Enterprise – Certified Cassandra
26
• Embedded Spark
• ETL workloads, Real-Time Streaming Analytics, SQL Operational Analytics on
Cassandra.
• DSE benefits:
• Spark Master HA
• Integrated security
• Support
DSE Analytics
HTTP Application Message Queue
Streamin
g
Analytics
Near
Real
Time
Analytics
Real-time
DSE Multi-Workload Analytics Architecture
© 2015 DataStax, All Rights Reserved. 27
28
• DSE Search inherits all the power and capabilities of Solr and builds on top of it
to create even more powerful enterprise search functionality
• Built-in scale out and continuous availability and multiple data centers support
• Automatic indexing when inserting and updating in Cassandra
• Search Capabilities integrated into Cassandra Query Language
• Multi-criteria
• Full text
• Geospatial
• Faceting
• Auto-completion
DSE Search
HTTP Application Message Queue
Streamin
g
Analytics
Near
Real
Time
Analytics
Real-time
Search
© 2015 DataStax, All Rights Reserved. 29
DSE Multi-Workload Analytics Architecture
©2016 DataStax
• Allows one-way replication from “edge” cluster to another,
centralized hub cluster.
• Ideal for retail, energy, and other “edge of the internet of things” use
cases.
• Hub and spoke
DSE Advanced Replication
©2016 DataStax
• Able to automatically move data to different storage media based on
defined criteria.
• Helps reduce storage costs by relegating lesser-used or older data to
less expensive storage devices.
• Works on a granular per-row basis.
DSE Tiered Storage
Confidential 32
DSEFS
• Distributed file system, masterless, API
compatible with HDFS
• Resiliency of metadata, being stored in
Cassandra tables
• Cost effective, cold storage of data
• Staging
• Archiving
• Analytics (with Spark)
Confidential 33
Storage Temperature Management
• Business value of data record per byte is low in IoT use cases
• Being able to optimize the cost of storage depending on the usage of the data is
key
• A tiering / temperature management approach is a relevant response
• Hot Fast storage using SSD for fresh data
• Warm cost effective storage using HDD for older data (in-DB online archive)
• Cold cheapest storage using file system for long term data (out-DB archive)
• Can be used with Spark for analytical usages
Hot Data
Tiered Storage
SSD
Warm Data
Tiered Storage
HDD
Cold Data
DSEFS
HDD
©2016 DataStax
• Transparent Data Encryption of ALL DSE data at rest
• Role based access control
• Unified authentication: Allows multiple security authentication protocols (e.g.
Kerberos, LDAP, Active Directory, internal Cassandra) to be used on the same
database cluster.
• Data Auditing
DSE Enterprise Security
Build and Manage
Interact with DataStax
Enterprise from your
application
Create objects via DDL (e.g.
CREATE…)
GRANT/REVOKE
INSERT, UPDATE, DELETE
Query data with SELECT
Certified DataStax drivers:
Community drivers:
Java C# Python C++
Node.js ODBC PHP Ruby
Closure Erlang Haskell Rust
The Cassandra Query
Language (CQL)
Explore, query, and
analyze DSE
• Visually Create and
Navigate Database
Objects via CQL
• Gremlin Query Language
Support
• Auto-completion, result set
visualization, execution
management, and much
more.
• Friendly Fluent API
DataStax is a registered trademark of DataStax, Inc. and its subsidiaries in the United States
and/or other countries.37
Studio
Visual management for
DSE
• Automate what no one
likes – backups, repairs
• REST API to work in your
world
• Instantly manage your
cluster, scaling up or down
at a moment’s notice
• Monitor your cluster and
follow best practices,
ensuring a secure
environmentDataStax is a registered trademark of DataStax, Inc. and its subsidiaries in the United States
and/or other countries.38
OpsCenter
• Designed to automatically handle many maintenance and
management tasks.
• Makes DSE easy to work with.
• Services included:
• Repair service
• Capacity service
• Performance service
• Best Practice service
• Backup/Restore service
©2014 DataStax Confidential. Do not distribute without consent.
DataStax Automatic Management Services
• 24x7x365
• Production and non-production environments.
• Health checks for assistance on architecture,
design, and tuning.
• Certified service packs
• Hot-fix support and back porting of bug fixes
©2014 DataStax Confidential. Do not distribute without consent.
DataStax Expert Support
DataStax Managed Cloud
• DSE on AWS with Managed Provisioning
and Scaling by DataStax
• 24x7x365 Coverage,
Lights-Out Management
• System Configuration and Tuning to Meet
Customer Specific Requirements
• Architecture Advisory Services, Guidance
and Best Practices
A Fully Managed, Secure Architecture
41 © 2017 DataStax, All Rights Reserved. DataStax is a registered trademark of DataStax, Inc. and its subsidiaries in the United States and/or other countries. Apache
Cassandra, Apache, Spark, and Cassandra are trademarks of the Apache Software Foundation or its subsidiaries in Canada, the United States and/or other countries.
Thank you
© 2017 DataStax, All Rights Reserved. Company Confidential
We are the power
behind the moment.
© 2017 DataStax, All Rights Reserved. Company Confidential
Confidential
4
4

More Related Content

What's hot

Webinar: Transforming Customer Experience Through an Always-On Data Platform
Webinar: Transforming Customer Experience Through an Always-On Data PlatformWebinar: Transforming Customer Experience Through an Always-On Data Platform
Webinar: Transforming Customer Experience Through an Always-On Data Platform
DataStax
 
Webinar | Data Management for Hybrid and Multi-Cloud: A Four-Step Journey
Webinar | Data Management for Hybrid and Multi-Cloud: A Four-Step JourneyWebinar | Data Management for Hybrid and Multi-Cloud: A Four-Step Journey
Webinar | Data Management for Hybrid and Multi-Cloud: A Four-Step Journey
DataStax
 
Webinar - Data Management for the "Right-Now" Economy - The 5 Key Ingredients
Webinar - Data Management for the "Right-Now" Economy - The 5 Key IngredientsWebinar - Data Management for the "Right-Now" Economy - The 5 Key Ingredients
Webinar - Data Management for the "Right-Now" Economy - The 5 Key Ingredients
DataStax
 
Designing a Distributed Cloud Database for Dummies
Designing a Distributed Cloud Database for DummiesDesigning a Distributed Cloud Database for Dummies
Designing a Distributed Cloud Database for Dummies
DataStax
 
Webinar: Comparing DataStax Enterprise with Open Source Apache Cassandra
Webinar: Comparing DataStax Enterprise with Open Source Apache CassandraWebinar: Comparing DataStax Enterprise with Open Source Apache Cassandra
Webinar: Comparing DataStax Enterprise with Open Source Apache Cassandra
DataStax
 
Webinar: Become PSD2 ready with DataStax
Webinar: Become PSD2 ready with DataStaxWebinar: Become PSD2 ready with DataStax
Webinar: Become PSD2 ready with DataStax
DataStax
 
Webinar: How Active Everywhere Database Architecture Accelerates Hybrid Cloud...
Webinar: How Active Everywhere Database Architecture Accelerates Hybrid Cloud...Webinar: How Active Everywhere Database Architecture Accelerates Hybrid Cloud...
Webinar: How Active Everywhere Database Architecture Accelerates Hybrid Cloud...
DataStax
 
Webinar - Fighting Bank Fraud with Real-time Graph Database
Webinar - Fighting Bank Fraud with Real-time Graph Database Webinar - Fighting Bank Fraud with Real-time Graph Database
Webinar - Fighting Bank Fraud with Real-time Graph Database
DataStax
 
Webinar: Fighting Fraud with Graph Databases
Webinar: Fighting Fraud with Graph DatabasesWebinar: Fighting Fraud with Graph Databases
Webinar: Fighting Fraud with Graph Databases
DataStax
 
Webinar | Aligning GDPR Requirements with Today's Hybrid Cloud Realities
Webinar  |  Aligning GDPR Requirements with Today's Hybrid Cloud RealitiesWebinar  |  Aligning GDPR Requirements with Today's Hybrid Cloud Realities
Webinar | Aligning GDPR Requirements with Today's Hybrid Cloud Realities
DataStax
 
Introduction: Architecting for Scale
Introduction: Architecting for ScaleIntroduction: Architecting for Scale
Introduction: Architecting for Scale
DataStax
 
Modern Data Management for Federal Modernization
Modern Data Management for Federal ModernizationModern Data Management for Federal Modernization
Modern Data Management for Federal Modernization
Denodo
 
2020 Cloudera Data Impact Awards Finalists
2020 Cloudera Data Impact Awards Finalists2020 Cloudera Data Impact Awards Finalists
2020 Cloudera Data Impact Awards Finalists
Cloudera, Inc.
 
Get Started with Cloudera’s Cyber Solution
Get Started with Cloudera’s Cyber SolutionGet Started with Cloudera’s Cyber Solution
Get Started with Cloudera’s Cyber Solution
Cloudera, Inc.
 
Is Your Enterprise Ready to Shine This Holiday Season?
Is Your Enterprise Ready to Shine This Holiday Season?Is Your Enterprise Ready to Shine This Holiday Season?
Is Your Enterprise Ready to Shine This Holiday Season?
DataStax
 
Rethink Analytics with an Enterprise Data Hub
Rethink Analytics with an Enterprise Data HubRethink Analytics with an Enterprise Data Hub
Rethink Analytics with an Enterprise Data Hub
Cloudera, Inc.
 
Webinar: Customer Experience in Banking - a CTO's Perspective
Webinar: Customer Experience in Banking - a CTO's PerspectiveWebinar: Customer Experience in Banking - a CTO's Perspective
Webinar: Customer Experience in Banking - a CTO's Perspective
DataStax
 
How Virtual Reality and Machine Learning Are Powering the New Age of Network ...
How Virtual Reality and Machine Learning Are Powering the New Age of Network ...How Virtual Reality and Machine Learning Are Powering the New Age of Network ...
How Virtual Reality and Machine Learning Are Powering the New Age of Network ...
DataStax
 
Enterprise Data Hub: The Next Big Thing in Big Data
Enterprise Data Hub: The Next Big Thing in Big DataEnterprise Data Hub: The Next Big Thing in Big Data
Enterprise Data Hub: The Next Big Thing in Big Data
Cloudera, Inc.
 
Webinar: DataStax Managed Cloud: focus on innovation, not administration
Webinar:  DataStax Managed Cloud: focus on innovation, not administrationWebinar:  DataStax Managed Cloud: focus on innovation, not administration
Webinar: DataStax Managed Cloud: focus on innovation, not administration
DataStax
 

What's hot (20)

Webinar: Transforming Customer Experience Through an Always-On Data Platform
Webinar: Transforming Customer Experience Through an Always-On Data PlatformWebinar: Transforming Customer Experience Through an Always-On Data Platform
Webinar: Transforming Customer Experience Through an Always-On Data Platform
 
Webinar | Data Management for Hybrid and Multi-Cloud: A Four-Step Journey
Webinar | Data Management for Hybrid and Multi-Cloud: A Four-Step JourneyWebinar | Data Management for Hybrid and Multi-Cloud: A Four-Step Journey
Webinar | Data Management for Hybrid and Multi-Cloud: A Four-Step Journey
 
Webinar - Data Management for the "Right-Now" Economy - The 5 Key Ingredients
Webinar - Data Management for the "Right-Now" Economy - The 5 Key IngredientsWebinar - Data Management for the "Right-Now" Economy - The 5 Key Ingredients
Webinar - Data Management for the "Right-Now" Economy - The 5 Key Ingredients
 
Designing a Distributed Cloud Database for Dummies
Designing a Distributed Cloud Database for DummiesDesigning a Distributed Cloud Database for Dummies
Designing a Distributed Cloud Database for Dummies
 
Webinar: Comparing DataStax Enterprise with Open Source Apache Cassandra
Webinar: Comparing DataStax Enterprise with Open Source Apache CassandraWebinar: Comparing DataStax Enterprise with Open Source Apache Cassandra
Webinar: Comparing DataStax Enterprise with Open Source Apache Cassandra
 
Webinar: Become PSD2 ready with DataStax
Webinar: Become PSD2 ready with DataStaxWebinar: Become PSD2 ready with DataStax
Webinar: Become PSD2 ready with DataStax
 
Webinar: How Active Everywhere Database Architecture Accelerates Hybrid Cloud...
Webinar: How Active Everywhere Database Architecture Accelerates Hybrid Cloud...Webinar: How Active Everywhere Database Architecture Accelerates Hybrid Cloud...
Webinar: How Active Everywhere Database Architecture Accelerates Hybrid Cloud...
 
Webinar - Fighting Bank Fraud with Real-time Graph Database
Webinar - Fighting Bank Fraud with Real-time Graph Database Webinar - Fighting Bank Fraud with Real-time Graph Database
Webinar - Fighting Bank Fraud with Real-time Graph Database
 
Webinar: Fighting Fraud with Graph Databases
Webinar: Fighting Fraud with Graph DatabasesWebinar: Fighting Fraud with Graph Databases
Webinar: Fighting Fraud with Graph Databases
 
Webinar | Aligning GDPR Requirements with Today's Hybrid Cloud Realities
Webinar  |  Aligning GDPR Requirements with Today's Hybrid Cloud RealitiesWebinar  |  Aligning GDPR Requirements with Today's Hybrid Cloud Realities
Webinar | Aligning GDPR Requirements with Today's Hybrid Cloud Realities
 
Introduction: Architecting for Scale
Introduction: Architecting for ScaleIntroduction: Architecting for Scale
Introduction: Architecting for Scale
 
Modern Data Management for Federal Modernization
Modern Data Management for Federal ModernizationModern Data Management for Federal Modernization
Modern Data Management for Federal Modernization
 
2020 Cloudera Data Impact Awards Finalists
2020 Cloudera Data Impact Awards Finalists2020 Cloudera Data Impact Awards Finalists
2020 Cloudera Data Impact Awards Finalists
 
Get Started with Cloudera’s Cyber Solution
Get Started with Cloudera’s Cyber SolutionGet Started with Cloudera’s Cyber Solution
Get Started with Cloudera’s Cyber Solution
 
Is Your Enterprise Ready to Shine This Holiday Season?
Is Your Enterprise Ready to Shine This Holiday Season?Is Your Enterprise Ready to Shine This Holiday Season?
Is Your Enterprise Ready to Shine This Holiday Season?
 
Rethink Analytics with an Enterprise Data Hub
Rethink Analytics with an Enterprise Data HubRethink Analytics with an Enterprise Data Hub
Rethink Analytics with an Enterprise Data Hub
 
Webinar: Customer Experience in Banking - a CTO's Perspective
Webinar: Customer Experience in Banking - a CTO's PerspectiveWebinar: Customer Experience in Banking - a CTO's Perspective
Webinar: Customer Experience in Banking - a CTO's Perspective
 
How Virtual Reality and Machine Learning Are Powering the New Age of Network ...
How Virtual Reality and Machine Learning Are Powering the New Age of Network ...How Virtual Reality and Machine Learning Are Powering the New Age of Network ...
How Virtual Reality and Machine Learning Are Powering the New Age of Network ...
 
Enterprise Data Hub: The Next Big Thing in Big Data
Enterprise Data Hub: The Next Big Thing in Big DataEnterprise Data Hub: The Next Big Thing in Big Data
Enterprise Data Hub: The Next Big Thing in Big Data
 
Webinar: DataStax Managed Cloud: focus on innovation, not administration
Webinar:  DataStax Managed Cloud: focus on innovation, not administrationWebinar:  DataStax Managed Cloud: focus on innovation, not administration
Webinar: DataStax Managed Cloud: focus on innovation, not administration
 

Similar to How to get Real-Time Value from your IoT Data - Datastax

Melbourne: Certus Data 2.0 Vault Meetup with Snowflake - Data Vault In The Cl...
Melbourne: Certus Data 2.0 Vault Meetup with Snowflake - Data Vault In The Cl...Melbourne: Certus Data 2.0 Vault Meetup with Snowflake - Data Vault In The Cl...
Melbourne: Certus Data 2.0 Vault Meetup with Snowflake - Data Vault In The Cl...
Certus Solutions
 
Webinar: The Performance Challenge: Providing an Amazing Customer Experience ...
Webinar: The Performance Challenge: Providing an Amazing Customer Experience ...Webinar: The Performance Challenge: Providing an Amazing Customer Experience ...
Webinar: The Performance Challenge: Providing an Amazing Customer Experience ...
DataStax
 
Webinar: DataStax Enterprise 5.0 What’s New and How It’ll Make Your Life Easier
Webinar: DataStax Enterprise 5.0 What’s New and How It’ll Make Your Life EasierWebinar: DataStax Enterprise 5.0 What’s New and How It’ll Make Your Life Easier
Webinar: DataStax Enterprise 5.0 What’s New and How It’ll Make Your Life Easier
DataStax
 
Building and Maintaining Bulletproof Systems with DataStax
Building and Maintaining Bulletproof Systems with DataStaxBuilding and Maintaining Bulletproof Systems with DataStax
Building and Maintaining Bulletproof Systems with DataStax
DataStax
 
Slides: Relational to NoSQL Migration
Slides: Relational to NoSQL MigrationSlides: Relational to NoSQL Migration
Slides: Relational to NoSQL Migration
DATAVERSITY
 
How to scale your PaaS with OVH infrastructure?
How to scale your PaaS with OVH infrastructure?How to scale your PaaS with OVH infrastructure?
How to scale your PaaS with OVH infrastructure?
OVHcloud
 
Webinar | From Zero to 1 Million with Google Cloud Platform and DataStax
Webinar | From Zero to 1 Million with Google Cloud Platform and DataStaxWebinar | From Zero to 1 Million with Google Cloud Platform and DataStax
Webinar | From Zero to 1 Million with Google Cloud Platform and DataStax
DataStax
 
Cloudera - IoT & Smart Cities
Cloudera - IoT & Smart CitiesCloudera - IoT & Smart Cities
Cloudera - IoT & Smart Cities
Cloudera, Inc.
 
Leveraging the Cloud for Big Data Analytics 12.11.18
Leveraging the Cloud for Big Data Analytics 12.11.18Leveraging the Cloud for Big Data Analytics 12.11.18
Leveraging the Cloud for Big Data Analytics 12.11.18
Cloudera, Inc.
 
Big Data Solutions Day - Calgary
Big Data Solutions Day - CalgaryBig Data Solutions Day - Calgary
Big Data Solutions Day - Calgary
Amazon Web Services
 
"An introduction to Kx Technology - a Big Data solution", Kyra Coyne, Data Sc...
"An introduction to Kx Technology - a Big Data solution", Kyra Coyne, Data Sc..."An introduction to Kx Technology - a Big Data solution", Kyra Coyne, Data Sc...
"An introduction to Kx Technology - a Big Data solution", Kyra Coyne, Data Sc...
Maya Lumbroso
 
"An introduction to Kx Technology - a Big Data solution", Kyra Coyne, Data Sc...
"An introduction to Kx Technology - a Big Data solution", Kyra Coyne, Data Sc..."An introduction to Kx Technology - a Big Data solution", Kyra Coyne, Data Sc...
"An introduction to Kx Technology - a Big Data solution", Kyra Coyne, Data Sc...
Dataconomy Media
 
Building a Pluggable Analytics Stack with Cassandra (Jim Peregord, Element Co...
Building a Pluggable Analytics Stack with Cassandra (Jim Peregord, Element Co...Building a Pluggable Analytics Stack with Cassandra (Jim Peregord, Element Co...
Building a Pluggable Analytics Stack with Cassandra (Jim Peregord, Element Co...
DataStax
 
Get started with Cloudera's cyber solution
Get started with Cloudera's cyber solutionGet started with Cloudera's cyber solution
Get started with Cloudera's cyber solution
Cloudera, Inc.
 
AIS data management and time series analytics on TileDB Cloud (Webinar, Feb 3...
AIS data management and time series analytics on TileDB Cloud (Webinar, Feb 3...AIS data management and time series analytics on TileDB Cloud (Webinar, Feb 3...
AIS data management and time series analytics on TileDB Cloud (Webinar, Feb 3...
Stavros Papadopoulos
 
Introducing DataStax Enterprise 4.7
Introducing DataStax Enterprise 4.7Introducing DataStax Enterprise 4.7
Introducing DataStax Enterprise 4.7
DataStax
 
Io t world_2016_iot_smart_gateways_moe
Io t world_2016_iot_smart_gateways_moeIo t world_2016_iot_smart_gateways_moe
Io t world_2016_iot_smart_gateways_moe
Shawn Moe
 
(ENT211) Migrating the US Government to the Cloud | AWS re:Invent 2014
(ENT211) Migrating the US Government to the Cloud | AWS re:Invent 2014(ENT211) Migrating the US Government to the Cloud | AWS re:Invent 2014
(ENT211) Migrating the US Government to the Cloud | AWS re:Invent 2014
Amazon Web Services
 
Datastax enterprise presentation
Datastax enterprise presentationDatastax enterprise presentation
Datastax enterprise presentation
Duyhai Doan
 
Webinar - The Agility Challenge - Powering Cloud Apps with Multi-Model & Mixe...
Webinar - The Agility Challenge - Powering Cloud Apps with Multi-Model & Mixe...Webinar - The Agility Challenge - Powering Cloud Apps with Multi-Model & Mixe...
Webinar - The Agility Challenge - Powering Cloud Apps with Multi-Model & Mixe...
DataStax
 

Similar to How to get Real-Time Value from your IoT Data - Datastax (20)

Melbourne: Certus Data 2.0 Vault Meetup with Snowflake - Data Vault In The Cl...
Melbourne: Certus Data 2.0 Vault Meetup with Snowflake - Data Vault In The Cl...Melbourne: Certus Data 2.0 Vault Meetup with Snowflake - Data Vault In The Cl...
Melbourne: Certus Data 2.0 Vault Meetup with Snowflake - Data Vault In The Cl...
 
Webinar: The Performance Challenge: Providing an Amazing Customer Experience ...
Webinar: The Performance Challenge: Providing an Amazing Customer Experience ...Webinar: The Performance Challenge: Providing an Amazing Customer Experience ...
Webinar: The Performance Challenge: Providing an Amazing Customer Experience ...
 
Webinar: DataStax Enterprise 5.0 What’s New and How It’ll Make Your Life Easier
Webinar: DataStax Enterprise 5.0 What’s New and How It’ll Make Your Life EasierWebinar: DataStax Enterprise 5.0 What’s New and How It’ll Make Your Life Easier
Webinar: DataStax Enterprise 5.0 What’s New and How It’ll Make Your Life Easier
 
Building and Maintaining Bulletproof Systems with DataStax
Building and Maintaining Bulletproof Systems with DataStaxBuilding and Maintaining Bulletproof Systems with DataStax
Building and Maintaining Bulletproof Systems with DataStax
 
Slides: Relational to NoSQL Migration
Slides: Relational to NoSQL MigrationSlides: Relational to NoSQL Migration
Slides: Relational to NoSQL Migration
 
How to scale your PaaS with OVH infrastructure?
How to scale your PaaS with OVH infrastructure?How to scale your PaaS with OVH infrastructure?
How to scale your PaaS with OVH infrastructure?
 
Webinar | From Zero to 1 Million with Google Cloud Platform and DataStax
Webinar | From Zero to 1 Million with Google Cloud Platform and DataStaxWebinar | From Zero to 1 Million with Google Cloud Platform and DataStax
Webinar | From Zero to 1 Million with Google Cloud Platform and DataStax
 
Cloudera - IoT & Smart Cities
Cloudera - IoT & Smart CitiesCloudera - IoT & Smart Cities
Cloudera - IoT & Smart Cities
 
Leveraging the Cloud for Big Data Analytics 12.11.18
Leveraging the Cloud for Big Data Analytics 12.11.18Leveraging the Cloud for Big Data Analytics 12.11.18
Leveraging the Cloud for Big Data Analytics 12.11.18
 
Big Data Solutions Day - Calgary
Big Data Solutions Day - CalgaryBig Data Solutions Day - Calgary
Big Data Solutions Day - Calgary
 
"An introduction to Kx Technology - a Big Data solution", Kyra Coyne, Data Sc...
"An introduction to Kx Technology - a Big Data solution", Kyra Coyne, Data Sc..."An introduction to Kx Technology - a Big Data solution", Kyra Coyne, Data Sc...
"An introduction to Kx Technology - a Big Data solution", Kyra Coyne, Data Sc...
 
"An introduction to Kx Technology - a Big Data solution", Kyra Coyne, Data Sc...
"An introduction to Kx Technology - a Big Data solution", Kyra Coyne, Data Sc..."An introduction to Kx Technology - a Big Data solution", Kyra Coyne, Data Sc...
"An introduction to Kx Technology - a Big Data solution", Kyra Coyne, Data Sc...
 
Building a Pluggable Analytics Stack with Cassandra (Jim Peregord, Element Co...
Building a Pluggable Analytics Stack with Cassandra (Jim Peregord, Element Co...Building a Pluggable Analytics Stack with Cassandra (Jim Peregord, Element Co...
Building a Pluggable Analytics Stack with Cassandra (Jim Peregord, Element Co...
 
Get started with Cloudera's cyber solution
Get started with Cloudera's cyber solutionGet started with Cloudera's cyber solution
Get started with Cloudera's cyber solution
 
AIS data management and time series analytics on TileDB Cloud (Webinar, Feb 3...
AIS data management and time series analytics on TileDB Cloud (Webinar, Feb 3...AIS data management and time series analytics on TileDB Cloud (Webinar, Feb 3...
AIS data management and time series analytics on TileDB Cloud (Webinar, Feb 3...
 
Introducing DataStax Enterprise 4.7
Introducing DataStax Enterprise 4.7Introducing DataStax Enterprise 4.7
Introducing DataStax Enterprise 4.7
 
Io t world_2016_iot_smart_gateways_moe
Io t world_2016_iot_smart_gateways_moeIo t world_2016_iot_smart_gateways_moe
Io t world_2016_iot_smart_gateways_moe
 
(ENT211) Migrating the US Government to the Cloud | AWS re:Invent 2014
(ENT211) Migrating the US Government to the Cloud | AWS re:Invent 2014(ENT211) Migrating the US Government to the Cloud | AWS re:Invent 2014
(ENT211) Migrating the US Government to the Cloud | AWS re:Invent 2014
 
Datastax enterprise presentation
Datastax enterprise presentationDatastax enterprise presentation
Datastax enterprise presentation
 
Webinar - The Agility Challenge - Powering Cloud Apps with Multi-Model & Mixe...
Webinar - The Agility Challenge - Powering Cloud Apps with Multi-Model & Mixe...Webinar - The Agility Challenge - Powering Cloud Apps with Multi-Model & Mixe...
Webinar - The Agility Challenge - Powering Cloud Apps with Multi-Model & Mixe...
 

More from DataStax

Best Practices for Getting to Production with DataStax Enterprise Graph
Best Practices for Getting to Production with DataStax Enterprise GraphBest Practices for Getting to Production with DataStax Enterprise Graph
Best Practices for Getting to Production with DataStax Enterprise Graph
DataStax
 
Webinar | How to Understand Apache Cassandra™ Performance Through Read/Writ...
Webinar  |  How to Understand Apache Cassandra™ Performance Through Read/Writ...Webinar  |  How to Understand Apache Cassandra™ Performance Through Read/Writ...
Webinar | How to Understand Apache Cassandra™ Performance Through Read/Writ...
DataStax
 
Webinar | Better Together: Apache Cassandra and Apache Kafka
Webinar  |  Better Together: Apache Cassandra and Apache KafkaWebinar  |  Better Together: Apache Cassandra and Apache Kafka
Webinar | Better Together: Apache Cassandra and Apache Kafka
DataStax
 
Top 10 Best Practices for Apache Cassandra and DataStax Enterprise
Top 10 Best Practices for Apache Cassandra and DataStax EnterpriseTop 10 Best Practices for Apache Cassandra and DataStax Enterprise
Top 10 Best Practices for Apache Cassandra and DataStax Enterprise
DataStax
 
Introduction to Apache Cassandra™ + What’s New in 4.0
Introduction to Apache Cassandra™ + What’s New in 4.0Introduction to Apache Cassandra™ + What’s New in 4.0
Introduction to Apache Cassandra™ + What’s New in 4.0
DataStax
 
How to Evaluate Cloud Databases for eCommerce
How to Evaluate Cloud Databases for eCommerceHow to Evaluate Cloud Databases for eCommerce
How to Evaluate Cloud Databases for eCommerce
DataStax
 
Webinar - Real-Time Customer Experience for the Right-Now Enterprise featurin...
Webinar - Real-Time Customer Experience for the Right-Now Enterprise featurin...Webinar - Real-Time Customer Experience for the Right-Now Enterprise featurin...
Webinar - Real-Time Customer Experience for the Right-Now Enterprise featurin...
DataStax
 
Datastax - The Architect's guide to customer experience (CX)
Datastax - The Architect's guide to customer experience (CX)Datastax - The Architect's guide to customer experience (CX)
Datastax - The Architect's guide to customer experience (CX)
DataStax
 
Becoming a Customer-Centric Enterprise Via Real-Time Data and Design Thinking
Becoming a Customer-Centric Enterprise Via Real-Time Data and Design ThinkingBecoming a Customer-Centric Enterprise Via Real-Time Data and Design Thinking
Becoming a Customer-Centric Enterprise Via Real-Time Data and Design Thinking
DataStax
 
Innovation Around Data and AI for Fraud Detection
Innovation Around Data and AI for Fraud DetectionInnovation Around Data and AI for Fraud Detection
Innovation Around Data and AI for Fraud Detection
DataStax
 
Webinar: Building a Multi-Cloud Strategy with Data Autonomy featuring 451 Res...
Webinar: Building a Multi-Cloud Strategy with Data Autonomy featuring 451 Res...Webinar: Building a Multi-Cloud Strategy with Data Autonomy featuring 451 Res...
Webinar: Building a Multi-Cloud Strategy with Data Autonomy featuring 451 Res...
DataStax
 
Real Time Customer Experience for today's Right-Now Economy
Real Time Customer Experience for today's Right-Now EconomyReal Time Customer Experience for today's Right-Now Economy
Real Time Customer Experience for today's Right-Now Economy
DataStax
 
Accelerating Digital Transformation using Cloud Native Solutions
Accelerating Digital Transformation using Cloud Native SolutionsAccelerating Digital Transformation using Cloud Native Solutions
Accelerating Digital Transformation using Cloud Native Solutions
DataStax
 
GDPR: The Catalyst for Customer 360
GDPR: The Catalyst for Customer 360GDPR: The Catalyst for Customer 360
GDPR: The Catalyst for Customer 360
DataStax
 
Managing Smart Meter with DataStax DSE
Managing Smart Meter with DataStax DSEManaging Smart Meter with DataStax DSE
Managing Smart Meter with DataStax DSE
DataStax
 

More from DataStax (15)

Best Practices for Getting to Production with DataStax Enterprise Graph
Best Practices for Getting to Production with DataStax Enterprise GraphBest Practices for Getting to Production with DataStax Enterprise Graph
Best Practices for Getting to Production with DataStax Enterprise Graph
 
Webinar | How to Understand Apache Cassandra™ Performance Through Read/Writ...
Webinar  |  How to Understand Apache Cassandra™ Performance Through Read/Writ...Webinar  |  How to Understand Apache Cassandra™ Performance Through Read/Writ...
Webinar | How to Understand Apache Cassandra™ Performance Through Read/Writ...
 
Webinar | Better Together: Apache Cassandra and Apache Kafka
Webinar  |  Better Together: Apache Cassandra and Apache KafkaWebinar  |  Better Together: Apache Cassandra and Apache Kafka
Webinar | Better Together: Apache Cassandra and Apache Kafka
 
Top 10 Best Practices for Apache Cassandra and DataStax Enterprise
Top 10 Best Practices for Apache Cassandra and DataStax EnterpriseTop 10 Best Practices for Apache Cassandra and DataStax Enterprise
Top 10 Best Practices for Apache Cassandra and DataStax Enterprise
 
Introduction to Apache Cassandra™ + What’s New in 4.0
Introduction to Apache Cassandra™ + What’s New in 4.0Introduction to Apache Cassandra™ + What’s New in 4.0
Introduction to Apache Cassandra™ + What’s New in 4.0
 
How to Evaluate Cloud Databases for eCommerce
How to Evaluate Cloud Databases for eCommerceHow to Evaluate Cloud Databases for eCommerce
How to Evaluate Cloud Databases for eCommerce
 
Webinar - Real-Time Customer Experience for the Right-Now Enterprise featurin...
Webinar - Real-Time Customer Experience for the Right-Now Enterprise featurin...Webinar - Real-Time Customer Experience for the Right-Now Enterprise featurin...
Webinar - Real-Time Customer Experience for the Right-Now Enterprise featurin...
 
Datastax - The Architect's guide to customer experience (CX)
Datastax - The Architect's guide to customer experience (CX)Datastax - The Architect's guide to customer experience (CX)
Datastax - The Architect's guide to customer experience (CX)
 
Becoming a Customer-Centric Enterprise Via Real-Time Data and Design Thinking
Becoming a Customer-Centric Enterprise Via Real-Time Data and Design ThinkingBecoming a Customer-Centric Enterprise Via Real-Time Data and Design Thinking
Becoming a Customer-Centric Enterprise Via Real-Time Data and Design Thinking
 
Innovation Around Data and AI for Fraud Detection
Innovation Around Data and AI for Fraud DetectionInnovation Around Data and AI for Fraud Detection
Innovation Around Data and AI for Fraud Detection
 
Webinar: Building a Multi-Cloud Strategy with Data Autonomy featuring 451 Res...
Webinar: Building a Multi-Cloud Strategy with Data Autonomy featuring 451 Res...Webinar: Building a Multi-Cloud Strategy with Data Autonomy featuring 451 Res...
Webinar: Building a Multi-Cloud Strategy with Data Autonomy featuring 451 Res...
 
Real Time Customer Experience for today's Right-Now Economy
Real Time Customer Experience for today's Right-Now EconomyReal Time Customer Experience for today's Right-Now Economy
Real Time Customer Experience for today's Right-Now Economy
 
Accelerating Digital Transformation using Cloud Native Solutions
Accelerating Digital Transformation using Cloud Native SolutionsAccelerating Digital Transformation using Cloud Native Solutions
Accelerating Digital Transformation using Cloud Native Solutions
 
GDPR: The Catalyst for Customer 360
GDPR: The Catalyst for Customer 360GDPR: The Catalyst for Customer 360
GDPR: The Catalyst for Customer 360
 
Managing Smart Meter with DataStax DSE
Managing Smart Meter with DataStax DSEManaging Smart Meter with DataStax DSE
Managing Smart Meter with DataStax DSE
 

Recently uploaded

Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
UiPathCommunity
 
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
Product School
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
ThousandEyes
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
91mobiles
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
Safe Software
 
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdfFIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance
 
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Jeffrey Haguewood
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
DanBrown980551
 
Knowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and backKnowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and back
Elena Simperl
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance
 
Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
OnBoard
 
JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
RTTS
 
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
Product School
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
BookNet Canada
 
UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3
DianaGray10
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
Guy Korland
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
James Anderson
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
Thijs Feryn
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
Product School
 

Recently uploaded (20)

Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
 
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
 
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdfFIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
 
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
 
Knowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and backKnowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and back
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
 
Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
 
JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
 
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
 
UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
 

How to get Real-Time Value from your IoT Data - Datastax

  • 2. How to get Real-Time Value from your IoT Data Vincent Poncet Solution Engineer EMEA
  • 3. IoT Application Characteristics © DataStax, All Rights Reserved.3 Real-Time DistributedAlways-OnContextual Scalable
  • 4. Platform for IoT Applications DataStax is a registered trademark of DataStax, Inc. and its subsidiaries in the United States and/or other countries.4 DSEFS
  • 5. From validation to momentum. 400+ Employees $190M Funding 500+ Customers Founded in April 2010 Santa Clara • San Francisco • Austin • London • Paris • Berlin • Tokyo • Sydney (Series E – Sept. 2014) 30% + 2016 World’s Best 100 Cloud Companies Ranked #1 in multiple operational database categories © 2017 DataStax, All Rights Reserved. Company Confidential
  • 6. GE THE CHALLENGE: Collect sensor data from millions of devices from around the world and manage trillions of transactions per day © DataStax, All Rights Reserved.6 • GE offers the first Industrial Cloud Platform called GE Predix. Datastax is part of the data services layer within the platform • DSE will collect sensor data from millions of devices from around the world to help GE provide predictive maintenance to their customers and increase operational efficiencies • Predix manages trillions of transactions per day. DSE was recognized as the only solution that could support this scale and data center replication
  • 7. First Utility • First Utility offers a disruptive, modern application called My Energy that gives customers total transparency to understand & manage their energy consumption • Each Smart Meter produces up to 17,000 readings per year • DSE provides the distributed, responsive & intelligent foundation to power My Energy at scale • As a result, customers use 5-6% less energy and further reduce their energy bills THE CHALLENGE: Drive better customer experiences by giving customers the information they need to control their energy usage through Smart Meters technology © DataStax, All Rights Reserved.7
  • 8. Traxens THE CHALLENGE: Implement a solution for global, real-time, end-to-end monitoring of containers door to door and proactive alerts for issues © DataStax, All Rights Reserved.8 • Traxens offers an IOT service, Trax-Hub, for real-time, end to end global monitoring of containers door to door • Alerts for open boxes, temperature changes, etc. • Granular monitoring of individual containers: Traxens can store information on all containers (up to 20,000 in one ship), and hundreds of attributes per container • Scalable platform for future needs
  • 9. What is Apache Cassandra? © DataStax, All Rights Reserved.9
  • 10. Apache Cassandra ©2014 DataStax Confidential. Do not distribute without • Distributed NoSQL Database • Google Big Table • Amazon Dynamo • Continuous Availability • Disaster Avoidance • Linear Scale Performance • Add nodes to scale • Runs on Commodity Hardware • Cloud or on Premise San Francisco New York Munich
  • 11. Apache Cassandra Disaster Avoidance ©2014 DataStax Confidential. Do not distribute without consent. San Francisco New York Munich
  • 12. © DataStax, All Rights Reserved. 12 Example Data Model
  • 13. Sensor collects data Cassandra stores in sequence Application reads in sequence Car Sensor Use Case
  • 14. • Store data per sensor • Store time series in order: first to last • Get all data for one sensor • Get data for a single date and time • Get data for a range of dates and times Needed Queries Data Model to support queries Use Case
  • 15. Sensor Id and Time are unique Store as many as needed CREATE TABLE car_stats ( sensor_id text, collect_time timestamp, temperature text, longitude text, latitude text, speed text, PRIMARY KEY (sensor_id,collect_time) ); INSERT INTO car_stats(sensor_id,collect_time,temperature,longitude,latitude,speed) VALUES ('1234ABCD','2013-04-03 07:01:00','19C',’134.231’,‘234.234’,’60kmh’); INSERT INTO car_stats(sensor_id,collect_time,temperature,longitude,latitude,speed) VALUES ('1234ABCD','2013-04-03 07:02:00','20C',’135.230’,‘237.239’,’65kmh’); INSERT INTO car_stats(sensor_id,collect_time,temperature,longitude,latitude,speed) VALUES ('1234ABCD','2013-04-03 07:03:00','20C',’137.431’,‘240.793’,’68kmh’); INSERT INTO car_stats(sensor_id,collect_time,temperature,longitude,latitude,speed) VALUES ('1234ABCD','2013-04-03 07:04:00','21C',’138.589’,‘234.234’,’69kmh’); Data Model
  • 16. SELECT sensor_id,collect_time,temperature,longitude,latitude,speed FROM car_stats WHERE sensor_id='1234ABCD'; Sensor_id Collect_time temperature longitude latitude Speed 1234ABCD 2015-04-03 07:01:00 19C 134.231 234.234 60kmh 1234ABCD 2015-04-03 07:02:00 20C 135.230 237.239 65kmh 1234ABCD 2015-04-03 07:03:00 20C 137.431 240.793 68kmh 1234ABCD 2015-04-03 07:04:00 21C 138.589 234.234 69kmh Storage Model – Logical View
  • 17. SELECT sensor_id,collect_time,temperature,longitude,latitude,speed FROM car_stats WHERE sensor_id='1234ABCD'; Merged, Sorted and Stored Sequentially 1234A BCD 2015-04-03 07:01:00 2015-04-03 07:02:00 2015-04-03 07:03:00 2015-04-03 07:04:00 19C 134.2 31 234.2 34 60km h 20C 135.2 30 237.2 39 65kmh 20C 137.4 31 240.7 93 68kmh 21C 138.5 89 234.2 34 69kmh Storage Model – Disk Layout
  • 18. Range queries “Slice” operation on disk SELECT sensor_id,collect_time,temperature,longitude,latitude,speed FROM car_stats WHERE sensor_id='1234ABCD' AND collect_time >= '2015-04-03 07:01:00' AND collect_time <= '2015-04-03 07:04:00'; Single seek on disk Query Patterns 1234 ABC D 2015-04-03 07:01:00 2015-04-03 07:02:00 2015-04-03 07:03:00 2015-04-03 07:04:00 19C 134.2 31 234.2 34 60km h 20C 135.2 30 237.2 39 65kmh 20C 137.4 31 240.7 93 68kmh 21C 138.5 89 234.2 34 69kmh
  • 19. Range queries “Slice” operation on disk Sorted by collect_time SELECT sensor_id,collect_time,temperature,longitude,latitude,speed FROM car_stats WHERE sensor_id='1234ABCD' AND collect_time >= '2015-04-03 07:01:00' AND collect_time <= '2015-04-03 07:04:00'; Query Patterns Sensor_id Collect_time temperature longitude latitude Speed 1234ABCD 2015-04-03 07:01:00 19C 134.231 234.234 60kmh 1234ABCD 2015-04-03 07:02:00 20C 135.230 237.239 65kmh 1234ABCD 2015-04-03 07:03:00 20C 137.431 240.793 68kmh 1234ABCD 2015-04-03 07:04:00 21C 138.589 234.234 69kmh
  • 20. Cassandra Data Modeling Requires a different mindset than RDBMS modeling Know your data and your queries up front Queries drive a lot of the modeling decisions (i.e. “table per query” pattern) Denormalize/Duplicate data at write time to do as few queries as possible come read time Remember, storage is cheap and writes in Cassandra are FAST ( about 1,000 inserts / second per physical CPU core ) 20
  • 21. © DataStax, All Rights Reserved. 21 DataStax Enterprise DSE
  • 22. © 2015 DataStax, All Rights Reserved. 22 I’ve ingested my data, now what?
  • 23. Platform for IoT Applications DataStax is a registered trademark of DataStax, Inc. and its 23 DSEFS
  • 24. DataStax Enterprise Company Confidential Offline Application External Spark or Hadoop Cluster Spark/ Hadoop RDBMS 24 Real Time Analytics Batch Analytics Real Time Search Certified Apache Cassandra No Single Point of Failure | Linear Scalability | Always-On DSE – Fully Integrated Technology Stack Ease of Use DataStax Studio OpsCenter Services Monitoring, Operations Low Latency In- Memory Data DSE Graph Graph Database Operational Resiliency File System Advanced Security DSEFS Analytics Transformations
  • 25. • Ready and certified for production environments. • Rigorous certification process: • Extensive quality assurance testing. • Performance and scale tests with 1,000 node clusters. • 3rd party software validation. • Certified for key supported platforms. ©2014 DataStax Confidential. Do not distribute without consent. DataStax Enterprise – Certified Cassandra
  • 26. 26 • Embedded Spark • ETL workloads, Real-Time Streaming Analytics, SQL Operational Analytics on Cassandra. • DSE benefits: • Spark Master HA • Integrated security • Support DSE Analytics
  • 27. HTTP Application Message Queue Streamin g Analytics Near Real Time Analytics Real-time DSE Multi-Workload Analytics Architecture © 2015 DataStax, All Rights Reserved. 27
  • 28. 28 • DSE Search inherits all the power and capabilities of Solr and builds on top of it to create even more powerful enterprise search functionality • Built-in scale out and continuous availability and multiple data centers support • Automatic indexing when inserting and updating in Cassandra • Search Capabilities integrated into Cassandra Query Language • Multi-criteria • Full text • Geospatial • Faceting • Auto-completion DSE Search
  • 29. HTTP Application Message Queue Streamin g Analytics Near Real Time Analytics Real-time Search © 2015 DataStax, All Rights Reserved. 29 DSE Multi-Workload Analytics Architecture
  • 30. ©2016 DataStax • Allows one-way replication from “edge” cluster to another, centralized hub cluster. • Ideal for retail, energy, and other “edge of the internet of things” use cases. • Hub and spoke DSE Advanced Replication
  • 31. ©2016 DataStax • Able to automatically move data to different storage media based on defined criteria. • Helps reduce storage costs by relegating lesser-used or older data to less expensive storage devices. • Works on a granular per-row basis. DSE Tiered Storage
  • 32. Confidential 32 DSEFS • Distributed file system, masterless, API compatible with HDFS • Resiliency of metadata, being stored in Cassandra tables • Cost effective, cold storage of data • Staging • Archiving • Analytics (with Spark)
  • 33. Confidential 33 Storage Temperature Management • Business value of data record per byte is low in IoT use cases • Being able to optimize the cost of storage depending on the usage of the data is key • A tiering / temperature management approach is a relevant response • Hot Fast storage using SSD for fresh data • Warm cost effective storage using HDD for older data (in-DB online archive) • Cold cheapest storage using file system for long term data (out-DB archive) • Can be used with Spark for analytical usages Hot Data Tiered Storage SSD Warm Data Tiered Storage HDD Cold Data DSEFS HDD
  • 34. ©2016 DataStax • Transparent Data Encryption of ALL DSE data at rest • Role based access control • Unified authentication: Allows multiple security authentication protocols (e.g. Kerberos, LDAP, Active Directory, internal Cassandra) to be used on the same database cluster. • Data Auditing DSE Enterprise Security
  • 36. Interact with DataStax Enterprise from your application Create objects via DDL (e.g. CREATE…) GRANT/REVOKE INSERT, UPDATE, DELETE Query data with SELECT Certified DataStax drivers: Community drivers: Java C# Python C++ Node.js ODBC PHP Ruby Closure Erlang Haskell Rust The Cassandra Query Language (CQL)
  • 37. Explore, query, and analyze DSE • Visually Create and Navigate Database Objects via CQL • Gremlin Query Language Support • Auto-completion, result set visualization, execution management, and much more. • Friendly Fluent API DataStax is a registered trademark of DataStax, Inc. and its subsidiaries in the United States and/or other countries.37 Studio
  • 38. Visual management for DSE • Automate what no one likes – backups, repairs • REST API to work in your world • Instantly manage your cluster, scaling up or down at a moment’s notice • Monitor your cluster and follow best practices, ensuring a secure environmentDataStax is a registered trademark of DataStax, Inc. and its subsidiaries in the United States and/or other countries.38 OpsCenter
  • 39. • Designed to automatically handle many maintenance and management tasks. • Makes DSE easy to work with. • Services included: • Repair service • Capacity service • Performance service • Best Practice service • Backup/Restore service ©2014 DataStax Confidential. Do not distribute without consent. DataStax Automatic Management Services
  • 40. • 24x7x365 • Production and non-production environments. • Health checks for assistance on architecture, design, and tuning. • Certified service packs • Hot-fix support and back porting of bug fixes ©2014 DataStax Confidential. Do not distribute without consent. DataStax Expert Support
  • 41. DataStax Managed Cloud • DSE on AWS with Managed Provisioning and Scaling by DataStax • 24x7x365 Coverage, Lights-Out Management • System Configuration and Tuning to Meet Customer Specific Requirements • Architecture Advisory Services, Guidance and Best Practices A Fully Managed, Secure Architecture 41 © 2017 DataStax, All Rights Reserved. DataStax is a registered trademark of DataStax, Inc. and its subsidiaries in the United States and/or other countries. Apache Cassandra, Apache, Spark, and Cassandra are trademarks of the Apache Software Foundation or its subsidiaries in Canada, the United States and/or other countries.
  • 42. Thank you © 2017 DataStax, All Rights Reserved. Company Confidential
  • 43. We are the power behind the moment. © 2017 DataStax, All Rights Reserved. Company Confidential