Time Series Data with Apache Cassandra

Eric Evans
Eric EvansSoftware Developer at Apache Software Foundation
Time Series Data With
Apache Cassandra
Berlin Buzzwords
May 27, 2014
Eric Evans
eevans@opennms.org
@jericevans
Open
Open
Open
Open
Network
Management
System
OpenNMS: What It Is
● Network Management System
○ Discovery and Provisioning
○ Service monitoring
○ Data collection
○ Event management, notifications
● Java, open source, GPLv3
● Since 1999
Time series: RRDTool
● Round Robin Database
● First released 1999
● Time series storage
● File-based, constant-size, self-maintaining
● Automatic, incremental aggregation
… and oh yeah, graphing
Consider
● 5+ IOPs per update (read-modify-write)!
● 100,000s of metrics, 1,000s IOPS
● 1,000,000s of metrics, 10,000s IOPS
● 15,000 RPM SAS drive, ~175-200 IOPS
Time Series Data with Apache Cassandra
Hmmm
We collect and write a great deal; We read
(graph) relatively little.
So why are we aggregating everything?
Also
● Not everything is a graph
● Inflexible
● Incremental backups impractical
● Availability subject to filesystem access
TIL
Metrics typically appear in groups that are
accessed together.
Optimizing storage for grouped access is a
great idea!
What OpenNMS needs:
● High throughput
● High availability
● Late aggregation
● Grouped storage/retrieval
Cassandra
● Apache top-level project
● Distributed database
● Highly available
● High throughput
● Tunable consistency
SSTables
Writes
Commitlog
Memtable
SSTable
Disk
Memory
Write Properties
● Optimized for write throughput
● Sorted on disk
● Perfect for time series!
Partitioning
A
B
C
Key: Apple
...
AZ
Placement
A
B
C
Key: Apple
...
Replication
A
B
C
Key: Apple
...
CAP Theorem
Consistency
Availability
Partition tolerance
Consistency
A
B
?
W=2
Consistency
?
B
C
R=2
R+W > N
Distribution Properties
● Symmetrical
● Linearly scalable
● Redundant
● Highly available
D ata odelM
Data Model
resource
Data Model
resource
T1 T2 T3
Data Model
resource
T1
M1 M2
V1 V2
M3
V3
T2
M1 M2
V1 V2
M3
V3
T3
M1 M2
V1 V2
M3
V3
Time Series Data with Apache Cassandra
Data Model
CREATE TABLE samples (
T timestamp,
M text,
V double,
resource text,
PRIMARY KEY(resource, T, M)
);
Data model
V1T1 M1 V2T1 M2 T1 V3M3resource
Data model
SELECT * FROM samples
WHERE resource = ‘resource’
AND T = ‘T1’;
V1T1 M1 V2T1 M2 T1 V3M3resource
Data model
T1 M1 V1resource
V1T1 M1 V2T1 M2 T1 V3M3resource
Data model
T1 M1 V1
T1 M2 V2
resource
resource
V1T1 M1 V2T1 M2 T1 V3M3resource
Data model
T1 M1 V1
T1 M2 V2
T1 M3 V3
resource
resource
resource
V1T1 M1 V2T1 M2 T1 V3M3resource
Data model
SELECT * FROM samples
WHERE resource = ‘resource’
AND T >= ‘T1’ AND T <= ‘T3’;
V1T1 M1 V1T2 M1 T3 V1M1resource
Newts
● Standalone time series data-store
● Raw sample storage and retrieval
● Flexible aggregations (computed at read)
○ Rate (counter types)
○ Functions pluggable
○ Arbitrary calculations
● Cassandra-speed
Newts
● Java API
● REST interface
● Apache licensed
● Github (http://github.com/OpenNMS/newts)
Fin
1 of 40

Recommended

Time series storage in Cassandra by
Time series storage in CassandraTime series storage in Cassandra
Time series storage in CassandraEric Evans
3K views20 slides
It's not you, it's me: Ending a 15 year relationship with RRD by
It's not you, it's me: Ending a 15 year relationship with RRDIt's not you, it's me: Ending a 15 year relationship with RRD
It's not you, it's me: Ending a 15 year relationship with RRDEric Evans
4.4K views40 slides
Time Series Data with Apache Cassandra (ApacheCon EU 2014) by
Time Series Data with Apache Cassandra (ApacheCon EU 2014)Time Series Data with Apache Cassandra (ApacheCon EU 2014)
Time Series Data with Apache Cassandra (ApacheCon EU 2014)Eric Evans
1.9K views39 slides
Time Series Data with Apache Cassandra by
Time Series Data with Apache CassandraTime Series Data with Apache Cassandra
Time Series Data with Apache CassandraEric Evans
2K views37 slides
Demonstration by
DemonstrationDemonstration
DemonstrationSean Murphy
664 views15 slides
TypoScript and EEL outside of Neos [InspiringFlow2013] by
TypoScript and EEL outside of Neos [InspiringFlow2013]TypoScript and EEL outside of Neos [InspiringFlow2013]
TypoScript and EEL outside of Neos [InspiringFlow2013]Christian Müller
1.6K views64 slides

More Related Content

What's hot

Sampling based Histogram in MariaDB by
Sampling based Histogram in MariaDBSampling based Histogram in MariaDB
Sampling based Histogram in MariaDBTeodor Niculescu
43 views5 slides
Wikimedia Content API (Strangeloop) by
Wikimedia Content API (Strangeloop)Wikimedia Content API (Strangeloop)
Wikimedia Content API (Strangeloop)Eric Evans
1K views52 slides
Mongo nyc nyt + mongodb by
Mongo nyc nyt + mongodbMongo nyc nyt + mongodb
Mongo nyc nyt + mongodbDeep Kapadia
297 views21 slides
Climate data in r with the raster package by
Climate data in r with the raster packageClimate data in r with the raster package
Climate data in r with the raster packageAlberto Labarga
1.7K views18 slides
Redis Day TLV 2018 - RediSearch Aggregations by
Redis Day TLV 2018 - RediSearch AggregationsRedis Day TLV 2018 - RediSearch Aggregations
Redis Day TLV 2018 - RediSearch AggregationsRedis Labs
137 views29 slides
The Directions Pipeline at Mapbox - AWS Meetup Berlin June 2015 by
The Directions Pipeline at Mapbox - AWS Meetup Berlin June 2015The Directions Pipeline at Mapbox - AWS Meetup Berlin June 2015
The Directions Pipeline at Mapbox - AWS Meetup Berlin June 2015Johan
679 views23 slides

What's hot(20)

Wikimedia Content API (Strangeloop) by Eric Evans
Wikimedia Content API (Strangeloop)Wikimedia Content API (Strangeloop)
Wikimedia Content API (Strangeloop)
Eric Evans1K views
Mongo nyc nyt + mongodb by Deep Kapadia
Mongo nyc nyt + mongodbMongo nyc nyt + mongodb
Mongo nyc nyt + mongodb
Deep Kapadia297 views
Climate data in r with the raster package by Alberto Labarga
Climate data in r with the raster packageClimate data in r with the raster package
Climate data in r with the raster package
Alberto Labarga1.7K views
Redis Day TLV 2018 - RediSearch Aggregations by Redis Labs
Redis Day TLV 2018 - RediSearch AggregationsRedis Day TLV 2018 - RediSearch Aggregations
Redis Day TLV 2018 - RediSearch Aggregations
Redis Labs137 views
The Directions Pipeline at Mapbox - AWS Meetup Berlin June 2015 by Johan
The Directions Pipeline at Mapbox - AWS Meetup Berlin June 2015The Directions Pipeline at Mapbox - AWS Meetup Berlin June 2015
The Directions Pipeline at Mapbox - AWS Meetup Berlin June 2015
Johan 679 views
ECMAScript: past, present and future by Kseniya Redunova
ECMAScript: past, present and futureECMAScript: past, present and future
ECMAScript: past, present and future
Kseniya Redunova641 views
Redis Day TLV 2018 - Redis as a Time-Series DB by Redis Labs
Redis Day TLV 2018 - Redis as a Time-Series DBRedis Day TLV 2018 - Redis as a Time-Series DB
Redis Day TLV 2018 - Redis as a Time-Series DB
Redis Labs478 views
Be a Zen monk, the Python way by Sriram Murali
Be a Zen monk, the Python wayBe a Zen monk, the Python way
Be a Zen monk, the Python way
Sriram Murali389 views
InfiniFlux Minmax Cache by InfiniFlux
InfiniFlux Minmax CacheInfiniFlux Minmax Cache
InfiniFlux Minmax Cache
InfiniFlux279 views
In class, we discussed min-heaps. In a min-heap the element of the heap with ... by licservernoida
In class, we discussed min-heaps. In a min-heap the element of the heap with ...In class, we discussed min-heaps. In a min-heap the element of the heap with ...
In class, we discussed min-heaps. In a min-heap the element of the heap with ...
licservernoida19 views
Slide smallfiles by rledisez
Slide smallfilesSlide smallfiles
Slide smallfiles
rledisez266 views
Intro to Apache Spark - Lab by Mammoth Data
Intro to Apache Spark - LabIntro to Apache Spark - Lab
Intro to Apache Spark - Lab
Mammoth Data485 views
Ted Dunning – Very High Bandwidth Time Series Database Implementation - NoSQL... by NoSQLmatters
Ted Dunning – Very High Bandwidth Time Series Database Implementation - NoSQL...Ted Dunning – Very High Bandwidth Time Series Database Implementation - NoSQL...
Ted Dunning – Very High Bandwidth Time Series Database Implementation - NoSQL...
NoSQLmatters2.2K views
Time Series Data with InfluxDB by Turi, Inc.
Time Series Data with InfluxDBTime Series Data with InfluxDB
Time Series Data with InfluxDB
Turi, Inc.6.3K views
Bitcoin Price Detection with Pyspark presentation by Yakup Görür
Bitcoin Price Detection with Pyspark presentationBitcoin Price Detection with Pyspark presentation
Bitcoin Price Detection with Pyspark presentation
Yakup Görür149 views
“Show Me the Garbage!”, Understanding Garbage Collection by Haim Yadid
“Show Me the Garbage!”, Understanding Garbage Collection“Show Me the Garbage!”, Understanding Garbage Collection
“Show Me the Garbage!”, Understanding Garbage Collection
Haim Yadid243 views
Presto Bangalore Meetup1 Presto Raptor@ola by Shubham Tagra
Presto Bangalore Meetup1 Presto Raptor@olaPresto Bangalore Meetup1 Presto Raptor@ola
Presto Bangalore Meetup1 Presto Raptor@ola
Shubham Tagra520 views
Object multifunctional indexing with an open API by akvalex
Object multifunctional indexing with an open API Object multifunctional indexing with an open API
Object multifunctional indexing with an open API
akvalex183 views

Viewers also liked

Rethinking Topology In Cassandra (ApacheCon NA) by
Rethinking Topology In Cassandra (ApacheCon NA)Rethinking Topology In Cassandra (ApacheCon NA)
Rethinking Topology In Cassandra (ApacheCon NA)Eric Evans
1.6K views59 slides
DataStax et Apache Cassandra pour la gestion des flux IoT by
DataStax et Apache Cassandra pour la gestion des flux IoTDataStax et Apache Cassandra pour la gestion des flux IoT
DataStax et Apache Cassandra pour la gestion des flux IoTVictor Coustenoble
1.4K views32 slides
Building Scalable IoT Apps (QCon S-F) by
Building Scalable IoT Apps (QCon S-F)Building Scalable IoT Apps (QCon S-F)
Building Scalable IoT Apps (QCon S-F)Pavel Hardak
1.3K views51 slides
Spectator to Participant. Contributing to Cassandra (Patrick McFadin, DataSta... by
Spectator to Participant. Contributing to Cassandra (Patrick McFadin, DataSta...Spectator to Participant. Contributing to Cassandra (Patrick McFadin, DataSta...
Spectator to Participant. Contributing to Cassandra (Patrick McFadin, DataSta...DataStax
451 views26 slides
Cassandra at scale by
Cassandra at scaleCassandra at scale
Cassandra at scalePatrick McFadin
3K views17 slides
Cassandra: Two data centers and great performance by
Cassandra: Two data centers and great performanceCassandra: Two data centers and great performance
Cassandra: Two data centers and great performanceDATAVERSITY
3.8K views54 slides

Viewers also liked(20)

Rethinking Topology In Cassandra (ApacheCon NA) by Eric Evans
Rethinking Topology In Cassandra (ApacheCon NA)Rethinking Topology In Cassandra (ApacheCon NA)
Rethinking Topology In Cassandra (ApacheCon NA)
Eric Evans1.6K views
DataStax et Apache Cassandra pour la gestion des flux IoT by Victor Coustenoble
DataStax et Apache Cassandra pour la gestion des flux IoTDataStax et Apache Cassandra pour la gestion des flux IoT
DataStax et Apache Cassandra pour la gestion des flux IoT
Victor Coustenoble1.4K views
Building Scalable IoT Apps (QCon S-F) by Pavel Hardak
Building Scalable IoT Apps (QCon S-F)Building Scalable IoT Apps (QCon S-F)
Building Scalable IoT Apps (QCon S-F)
Pavel Hardak1.3K views
Spectator to Participant. Contributing to Cassandra (Patrick McFadin, DataSta... by DataStax
Spectator to Participant. Contributing to Cassandra (Patrick McFadin, DataSta...Spectator to Participant. Contributing to Cassandra (Patrick McFadin, DataSta...
Spectator to Participant. Contributing to Cassandra (Patrick McFadin, DataSta...
DataStax451 views
Cassandra: Two data centers and great performance by DATAVERSITY
Cassandra: Two data centers and great performanceCassandra: Two data centers and great performance
Cassandra: Two data centers and great performance
DATAVERSITY3.8K views
Wikimedia Content API: A Cassandra Use-case by Eric Evans
Wikimedia Content API: A Cassandra Use-caseWikimedia Content API: A Cassandra Use-case
Wikimedia Content API: A Cassandra Use-case
Eric Evans597 views
Wikimedia Content API: A Cassandra Use-case by Eric Evans
Wikimedia Content API: A Cassandra Use-caseWikimedia Content API: A Cassandra Use-case
Wikimedia Content API: A Cassandra Use-case
Eric Evans1.2K views
Castle enhanced Cassandra by Eric Evans
Castle enhanced CassandraCastle enhanced Cassandra
Castle enhanced Cassandra
Eric Evans1.2K views
Highly available, scalable and secure data with Cassandra and DataStax Enterp... by Johnny Miller
Highly available, scalable and secure data with Cassandra and DataStax Enterp...Highly available, scalable and secure data with Cassandra and DataStax Enterp...
Highly available, scalable and secure data with Cassandra and DataStax Enterp...
Johnny Miller4.5K views
CQL In Cassandra 1.0 (and beyond) by Eric Evans
CQL In Cassandra 1.0 (and beyond)CQL In Cassandra 1.0 (and beyond)
CQL In Cassandra 1.0 (and beyond)
Eric Evans4.1K views
Virtual Nodes: Rethinking Topology in Cassandra by Eric Evans
Virtual Nodes: Rethinking Topology in CassandraVirtual Nodes: Rethinking Topology in Cassandra
Virtual Nodes: Rethinking Topology in Cassandra
Eric Evans4.2K views
Cassandra by Example: Data Modelling with CQL3 by Eric Evans
Cassandra by Example:  Data Modelling with CQL3Cassandra by Example:  Data Modelling with CQL3
Cassandra by Example: Data Modelling with CQL3
Eric Evans5K views
Virtual Nodes: Rethinking Topology in Cassandra by Eric Evans
Virtual Nodes: Rethinking Topology in CassandraVirtual Nodes: Rethinking Topology in Cassandra
Virtual Nodes: Rethinking Topology in Cassandra
Eric Evans6.6K views
CQL: SQL In Cassandra by Eric Evans
CQL: SQL In CassandraCQL: SQL In Cassandra
CQL: SQL In Cassandra
Eric Evans15.2K views
Lightning fast analytics with Cassandra and Spark by Victor Coustenoble
Lightning fast analytics with Cassandra and SparkLightning fast analytics with Cassandra and Spark
Lightning fast analytics with Cassandra and Spark
Victor Coustenoble5.2K views

Similar to Time Series Data with Apache Cassandra

The new time series kid on the block by
The new time series kid on the blockThe new time series kid on the block
The new time series kid on the blockFlorian Lautenschlager
1.5K views29 slides
Chronix Time Series Database - The New Time Series Kid on the Block by
Chronix Time Series Database - The New Time Series Kid on the BlockChronix Time Series Database - The New Time Series Kid on the Block
Chronix Time Series Database - The New Time Series Kid on the BlockQAware GmbH
1.8K views29 slides
Apache Solr as a compressed, scalable, and high performance time series database by
Apache Solr as a compressed, scalable, and high performance time series databaseApache Solr as a compressed, scalable, and high performance time series database
Apache Solr as a compressed, scalable, and high performance time series databaseFlorian Lautenschlager
2K views21 slides
Large Data Analyze With PyTables by
Large Data Analyze With PyTablesLarge Data Analyze With PyTables
Large Data Analyze With PyTablesInnfinision Cloud and BigData Solutions
906 views40 slides
Py tables by
Py tablesPy tables
Py tablesAli Hallaji
185 views41 slides
PyTables by
PyTablesPyTables
PyTablesAli Hallaji
427 views41 slides

Similar to Time Series Data with Apache Cassandra(20)

Chronix Time Series Database - The New Time Series Kid on the Block by QAware GmbH
Chronix Time Series Database - The New Time Series Kid on the BlockChronix Time Series Database - The New Time Series Kid on the Block
Chronix Time Series Database - The New Time Series Kid on the Block
QAware GmbH1.8K views
Apache Solr as a compressed, scalable, and high performance time series database by Florian Lautenschlager
Apache Solr as a compressed, scalable, and high performance time series databaseApache Solr as a compressed, scalable, and high performance time series database
Apache Solr as a compressed, scalable, and high performance time series database
Introduction to Data streaming - 05/12/2014 by Raja Chiky
Introduction to Data streaming - 05/12/2014Introduction to Data streaming - 05/12/2014
Introduction to Data streaming - 05/12/2014
Raja Chiky2.1K views
Data Science in the Cloud @StitchFix by C4Media
Data Science in the Cloud @StitchFixData Science in the Cloud @StitchFix
Data Science in the Cloud @StitchFix
C4Media952 views
OSDC 2016 - Chronix - A fast and efficient time series storage based on Apach... by NETWAYS
OSDC 2016 - Chronix - A fast and efficient time series storage based on Apach...OSDC 2016 - Chronix - A fast and efficient time series storage based on Apach...
OSDC 2016 - Chronix - A fast and efficient time series storage based on Apach...
NETWAYS111 views
A Fast and Efficient Time Series Storage Based on Apache Solr by QAware GmbH
A Fast and Efficient Time Series Storage Based on Apache SolrA Fast and Efficient Time Series Storage Based on Apache Solr
A Fast and Efficient Time Series Storage Based on Apache Solr
QAware GmbH3.5K views
Chronix: A fast and efficient time series storage based on Apache Solr by Florian Lautenschlager
Chronix: A fast and efficient time series storage based on Apache SolrChronix: A fast and efficient time series storage based on Apache Solr
Chronix: A fast and efficient time series storage based on Apache Solr
SnappyData, the Spark Database. A unified cluster for streaming, transactions... by SnappyData
SnappyData, the Spark Database. A unified cluster for streaming, transactions...SnappyData, the Spark Database. A unified cluster for streaming, transactions...
SnappyData, the Spark Database. A unified cluster for streaming, transactions...
SnappyData2.5K views
Crash course on data streaming (with examples using Apache Flink) by Vincenzo Gulisano
Crash course on data streaming (with examples using Apache Flink)Crash course on data streaming (with examples using Apache Flink)
Crash course on data streaming (with examples using Apache Flink)
Vincenzo Gulisano255 views
Best Practices for Migrating your Data Warehouse to Amazon Redshift by Amazon Web Services
Best Practices for Migrating your Data Warehouse to Amazon RedshiftBest Practices for Migrating your Data Warehouse to Amazon Redshift
Best Practices for Migrating your Data Warehouse to Amazon Redshift
Amazon Web Services5.5K views
introduction to data processing using Hadoop and Pig by Ricardo Varela
introduction to data processing using Hadoop and Pigintroduction to data processing using Hadoop and Pig
introduction to data processing using Hadoop and Pig
Ricardo Varela92.5K views
Mining Adaptively Frequent Closed Unlabeled Rooted Trees in Data Streams by Albert Bifet
Mining Adaptively Frequent Closed Unlabeled Rooted Trees in Data StreamsMining Adaptively Frequent Closed Unlabeled Rooted Trees in Data Streams
Mining Adaptively Frequent Closed Unlabeled Rooted Trees in Data Streams
Albert Bifet717 views

More from Eric Evans

Cassandra By Example: Data Modelling with CQL3 by
Cassandra By Example: Data Modelling with CQL3Cassandra By Example: Data Modelling with CQL3
Cassandra By Example: Data Modelling with CQL3Eric Evans
40.2K views48 slides
Cassandra: Not Just NoSQL, It's MoSQL by
Cassandra: Not Just NoSQL, It's MoSQLCassandra: Not Just NoSQL, It's MoSQL
Cassandra: Not Just NoSQL, It's MoSQLEric Evans
3.3K views26 slides
NoSQL Yes, But YesCQL, No? by
NoSQL Yes, But YesCQL, No?NoSQL Yes, But YesCQL, No?
NoSQL Yes, But YesCQL, No?Eric Evans
1.8K views24 slides
Cassandra Explained by
Cassandra ExplainedCassandra Explained
Cassandra ExplainedEric Evans
22.1K views50 slides
Cassandra Explained by
Cassandra ExplainedCassandra Explained
Cassandra ExplainedEric Evans
3K views42 slides
Outside The Box With Apache Cassnadra by
Outside The Box With Apache CassnadraOutside The Box With Apache Cassnadra
Outside The Box With Apache CassnadraEric Evans
1.4K views43 slides

More from Eric Evans(9)

Cassandra By Example: Data Modelling with CQL3 by Eric Evans
Cassandra By Example: Data Modelling with CQL3Cassandra By Example: Data Modelling with CQL3
Cassandra By Example: Data Modelling with CQL3
Eric Evans40.2K views
Cassandra: Not Just NoSQL, It's MoSQL by Eric Evans
Cassandra: Not Just NoSQL, It's MoSQLCassandra: Not Just NoSQL, It's MoSQL
Cassandra: Not Just NoSQL, It's MoSQL
Eric Evans3.3K views
NoSQL Yes, But YesCQL, No? by Eric Evans
NoSQL Yes, But YesCQL, No?NoSQL Yes, But YesCQL, No?
NoSQL Yes, But YesCQL, No?
Eric Evans1.8K views
Cassandra Explained by Eric Evans
Cassandra ExplainedCassandra Explained
Cassandra Explained
Eric Evans22.1K views
Cassandra Explained by Eric Evans
Cassandra ExplainedCassandra Explained
Cassandra Explained
Eric Evans3K views
Outside The Box With Apache Cassnadra by Eric Evans
Outside The Box With Apache CassnadraOutside The Box With Apache Cassnadra
Outside The Box With Apache Cassnadra
Eric Evans1.4K views
The Cassandra Distributed Database by Eric Evans
The Cassandra Distributed DatabaseThe Cassandra Distributed Database
The Cassandra Distributed Database
Eric Evans9.1K views
An Introduction To Cassandra by Eric Evans
An Introduction To CassandraAn Introduction To Cassandra
An Introduction To Cassandra
Eric Evans5K views
Cassandra In A Nutshell by Eric Evans
Cassandra In A NutshellCassandra In A Nutshell
Cassandra In A Nutshell
Eric Evans3K views

Recently uploaded

Uni Systems for Power Platform.pptx by
Uni Systems for Power Platform.pptxUni Systems for Power Platform.pptx
Uni Systems for Power Platform.pptxUni Systems S.M.S.A.
50 views21 slides
Combining Orchestration and Choreography for a Clean Architecture by
Combining Orchestration and Choreography for a Clean ArchitectureCombining Orchestration and Choreography for a Clean Architecture
Combining Orchestration and Choreography for a Clean ArchitectureThomasHeinrichs1
69 views24 slides
Future of Learning - Khoong Chan Meng by
Future of Learning - Khoong Chan MengFuture of Learning - Khoong Chan Meng
Future of Learning - Khoong Chan MengNUS-ISS
33 views7 slides
RADIUS-Omnichannel Interaction System by
RADIUS-Omnichannel Interaction SystemRADIUS-Omnichannel Interaction System
RADIUS-Omnichannel Interaction SystemRADIUS
15 views21 slides
The Importance of Cybersecurity for Digital Transformation by
The Importance of Cybersecurity for Digital TransformationThe Importance of Cybersecurity for Digital Transformation
The Importance of Cybersecurity for Digital TransformationNUS-ISS
27 views26 slides
Spesifikasi Lengkap ASUS Vivobook Go 14 by
Spesifikasi Lengkap ASUS Vivobook Go 14Spesifikasi Lengkap ASUS Vivobook Go 14
Spesifikasi Lengkap ASUS Vivobook Go 14Dot Semarang
35 views1 slide

Recently uploaded(20)

Combining Orchestration and Choreography for a Clean Architecture by ThomasHeinrichs1
Combining Orchestration and Choreography for a Clean ArchitectureCombining Orchestration and Choreography for a Clean Architecture
Combining Orchestration and Choreography for a Clean Architecture
ThomasHeinrichs169 views
Future of Learning - Khoong Chan Meng by NUS-ISS
Future of Learning - Khoong Chan MengFuture of Learning - Khoong Chan Meng
Future of Learning - Khoong Chan Meng
NUS-ISS33 views
RADIUS-Omnichannel Interaction System by RADIUS
RADIUS-Omnichannel Interaction SystemRADIUS-Omnichannel Interaction System
RADIUS-Omnichannel Interaction System
RADIUS15 views
The Importance of Cybersecurity for Digital Transformation by NUS-ISS
The Importance of Cybersecurity for Digital TransformationThe Importance of Cybersecurity for Digital Transformation
The Importance of Cybersecurity for Digital Transformation
NUS-ISS27 views
Spesifikasi Lengkap ASUS Vivobook Go 14 by Dot Semarang
Spesifikasi Lengkap ASUS Vivobook Go 14Spesifikasi Lengkap ASUS Vivobook Go 14
Spesifikasi Lengkap ASUS Vivobook Go 14
Dot Semarang35 views
PharoJS - Zürich Smalltalk Group Meetup November 2023 by Noury Bouraqadi
PharoJS - Zürich Smalltalk Group Meetup November 2023PharoJS - Zürich Smalltalk Group Meetup November 2023
PharoJS - Zürich Smalltalk Group Meetup November 2023
Noury Bouraqadi120 views
Web Dev - 1 PPT.pdf by gdsczhcet
Web Dev - 1 PPT.pdfWeb Dev - 1 PPT.pdf
Web Dev - 1 PPT.pdf
gdsczhcet55 views
[2023] Putting the R! in R&D.pdf by Eleanor McHugh
[2023] Putting the R! in R&D.pdf[2023] Putting the R! in R&D.pdf
[2023] Putting the R! in R&D.pdf
Eleanor McHugh38 views
Transcript: The Details of Description Techniques tips and tangents on altern... by BookNet Canada
Transcript: The Details of Description Techniques tips and tangents on altern...Transcript: The Details of Description Techniques tips and tangents on altern...
Transcript: The Details of Description Techniques tips and tangents on altern...
BookNet Canada130 views
DALI Basics Course 2023 by Ivory Egg
DALI Basics Course  2023DALI Basics Course  2023
DALI Basics Course 2023
Ivory Egg14 views
handbook for web 3 adoption.pdf by Liveplex
handbook for web 3 adoption.pdfhandbook for web 3 adoption.pdf
handbook for web 3 adoption.pdf
Liveplex19 views
Igniting Next Level Productivity with AI-Infused Data Integration Workflows by Safe Software
Igniting Next Level Productivity with AI-Infused Data Integration Workflows Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Safe Software225 views
.conf Go 2023 - How KPN drives Customer Satisfaction on IPTV by Splunk
.conf Go 2023 - How KPN drives Customer Satisfaction on IPTV.conf Go 2023 - How KPN drives Customer Satisfaction on IPTV
.conf Go 2023 - How KPN drives Customer Satisfaction on IPTV
Splunk88 views

Time Series Data with Apache Cassandra