7
Big Data Open Source Software and Projects ABDS in Summary XIV: Level 14B I590 Data Science Curriculum August 15 2014 Geoffrey Fox [email protected] http://www.infomall.org School of Informatics and Computing Digital Science Center Indiana University Bloomington

Big Data Open Source Software and Projects ABDS in Summary XIV: Level 14B

Embed Size (px)

DESCRIPTION

Big Data Open Source Software and Projects ABDS in Summary XIV: Level 14B. I590 Data Science Curriculum August 15 2014. Geoffrey Fox [email protected] http://www.infomall.org School of Informatics and Computing Digital Science Center Indiana University Bloomington. HPC-ABDS Layers. - PowerPoint PPT Presentation

Citation preview

Page 1: Big Data Open Source Software  and Projects ABDS in Summary XIV: Level 14B

Big Data Open Source Software and Projects

ABDS in Summary XIV: Level 14B I590 Data Science Curriculum

August 15 2014

Geoffrey Fox [email protected]             http://www.infomall.org

School of Informatics and ComputingDigital Science Center

Indiana University Bloomington

Page 2: Big Data Open Source Software  and Projects ABDS in Summary XIV: Level 14B

HPC-ABDS Layers1) Message Protocols2) Distributed Coordination:3) Security & Privacy:4) Monitoring: 5) IaaS Management from HPC to hypervisors:6) DevOps: 7) Interoperability:8) File systems: 9) Cluster Resource Management: 10) Data Transport: 11) SQL / NoSQL / File management:12) In-memory databases&caches / Object-relational mapping / Extraction Tools13) Inter process communication Collectives, point-to-point, publish-subscribe14) Basic Programming model and runtime, SPMD, Streaming, MapReduce, MPI:15) High level Programming: 16) Application and Analytics: 17) Workflow-Orchestration:

Here are 17 functionalities. Technologies are presented in this order

4 Cross cutting at top13 in order of layered diagram starting at bottom

Page 3: Big Data Open Source Software  and Projects ABDS in Summary XIV: Level 14B

Apache Storm

• https://storm.incubator.apache.org/• Apache Storm is a distributed real time computation framework for 

processing streaming data.• Storm is being used to do real time analytics, online machine 

learning, distributed RPC etc.• Provides scalable, fault tolerant and guaranteed message processing.• Trident is a high level API on top of Storm which provides functions 

like stream joins, groupings, filters etc. Also Trident has exactly-once processing guarantees.

• The project was originally developed at Twitter for processing Tweets from users and was donated to ASF in 2013.

• Storm has being used in very large deployments in Fortune 500 companies like Twitter and Yahoo.

Page 4: Big Data Open Source Software  and Projects ABDS in Summary XIV: Level 14B

Apache Samza (LinkedIn)

• http://samza.incubator.apache.org/• Similar to Apache Storm, Apache Samza is a distributed real 

time computation framework for processing streaming data.• Apache Samza is built on top of Apache Kafka and Apache 

Yarn. Samza uses Kafka as its messaging layer and Yarn for managing the cluster of nodes with Samza processes.

• Samza is scalable, fault tolerant and provides guaranteed message processing.

• Samza was originally developed at LinkedIn and was donated to ASF in 2013

Page 5: Big Data Open Source Software  and Projects ABDS in Summary XIV: Level 14B

Apache S4

• http://incubator.apache.org/s4/• Apache S4 is a distributed real time computation framework 

for processing unbounded streams of data.• Unlike Storm and Samza S4 provides a key value based system 

for processing data• The system is scalable, fault tolerant and provides guaranteed 

message processing.• S4 was originally developed at Yahoo and was donated to ASF 

in 2011• S4 isn’t popular as Apache Storm

Page 6: Big Data Open Source Software  and Projects ABDS in Summary XIV: Level 14B

Databus (LinkedIn)

• Closed source Databus http://data.linkedin.com/projects/databus • Databus provides a timeline-consistent stream of change capture events for a database. 

It enables applications to watch a database, view and process updates in near real-time. • Databus provides a complete after-image of every new/changed record as well as 

deletes, while maintaining timeline consistency and transactional boundaries. • The application integration is decoupled from the source database, and each application 

integration is isolated, which allows for parallel development and rapid innovation.• Databus has a few key parts:

– a database connector to watch changes and maintain a clock or sequence value– an in-memory relay that keeps recent changes for efficient retrieval– a bootstrap service/database that enables long lookback queries (including from the beginning 

of time)– a client that provides a simple API to get changes since a point in time

• To use databus, the consuming application simply maintains a high watermark, and periodically requests all changes since that point in time using the Databus client. Each consuming application maintains its own high watermark, which provides isolation from one another

Page 7: Big Data Open Source Software  and Projects ABDS in Summary XIV: Level 14B

Google MillWheel

• http://research.google.com/pubs/pub41378.html• MillWheel is a distributed real time computation framework by 

Google.• Provides scalable, fault tolerant and exactly once message processing 

guarantees.• The key data abstraction of the MillWheel is Key-Value pairs and data 

is processed in a directed acyclic graph where nodes are the computation nodes.

• The project is not open source and is planned to be available to general public through Google Cloud platform as a SaaS.

• Similar functionality to Apache Storm• Part of Google Cloud Dataflow http://

googlecloudplatform.blogspot.com/2014/06/sneak-peek-google-cloud-dataflow-a-cloud-native-data-processing-service.html that also has Google Pub-Sub and FlumeJava

• See Amazon Kinesis http://aws.amazon.com/kinesis/ which combines Pub-Sub and Apache Storm capabilities