SlideShare a Scribd company logo
1 of 41
Download to read offline
Big Data
Fundamentals

.

Raj Jain
Washington University in Saint Louis
Saint Louis, MO 63130
Jain@cse.wustl.edu
These slides and audio/video recordings of this class lecture are at:
http://www.cse.wustl.edu/~jain/cse570-13/
Washington University in St. Louis

http://www.cse.wustl.edu/~jain/cse570-13/

10-1

©2013 Raj Jain
Overview
1.
2.
3.
4.
5.

Why Big Data?
Terminology
Key Technologies: Google File System, MapReduce,
Hadoop
Hadoop and other database tools
Types of Databases

Ref: J. Hurwitz, et al., “Big Data for Dummies,” Wiley, 2013, ISBN:978-1-118-50422-2
http://www.cse.wustl.edu/~jain/cse570-13/
Washington University in St. Louis

10-2

©2013 Raj Jain
Big Data






Data is measured by 3V's:
Volume: TB
Velocity: TB/sec. Speed of creation or change
Variety: Type (Text, audio, video, images, geospatial, ...)
Increasing processing power, storage capacity, and networking
have caused data to grow in all 3 dimensions.

Volume, Location, Velocity, Churn, Variety,
Veracity (accuracy, correctness, applicability)
 Examples: social network data, sensor networks,
Internet Search, Genomics, astronomy, …


Washington University in St. Louis

http://www.cse.wustl.edu/~jain/cse570-13/

10-3

©2013 Raj Jain
Why Big Data Now?
1.
2.
3.
4.

5.

Low cost storage to store data that was discarded earlier
Powerful multi-core processors
Low latency possible by distributed computing: Compute
clusters and grids connected via high-speed networks
Virtualization  Partition, Aggregate, isolate resources in any
size and dynamically change it  Minimize latency for any
scale
Affordable storage and computing with minimal man power
via clouds
 Possible because of advances in Networking

Washington University in St. Louis

http://www.cse.wustl.edu/~jain/cse570-13/

10-4

©2013 Raj Jain
Why Big Data Now? (Cont)
6.
7.
8.

9.
10.

Better understanding of task distribution (MapReduce),
computing architecture (Hadoop),
Advanced analytical techniques (Machine learning)
Managed Big Data Platforms: Cloud service providers, such
as Amazon Web Services provide Elastic MapReduce, Simple
Storage Service (S3) and HBase – column oriented database.
Google’ BigQuery and Prediction API.
Open-source software: OpenStack, PostGresSQL
March 12, 2012: Obama announced $200M for Big Data
research. Distributed via NSF, NIH, DOE, DoD, DARPA, and
USGS (Geological Survey)

Washington University in St. Louis

http://www.cse.wustl.edu/~jain/cse570-13/

10-5

©2013 Raj Jain
Big Data Applications




Monitor premature infants to alert when interventions is needed
Predict machine failures in manufacturing
Prevent traffic jams, save fuel, reduce pollution

Washington University in St. Louis

http://www.cse.wustl.edu/~jain/cse570-13/

10-6

©2013 Raj Jain
ACID Requirements







Atomicity: All or nothing. If anything fails, entire transaction
fails. Example, Payment and ticketing.
Consistency: If there is error in input, the output will not be
written to the database. Database goes from one valid state to
another valid states. Valid=Does not violate any defined rules.
Isolation: Multiple parallel transactions will not interfere with
each other.
Durability: After the output is written to the database, it stays
there forever even after power loss, crashes, or errors.
Relational databases provide ACID while non-relational
databases aim for BASE (Basically Available, Soft, and
Eventual Consistency)

Ref: http://en.wikipedia.org/wiki/ACID
Washington University in St. Louis

http://www.cse.wustl.edu/~jain/cse570-13/

10-7

©2013 Raj Jain
Terminology









Structured Data: Data that has a pre-set format, e.g., Address
Books, product catalogs, banking transactions,
Unstructured Data: Data that has no pre-set format. Movies,
Audio, text files, web pages, computer programs, social media,
Semi-Structured Data: Unstructured data that can be put into
a structure by available format descriptions
80% of data is unstructured.
Batch vs. Streaming Data
Real-Time Data: Streaming data that needs to analyzed as it
comes in. E.g., Intrusion detection. Aka “Data in Motion”
Data at Rest: Non-real time. E.g., Sales analysis.
Metadata: Definitions, mappings, scheme

Ref: Michael Minelli, "Big Data, Big Analytics: Emerging Business Intelligence and Analytic Trends for Today's Businesses,"
Wiley, 2013, ISBN:'111814760X
http://www.cse.wustl.edu/~jain/cse570-13/
Washington University in St. Louis
©2013 Raj Jain

10-8
Relational Databases and SQL


Relational Database: Stores data in tables. A “Schema”
defines the tables, the fields in tables and relationships between
the two. Data is stored one column/attribute
Order Table

Customer Table

Order Number

Customer ID

Product ID

Quantity

Unit Price

Customer ID Customer Name Customer Address Gender Income Range

SQL (Structured Query Language): Most commonly used
language for creating, retrieving, updating, and deleting
(CRUD) data in a relational database
Example: To find the gender of customers who bought XYZ:
Select CustomerID, State, Gender, ProductID from “Customer
Table”, “Order Table” where ProductID = XYZ



Ref: http://en.wikipedia.org/wiki/Comparison_of_relational_database_management_systems
http://www.cse.wustl.edu/~jain/cse570-13/
Washington University in St. Louis

10-9

©2013 Raj Jain
Non-relational Databases







NoSQL: Not Only SQL. Any database that uses non-SQL
interfaces, e.g., Python, Ruby, C, etc. for retrieval.
Typically store data in key-value pairs.
Not limited to rows or columns. Data structure and query is
specific to the data type
High-performance in-memory databases
RESTful (Representational State Transfer) web-like APIs
Eventual consistency: BASE in place of ACID

Washington University in St. Louis

http://www.cse.wustl.edu/~jain/cse570-13/

10-10

©2013 Raj Jain
NewSQL Databases






Overcome scaling limits of MySQL
Same scalable performance as NoSQL but using SQL
Providing ACID
Also called Scale-out SQL
Generally use distributed processing.

Ref: http://en.wikipedia.org/wiki/NewSQL
Washington University in St. Louis

http://www.cse.wustl.edu/~jain/cse570-13/

10-11

©2013 Raj Jain
Columnar Databases
ID
101
105
106




Name Salary
Smith
10000
Jones
20000
Jones
15000

In Relational databases, data in each row of the table is stored
together: 001:101,Smith,10000; 002:105,Jones,20000; 003:106,John;15000
 Easy to find all information about a person.
 Difficult to answer queries about the aggregate:
 How many people have salary between 12k-15k?
In Columnar databases, data in each column is stored together.

101:001,105:002,106:003; Smith:001, Jones:002,003; 10000:001, 20000:002, 150000:003




Easy to get column statistics
Very easy to add columns
Good for data with high variety  simply add columns

Ref: http://en.wikipedia.org/wiki/Column-oriented_DBMS
http://www.cse.wustl.edu/~jain/cse570-13/
Washington University in St. Louis

10-12

©2013 Raj Jain
Types of Databases
Relational Databases: PostgreSQL, SQLite, MySQL
 NewSQL Databases: Scale-out using distributed processing
Non-relational Databases:
 Key-Value Pair (KVP) Databases: Data is stored as
Key:Value, e.g., Riak Key-Value Database
 Document Databases: Store documents or web pages, e.g.,
MongoDB, CouchDB
 Columnar Databases: Store data in columns, e.g., HBase
 Graph Databases: Stores nodes and relationship, e.g., Neo4J
 Spatial Databases: For map and nevigational data, e.g.,
OpenGEO, PortGIS, ArcSDE
 In-Memory Database (IMDB): All data in memory. For real
time applications
Cloud Databases: Any data that is run in a cloud using IAAS,
VM Image, DAAS
http://www.cse.wustl.edu/~jain/cse570-13/


Washington University in St. Louis

©2013 Raj Jain

10-13
Google File System





Commodity computers serve as “Chunk Servers” and store
multiple copies of data blocks
A master server keeps a map of all chunks of files and location
of those chunks.
All writes are propagated by the writing chunk server to other
chunk servers that have copies.
Master server controls all read-write accesses
Name Space Block Map
Master Server
Chunk Server
B1

B2

B3

Chunk Server
B3

B2

B4

Chunk Server
Replicate

Chunk Server

B4

B4

B2

B1

B3

B1

Write
Ref: S. Ghemawat, et al., "The Google File System", OSP 2003, http://research.google.com/archive/gfs.html
http://www.cse.wustl.edu/~jain/cse570-13/
Washington University in St. Louis

10-14

©2013 Raj Jain
BigTable






Distributed storage system built on Google File System
Data stored in rows and columns
Optimized for sparse, persistent, multidimensional sorted map.
Uses commodity servers
Not distributed outside of Google but accessible via Google
App Engine

Ref: F. Chang, et al., "Bigtable: A Distributed Storage System for Structured Data," 2006,
http://research.google.com/archive/bigtable.html
http://www.cse.wustl.edu/~jain/cse570-13/
Washington University in St. Louis

10-15

©2013 Raj Jain
MapReduce







Software framework to process massive amounts of
unstructured data in parallel
Goals:
 Distributed: over a large number of inexpensive processors
 Scalable: expand or contract as needed
 Fault tolerant: Continue in spite of some failures
Map: Takes a set of data and converts it into another set of
key-value pairs..
Reduce: Takes the output from Map as input and outputs a
smaller set of key-value pairs.
Shuffle

Input

Map

Reduce

Output

Reduce

Output

Map
Map

Ref: J. Dean and S. Ghemawat, “MapReduce: Simplified Data Processing on Large Clusters,” OSDI 2004,
http://research.google.com/archive/mapreduce-osdi04.pdf
http://www.cse.wustl.edu/~jain/cse570-13/
Washington University in St. Louis

10-16

©2013 Raj Jain
MapReduce Example









100 files with daily temperature in two cities.
Each file has 10,000 entries.
For example, one file may have (Toronto 20), (New York 30),
..
Our goal is to compute the maximum temperature in the two
cities.
Assign the task to 100 Map processors each works on one file.
Each processor outputs a list of key-value pairs, e.g., (Toronto
30), New York (65), …
Now we have 100 lists each with two elements. We give this
list to two reducers – one for Toronto and another for New
York.
The reducer produce the final answer: (Toronto 55), (New
York 65)

Ref: IBM. “What is MapReduce?,” http://www-01.ibm.com/software/data/infosphere/hadoop/mapreduce/
http://www.cse.wustl.edu/~jain/cse570-13/
Washington University in St. Louis

10-17

©2013 Raj Jain
MapReduce Optimization






Scheduling:
 Task is broken into pieces that can be computed in parallel
 Map tasks are scheduled before the reduce tasks.
 If there are more map tasks than processors, map tasks
continue until all of them are complete.
 A new strategy is used to assign Reduce jobs so that it can be
done in parallel
 The results are combined.
Synchronization: The map jobs should be comparables so that
they finish together. Similarly reduce jobs should be comparable.
Code/Data Collocation: The data for map jobs should be at the
processors that are going to map.
Fault/Error Handling: If a processor fails, its task needs to be
assigned to another processor.

Washington University in St. Louis

http://www.cse.wustl.edu/~jain/cse570-13/

10-18

©2013 Raj Jain
Story of Hadoop





Doug Cutting at Yahoo and Mike Caferella were working on
creating a project called “Nutch” for large web index.
They saw Google papers on MapReduce and Google File
System and used it
Hadoop was the name of a yellow plus elephant toy that
Doug’s son had.
In 2008 Amr left Yahoo to found Cloudera.
In 2009 Doug joined Cloudera.

Ref: Michael Minelli, "Big Data, Big Analytics: Emerging Business Intelligence and Analytic Trends for Today's Businesses,"
Wiley, 2013, ISBN:'111814760X
http://www.cse.wustl.edu/~jain/cse570-13/
Washington University in St. Louis
©2013 Raj Jain

10-19
Hadoop






An open source implementation of MapReduce framework
Three components:
 Hadoop Common Package (files needed to start Hadoop)
 Hadoop Distributed File System: HDFS
 MapReduce Engine
HDFS requires data to be broken into blocks. Each block is
stored on 2 or more data nodes on different racks.
Name node: Manages the file system name space
 keeps track of where each block is.
Name Space Block Map
Name Node
B1

B2

B3

B3

B2

B4

Replicate

B4

B2

B1

B4

B3

B1

Write
Washington University in St. Louis

http://www.cse.wustl.edu/~jain/cse570-13/

10-20

©2013 Raj Jain
Hadoop (Cont)





Data node: Constantly ask the job tracker if there is something
for them to do
 Used to track which data nodes are up or down
Job tracker: Assigns the map job to task tracker nodes that
have the data or are close to the data (same rack)
Task Tracker: Keep the work as close to the data as possible.
Switch

Switch

Job Tracker

Name Node

DN+TT
DN+TT

DN+TT
DN+TT

Rack

Washington University in St. Louis

Rack

Switch
Sec. Job Tracker

DN+TT
DN+TT
Rack

Switch
Sec. NN
DN+TT
DN+TT
Rack

http://www.cse.wustl.edu/~jain/cse570-13/

10-21

DN= Data Node
TT = Task Tracker

©2013 Raj Jain
Hadoop (Cont)




Data nodes get the data if necessary, do the map function, and
write the results to disks.
Job tracker than assigns the reduce jobs to data nodes that have
the map output or close to it.
All data has a check attached to it to verify its integrity.

Washington University in St. Louis

http://www.cse.wustl.edu/~jain/cse570-13/

10-22

©2013 Raj Jain
Apache Hadoop Tools







Apache Hadoop: Open source Hadoop framework in Java.
Consists of Hadoop Common Package (filesystem and OS
abstractions), a MapReduce engine (MapReduce or YARN), and
Hadoop Distributed File System (HDFS)
Apache Mahout: Machine learning algorithms for collaborative
filtering, clustering, and classification using Hadoop
Apache Hive: Data warehouse infrastructure for Hadoop.
Provides data summarization, query, and analysis using a SQLlike language called HiveQL.
Stores data in an embedded Apache Derby database.
Apache Pig: Platform for creating MapReduce programs using a
high-level “Pig Latin” language. Makes MapReduce
programming similar to SQL. Can be extended by user defined
functions written in Java, Python, etc.

Ref: http://hadoop.apache.org/, http://mahout.apache.org/, http://hive.apache.org/, http://pig.apache.org/
http://www.cse.wustl.edu/~jain/cse570-13/
Washington University in St. Louis

10-23

©2013 Raj Jain
Apache Hadoop Tools (Cont)







Apache Avro: Data serialization system.
Avro IDL is the interface description language syntax for Avro.
Apache HBase: Non-relational DBMS part of the Hadoop
project. Designed for large quantities of sparse data (like
BigTable). Provides a Java API for map reduce jobs to access
the data. Used by Facebook.
Apache ZooKeeper: Distributed configuration service,
synchronization service, and naming registry for large
distributed systems like Hadoop.
Apache Cassandra: Distributed database management system.
Highly scalable.

Ref: http://avro.apache.org/, http://cassandra.apache.org/, http://hbase.apache.org/ , http://zookeeper.apache.org/
http://www.cse.wustl.edu/~jain/cse570-13/
Washington University in St. Louis

10-24

©2013 Raj Jain
Apache Hadoop Tools (Cont)






Apache Ambari: A web-based tool for provision, managing
and monitoring Apache Hadoop cluster
Apache Chukwa: A data collection system for managing large
distributed systems
Apache Sqoop: Tool for transferring bulk data between
structured databases and Hadoop
Apache Oozie: A workflow scheduler system to manage
Apache Hadoop jobs

Ref: http://incubator.apache.org/chukwa/, http://oozie.apache.org/, https://sqoop.apache.org/, http://incubator.apache.org/ambari/
http://www.cse.wustl.edu/~jain/cse570-13/
Washington University in St. Louis
©2013 Raj Jain

10-25
Apache Other Big Data Tools







Apache Accumulo: Sorted distributed key/value store based
on Google’s BigTable design. 3rd Most popular NOSQL widecolumn system. Provides cell-level security. Users can see only
authorized keys and values. Originally funded by DoD.
Apache Thrift: IDL to create services using many languages
including C#, C++, Java, Perl, Python, Ruby, etc.
Apache Beehive: Java application framework to allow
development of Java based applications.
Apache Derby: A RDBMS that can be embedded in Java
programs. Needs only 2.6MB disk space. Supports JDBC (Java
Database Connectivity) and SQL.

Ref: http://en.wikipedia.org/wiki/Apache_Accumulo, http://en.wikipedia.org/wiki/Apache_Thrift,
http://en.wikipedia.org/wiki/Apache_Beehive, http://en.wikipedia.org/wiki/Apache_derby,
http://www.cse.wustl.edu/~jain/cse570-13/
Washington University in St. Louis

10-26

©2013 Raj Jain
Other Big Data Tools







Cascading: Open Source software abstraction layer for
Hadoop.
Allows developers to create a .jar file that describes their data
sources, analysis, and results without knowing MapReduce.
Hadoop .jar file contains Cascading .jar files.
Storm: Open source event processor and distributed
computation framework alternative to MapReduce. Allows
batch distributed processing of streaming data using a sequence
of transformations.
Elastic MapReduce (EMR): Automated provisioning of the
Hadoop cluster, running, and terminating. Aka Hive.
HyperTable: Hadoop compatible database system.

Ref: http://en.wikipedia.org/wiki/Cascading, http://en.wikipedia.org/wiki/Hypertable,
http://en.wikipedia.org/wiki/Storm_%28event_processor%29
http://www.cse.wustl.edu/~jain/cse570-13/
Washington University in St. Louis

10-27

©2013 Raj Jain
Other Big Data Tools (Cont)







Filesysem in User-space (FUSE): Users can create their own
virtual file systems. Available for Linux, Android, OSX, etc.
Cloudera Impala: Open source SQL query execution on
HDFS and Apache HBase data
MapR Hadoop: Enhanced versions of Apache Hadoop
supported by MapR. Google, EMC, Amazon use MapR
Hadoop.
Big SQL: SQL interface to Hadoop (IBM)
Hadapt: Analysis of massive data sets using SQL with Apache
Hadoop.

Ref: http://en.wikipedia.org/wiki/Cloudera_Impala
http://en.wikipedia.org/wiki/Filesystem_in_Userspace, http://en.wikipedia.org/wiki/Big_SQL,
http://en.wikipedia.org/wiki/Cloudera_Impala , http://en.wikipedia.org/wiki/MapR, http://en.wikipedia.org/wiki/Hadapt
http://www.cse.wustl.edu/~jain/cse570-13/
Washington University in St. Louis
©2013 Raj Jain

10-28
Analytics
Analytics: Guide decision making by discovering patterns in data
using statistics, programming, and operations research.
 SQL Analytics: Count, Mean, OLAP
 Descriptive Analytics: Analyzing historical data to explain past
success or failures.
 Predictive Analytics: Forecasting using historical data.
 Prescriptive Analytics: Suggest decision options. Continually
update these options with new data.
 Data Mining: Discovering patterns, trends, and relationships
using Association rules, Clustering, Feature extraction
 Simulation: Discrete Event Simulation, Monte Carlo, Agent-based
 Optimization: Linear, non-Linear
 Machine Learning: An algorithm technique for learning from
empirical data and then using those lessons to predict future
outcomes of new data
Ref: Michael Minelli, "Big Data, Big Analytics: Emerging Business Intelligence and Analytic Trends for Today's Businesses,"
Wiley, 2013, ISBN:111814760X
http://www.cse.wustl.edu/~jain/cse570-13/
Washington University in St. Louis
©2013 Raj Jain

10-29
Analytics (Cont)




Web Analytics: Analytics of Web Accesses and Web users.
Learning Analytics: Analytics of learners (students)
Data Science: Field of data analytics

Washington University in St. Louis

http://www.cse.wustl.edu/~jain/cse570-13/

10-30

©2013 Raj Jain
Summary
1.
2.
3.

4.
5.

Big data has become possible due to low cost storage, high
performance servers, high-speed networking, new analytics
Google File System, BigTable Database, and MapReduce
framework sparked the development of Apache Hadoop.
Key components of Hadoop systems are HDFS, Avro data
serialization system, MapReduce or YARN computation
engine, Pig Latin high level programming language, Hive data
warehouse, HBase database, and ZooKeeper for reliable
distributed coordination.
Discovering patterns in data and using them is called
Analytics. It can be descriptive, predictive, or prescriptive
Types of Databases: Relational, SQL, NoSQL, NewSQL,
Key-Value Pair (KVP), Document, Columnar, Graph, and
Spatial

Washington University in St. Louis

http://www.cse.wustl.edu/~jain/cse570-13/

10-31

©2013 Raj Jain
Reading List





J. Hurwitz, et al., “Big Data for Dummies,” Wiley, 2013,
ISBN:978-1-118-50422-2 (Safari Book)
A. Shieh, “Sharing the Data Center Network,” NSDI 2011,
http://www.usenix.org/event/nsdi11/tech/full_papers/Shieh.pdf
IBM. “What is MapReduce?,” http://www01.ibm.com/software/data/infosphere/hadoop/mapreduce/
Michael Minelli, "Big Data, Big Analytics: Emerging Business
Intelligence and Analytic Trends for Today's Businesses,"
Wiley, 2013, ISBN:111814760X

Washington University in St. Louis

http://www.cse.wustl.edu/~jain/cse570-13/

10-32

©2013 Raj Jain
Wikipedia Links















http://en.wikipedia.org/wiki/Database
http://en.wikipedia.org/wiki/Big_data
http://en.wikipedia.org/wiki/Apache_Hadoop
http://en.wikipedia.org/wiki/ACID
http://en.wikipedia.org/wiki/Analytics
http://en.wikipedia.org/wiki/Prescriptive_analytics
http://en.wikipedia.org/wiki/Predictive_analytics
http://en.wikipedia.org/wiki/Prescriptive_Analytics
http://en.wikipedia.org/wiki/Apache_HBase
http://en.wikipedia.org/wiki/Apache_Hive
http://en.wikipedia.org/wiki/Apache_Mahout
http://en.wikipedia.org/wiki/Apache_Pig
http://en.wikipedia.org/wiki/Apache_ZooKeeper
http://en.wikipedia.org/wiki/Apache_Accumulo

Washington University in St. Louis

http://www.cse.wustl.edu/~jain/cse570-13/

10-33

©2013 Raj Jain
Wikipedia Links (Cont)















http://en.wikipedia.org/wiki/Apache_Avro
http://en.wikipedia.org/wiki/Apache_Beehive
http://en.wikipedia.org/wiki/Apache_Cassandra
http://en.wikipedia.org/wiki/Relational_database
http://en.wikipedia.org/wiki/Relational_database_management_system
http://en.wikipedia.org/wiki/Column-oriented_DBMS
http://en.wikipedia.org/wiki/Spatial_database
http://en.wikipedia.org/wiki/SQL
http://en.wikipedia.org/wiki/NoSQL
http://en.wikipedia.org/wiki/NewSQL
http://en.wikipedia.org/wiki/MySQL
http://en.wikipedia.org/wiki/Create,_read,_update_and_delete
http://en.wikipedia.org/wiki/Unstructured_data
http://en.wikipedia.org/wiki/Semi-structured_data

Washington University in St. Louis

http://www.cse.wustl.edu/~jain/cse570-13/

10-34

©2013 Raj Jain
Wikipedia Links (Cont)












http://en.wikipedia.org/wiki/Apache_derby
http://en.wikipedia.org/wiki/Apache_Thrift
http://en.wikipedia.org/wiki/Big_SQL
http://en.wikipedia.org/wiki/Cascading
http://en.wikipedia.org/wiki/Cloudera_Impala
http://en.wikipedia.org/wiki/Comparison_of_relational_database_managem
ent_systems
http://en.wikipedia.org/wiki/Filesystem_in_Userspace
http://en.wikipedia.org/wiki/Hadapt
http://en.wikipedia.org/wiki/Hypertable
http://en.wikipedia.org/wiki/MapR
http://en.wikipedia.org/wiki/Storm_%28event_processor%29

Washington University in St. Louis

http://www.cse.wustl.edu/~jain/cse570-13/

10-35

©2013 Raj Jain
References


















J. Dean and S. Ghemawat, “MapReduce: Simplified Data Processing on
Large Clusters,” OSDI 2004,
http://research.google.com/archive/mapreduce-osdi04.pdf
S. Ghemawat, et al., "The Google File System", OSP 2003,
http://research.google.com/archive/gfs.html
F. Chang, et al., "Bigtable: A Distributed Storage System for Structured
Data," 2006, http://research.google.com/archive/bigtable.html
http://avro.apache.org/
http://cassandra.apache.org/
http://hadoop.apache.org/
http://hbase.apache.org/
http://hive.apache.org/
http://incubator.apache.org/ambari/
http://incubator.apache.org/chukwa/
http://mahout.apache.org/
http://oozie.apache.org/
http://pig.apache.org/
http://zookeeper.apache.org/
https://sqoop.apache.org/

Washington University in St. Louis

http://www.cse.wustl.edu/~jain/cse570-13/

10-36

©2013 Raj Jain
Acronyms

















ACID
API
ArcSDE
BASE
CRUD
DAAS
DARPA
DBMS
DN
DoD
EMC
FUSE
HDFS
IAAS
IBM
ID

Atomicity, Consistency, Isolation, Durability
Application Programming Interface
Arc Spatial Database Engine
Basically Available, Soft, and Eventual Consistency
Create, Retrieve, Update, and Delete
Database as a Service
Defense Advanced Research Project Agancy
Database Management System
Data Node
Department of Defense
Name of a company
Filesysem in User-space
Hadoop Distributed File System
Infrastructure as a Service
International Business Machines
Identifier

Washington University in St. Louis

http://www.cse.wustl.edu/~jain/cse570-13/

10-37

©2013 Raj Jain
Acronyms (Cont)

















IDL
IMDB
JDBC
KVP
NewSQL
NoSQL
OLAP
OpenGEO
OSDI
OSX
PortGIS
PostGresSQL
RDBMS
REST
SQL
TB

Interface Description Language
In-Memory Database
Java Database Connectivity
Key-Value Pair
New SQL
Not Only SQL
Online Analytical Processing
Operating Systems Design and Implementation
Apple Mac Operating System version 10
Port Geographical Information System
PostGress SQL
Relational Database Management System
Representation State Transfer
Structured Query Language
Terabyte

Washington University in St. Louis

http://www.cse.wustl.edu/~jain/cse570-13/

10-38

©2013 Raj Jain
Acronyms (Cont)






TT
US
USGS
VM
YARN

Task Tracker
United States
United States Geological Survey
Virtual Machine
Yet Another Resource Negotiator

Washington University in St. Louis

http://www.cse.wustl.edu/~jain/cse570-13/

10-39

©2013 Raj Jain
Quiz 10A






The 3V's that define Big Data are _______________,
_______________, and _______________
ACID stands for _______________, _______________,
_______________, and _______________
BASE stands for _______________ _______________,
_______________, and _______________ Consistency.
_______________ data is the data that has pre-set format.
Data in _______________ is the data that is streaming.

Your Name: ________________________
Washington University in St. Louis

http://www.cse.wustl.edu/~jain/cse570-13/

10-41

©2013 Raj Jain
Solution to Quiz 10A






The 3V's that define Big Data are *Volume*, *velocity*, and
*variety*
ACID stands for *Atomicity*, *Consistency*, *Isolation*, and
*Durability*
BASE stands for *Basically* *Available*, *Soft*, and
*Eventual* Consistency.
*Structured* data is the data that has pre-set format.
Data in *Motion* is the data that is streaming.

Washington University in St. Louis

http://www.cse.wustl.edu/~jain/cse570-13/

10-42

©2013 Raj Jain

More Related Content

What's hot

What's hot (20)

Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Introduction to data science
Introduction to data scienceIntroduction to data science
Introduction to data science
 
Data Science
Data ScienceData Science
Data Science
 
The Future of Data Science
The Future of Data ScienceThe Future of Data Science
The Future of Data Science
 
Big Data
Big DataBig Data
Big Data
 
Big Data Trends
Big Data TrendsBig Data Trends
Big Data Trends
 
Big Data
Big DataBig Data
Big Data
 
Big data ppt
Big data pptBig data ppt
Big data ppt
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Big Data
Big DataBig Data
Big Data
 
Introduction to Big Data
Introduction to Big Data Introduction to Big Data
Introduction to Big Data
 
Big data lecture notes
Big data lecture notesBig data lecture notes
Big data lecture notes
 
Data science Big Data
Data science Big DataData science Big Data
Data science Big Data
 
Big data introduction
Big data introductionBig data introduction
Big data introduction
 
Data science
Data scienceData science
Data science
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Introduction on Data Science
Introduction on Data ScienceIntroduction on Data Science
Introduction on Data Science
 
Hadoop File system (HDFS)
Hadoop File system (HDFS)Hadoop File system (HDFS)
Hadoop File system (HDFS)
 
Big data
Big dataBig data
Big data
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 

Similar to Big Data Fundamentals

Myria: Analytics-as-a-Service for (Data) Scientists
Myria: Analytics-as-a-Service for (Data) ScientistsMyria: Analytics-as-a-Service for (Data) Scientists
Myria: Analytics-as-a-Service for (Data) ScientistsUniversity of Washington
 
Dash: Data Sharing Made Easy
Dash: Data Sharing Made EasyDash: Data Sharing Made Easy
Dash: Data Sharing Made EasyJohn Kratz
 
sybca-bigdata-ppt.pptx
sybca-bigdata-ppt.pptxsybca-bigdata-ppt.pptx
sybca-bigdata-ppt.pptxcalf_ville86
 
BDA Mod1@AzDOCUMENTS.in.pdf
BDA Mod1@AzDOCUMENTS.in.pdfBDA Mod1@AzDOCUMENTS.in.pdf
BDA Mod1@AzDOCUMENTS.in.pdfJayanthSram
 
Big Data Mining - Classification, Techniques and Issues
Big Data Mining - Classification, Techniques and IssuesBig Data Mining - Classification, Techniques and Issues
Big Data Mining - Classification, Techniques and IssuesKaran Deep Singh
 
Introduction to DBMS.pptx
Introduction to DBMS.pptxIntroduction to DBMS.pptx
Introduction to DBMS.pptxShwetha Ch
 
Repository Fringe 2016 - Survey Documentation and Analysis
Repository Fringe 2016 - Survey Documentation and AnalysisRepository Fringe 2016 - Survey Documentation and Analysis
Repository Fringe 2016 - Survey Documentation and AnalysisEDINA, University of Edinburgh
 
Ensuring compliance of patient data with big data
Ensuring compliance of patient data with big dataEnsuring compliance of patient data with big data
Ensuring compliance of patient data with big dataAyad Shammout
 
HKU Data Curation MLIM7350 Class 8
HKU Data Curation MLIM7350 Class 8HKU Data Curation MLIM7350 Class 8
HKU Data Curation MLIM7350 Class 8Scott Edmunds
 
Discussion 1 The incorrect implementation of databases ou
Discussion 1 The incorrect implementation of databases ouDiscussion 1 The incorrect implementation of databases ou
Discussion 1 The incorrect implementation of databases ouhuttenangela
 
Big Data in Practice.pdf
Big Data in Practice.pdfBig Data in Practice.pdf
Big Data in Practice.pdfTom Tan
 
Networking Issues For Big Data
Networking Issues For Big DataNetworking Issues For Big Data
Networking Issues For Big Datarjain51
 
Identifying and analyzing the transient and permanent barriers for big data
Identifying and analyzing the transient and permanent barriers for big dataIdentifying and analyzing the transient and permanent barriers for big data
Identifying and analyzing the transient and permanent barriers for big datasarfraznawaz
 

Similar to Big Data Fundamentals (20)

Myria: Analytics-as-a-Service for (Data) Scientists
Myria: Analytics-as-a-Service for (Data) ScientistsMyria: Analytics-as-a-Service for (Data) Scientists
Myria: Analytics-as-a-Service for (Data) Scientists
 
Dash: Data Sharing Made Easy
Dash: Data Sharing Made EasyDash: Data Sharing Made Easy
Dash: Data Sharing Made Easy
 
eResearch New Zealand Keynote
eResearch New Zealand KeynoteeResearch New Zealand Keynote
eResearch New Zealand Keynote
 
sybca-bigdata-ppt.pptx
sybca-bigdata-ppt.pptxsybca-bigdata-ppt.pptx
sybca-bigdata-ppt.pptx
 
BIG DATA AND HADOOP.pdf
BIG DATA AND HADOOP.pdfBIG DATA AND HADOOP.pdf
BIG DATA AND HADOOP.pdf
 
BDA Mod1@AzDOCUMENTS.in.pdf
BDA Mod1@AzDOCUMENTS.in.pdfBDA Mod1@AzDOCUMENTS.in.pdf
BDA Mod1@AzDOCUMENTS.in.pdf
 
Big Data Mining - Classification, Techniques and Issues
Big Data Mining - Classification, Techniques and IssuesBig Data Mining - Classification, Techniques and Issues
Big Data Mining - Classification, Techniques and Issues
 
TSE_Pres12.pptx
TSE_Pres12.pptxTSE_Pres12.pptx
TSE_Pres12.pptx
 
Introduction to DBMS.pptx
Introduction to DBMS.pptxIntroduction to DBMS.pptx
Introduction to DBMS.pptx
 
Unit 1
Unit 1Unit 1
Unit 1
 
Repository Fringe 2016 - Survey Documentation and Analysis
Repository Fringe 2016 - Survey Documentation and AnalysisRepository Fringe 2016 - Survey Documentation and Analysis
Repository Fringe 2016 - Survey Documentation and Analysis
 
Ensuring compliance of patient data with big data
Ensuring compliance of patient data with big dataEnsuring compliance of patient data with big data
Ensuring compliance of patient data with big data
 
Resume
ResumeResume
Resume
 
HKU Data Curation MLIM7350 Class 8
HKU Data Curation MLIM7350 Class 8HKU Data Curation MLIM7350 Class 8
HKU Data Curation MLIM7350 Class 8
 
Discussion 1 The incorrect implementation of databases ou
Discussion 1 The incorrect implementation of databases ouDiscussion 1 The incorrect implementation of databases ou
Discussion 1 The incorrect implementation of databases ou
 
Big Data in Practice.pdf
Big Data in Practice.pdfBig Data in Practice.pdf
Big Data in Practice.pdf
 
Networking Issues For Big Data
Networking Issues For Big DataNetworking Issues For Big Data
Networking Issues For Big Data
 
Identifying and analyzing the transient and permanent barriers for big data
Identifying and analyzing the transient and permanent barriers for big dataIdentifying and analyzing the transient and permanent barriers for big data
Identifying and analyzing the transient and permanent barriers for big data
 
BrightTALK - Semantic AI
BrightTALK - Semantic AI BrightTALK - Semantic AI
BrightTALK - Semantic AI
 
Cal Essay
Cal EssayCal Essay
Cal Essay
 

More from rjain51

Internet of Things: Challenges and Issues
Internet of Things: Challenges and IssuesInternet of Things: Challenges and Issues
Internet of Things: Challenges and Issuesrjain51
 
SDN and NFV: Facts, Extensions, and Carrier Opportunities
SDN and NFV: Facts, Extensions, and Carrier OpportunitiesSDN and NFV: Facts, Extensions, and Carrier Opportunities
SDN and NFV: Facts, Extensions, and Carrier Opportunitiesrjain51
 
Introduction to Internet of Things
Introduction to Internet of ThingsIntroduction to Internet of Things
Introduction to Internet of Thingsrjain51
 
Introduction to Network Function Virtualization (NFV)
Introduction to Network Function Virtualization (NFV)Introduction to Network Function Virtualization (NFV)
Introduction to Network Function Virtualization (NFV)rjain51
 
Introduction to Software Defined Networking (SDN)
Introduction to Software Defined Networking (SDN)Introduction to Software Defined Networking (SDN)
Introduction to Software Defined Networking (SDN)rjain51
 
OpenFlow Controllers and Tools
OpenFlow Controllers and ToolsOpenFlow Controllers and Tools
OpenFlow Controllers and Toolsrjain51
 
Introduction to OpenFlow
Introduction to OpenFlowIntroduction to OpenFlow
Introduction to OpenFlowrjain51
 
Network Virtualization in Cloud Data Centers
Network Virtualization in Cloud Data CentersNetwork Virtualization in Cloud Data Centers
Network Virtualization in Cloud Data Centersrjain51
 
LAN Extension and Network Virtualization for Cloud Computing using Layer 3 Pr...
LAN Extension and Network Virtualization for Cloud Computing using Layer 3 Pr...LAN Extension and Network Virtualization for Cloud Computing using Layer 3 Pr...
LAN Extension and Network Virtualization for Cloud Computing using Layer 3 Pr...rjain51
 
Data Center Networks:Virtual Bridging
Data Center Networks:Virtual BridgingData Center Networks:Virtual Bridging
Data Center Networks:Virtual Bridgingrjain51
 
Application Delivery Networking
Application Delivery NetworkingApplication Delivery Networking
Application Delivery Networkingrjain51
 
Carrier Ethernet
Carrier EthernetCarrier Ethernet
Carrier Ethernetrjain51
 
Storage Virtualization
Storage VirtualizationStorage Virtualization
Storage Virtualizationrjain51
 
Server Virtualization
Server VirtualizationServer Virtualization
Server Virtualizationrjain51
 
Data Center Ethernet
Data Center EthernetData Center Ethernet
Data Center Ethernetrjain51
 
Data Center Network Topologies
Data Center Network TopologiesData Center Network Topologies
Data Center Network Topologiesrjain51
 
Networking Protocols for Internet of Things
Networking Protocols for Internet of ThingsNetworking Protocols for Internet of Things
Networking Protocols for Internet of Thingsrjain51
 

More from rjain51 (17)

Internet of Things: Challenges and Issues
Internet of Things: Challenges and IssuesInternet of Things: Challenges and Issues
Internet of Things: Challenges and Issues
 
SDN and NFV: Facts, Extensions, and Carrier Opportunities
SDN and NFV: Facts, Extensions, and Carrier OpportunitiesSDN and NFV: Facts, Extensions, and Carrier Opportunities
SDN and NFV: Facts, Extensions, and Carrier Opportunities
 
Introduction to Internet of Things
Introduction to Internet of ThingsIntroduction to Internet of Things
Introduction to Internet of Things
 
Introduction to Network Function Virtualization (NFV)
Introduction to Network Function Virtualization (NFV)Introduction to Network Function Virtualization (NFV)
Introduction to Network Function Virtualization (NFV)
 
Introduction to Software Defined Networking (SDN)
Introduction to Software Defined Networking (SDN)Introduction to Software Defined Networking (SDN)
Introduction to Software Defined Networking (SDN)
 
OpenFlow Controllers and Tools
OpenFlow Controllers and ToolsOpenFlow Controllers and Tools
OpenFlow Controllers and Tools
 
Introduction to OpenFlow
Introduction to OpenFlowIntroduction to OpenFlow
Introduction to OpenFlow
 
Network Virtualization in Cloud Data Centers
Network Virtualization in Cloud Data CentersNetwork Virtualization in Cloud Data Centers
Network Virtualization in Cloud Data Centers
 
LAN Extension and Network Virtualization for Cloud Computing using Layer 3 Pr...
LAN Extension and Network Virtualization for Cloud Computing using Layer 3 Pr...LAN Extension and Network Virtualization for Cloud Computing using Layer 3 Pr...
LAN Extension and Network Virtualization for Cloud Computing using Layer 3 Pr...
 
Data Center Networks:Virtual Bridging
Data Center Networks:Virtual BridgingData Center Networks:Virtual Bridging
Data Center Networks:Virtual Bridging
 
Application Delivery Networking
Application Delivery NetworkingApplication Delivery Networking
Application Delivery Networking
 
Carrier Ethernet
Carrier EthernetCarrier Ethernet
Carrier Ethernet
 
Storage Virtualization
Storage VirtualizationStorage Virtualization
Storage Virtualization
 
Server Virtualization
Server VirtualizationServer Virtualization
Server Virtualization
 
Data Center Ethernet
Data Center EthernetData Center Ethernet
Data Center Ethernet
 
Data Center Network Topologies
Data Center Network TopologiesData Center Network Topologies
Data Center Network Topologies
 
Networking Protocols for Internet of Things
Networking Protocols for Internet of ThingsNetworking Protocols for Internet of Things
Networking Protocols for Internet of Things
 

Recently uploaded

Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 

Recently uploaded (20)

Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 

Big Data Fundamentals

  • 1. Big Data Fundamentals . Raj Jain Washington University in Saint Louis Saint Louis, MO 63130 Jain@cse.wustl.edu These slides and audio/video recordings of this class lecture are at: http://www.cse.wustl.edu/~jain/cse570-13/ Washington University in St. Louis http://www.cse.wustl.edu/~jain/cse570-13/ 10-1 ©2013 Raj Jain
  • 2. Overview 1. 2. 3. 4. 5. Why Big Data? Terminology Key Technologies: Google File System, MapReduce, Hadoop Hadoop and other database tools Types of Databases Ref: J. Hurwitz, et al., “Big Data for Dummies,” Wiley, 2013, ISBN:978-1-118-50422-2 http://www.cse.wustl.edu/~jain/cse570-13/ Washington University in St. Louis 10-2 ©2013 Raj Jain
  • 3. Big Data      Data is measured by 3V's: Volume: TB Velocity: TB/sec. Speed of creation or change Variety: Type (Text, audio, video, images, geospatial, ...) Increasing processing power, storage capacity, and networking have caused data to grow in all 3 dimensions. Volume, Location, Velocity, Churn, Variety, Veracity (accuracy, correctness, applicability)  Examples: social network data, sensor networks, Internet Search, Genomics, astronomy, …  Washington University in St. Louis http://www.cse.wustl.edu/~jain/cse570-13/ 10-3 ©2013 Raj Jain
  • 4. Why Big Data Now? 1. 2. 3. 4. 5. Low cost storage to store data that was discarded earlier Powerful multi-core processors Low latency possible by distributed computing: Compute clusters and grids connected via high-speed networks Virtualization  Partition, Aggregate, isolate resources in any size and dynamically change it  Minimize latency for any scale Affordable storage and computing with minimal man power via clouds  Possible because of advances in Networking Washington University in St. Louis http://www.cse.wustl.edu/~jain/cse570-13/ 10-4 ©2013 Raj Jain
  • 5. Why Big Data Now? (Cont) 6. 7. 8. 9. 10. Better understanding of task distribution (MapReduce), computing architecture (Hadoop), Advanced analytical techniques (Machine learning) Managed Big Data Platforms: Cloud service providers, such as Amazon Web Services provide Elastic MapReduce, Simple Storage Service (S3) and HBase – column oriented database. Google’ BigQuery and Prediction API. Open-source software: OpenStack, PostGresSQL March 12, 2012: Obama announced $200M for Big Data research. Distributed via NSF, NIH, DOE, DoD, DARPA, and USGS (Geological Survey) Washington University in St. Louis http://www.cse.wustl.edu/~jain/cse570-13/ 10-5 ©2013 Raj Jain
  • 6. Big Data Applications    Monitor premature infants to alert when interventions is needed Predict machine failures in manufacturing Prevent traffic jams, save fuel, reduce pollution Washington University in St. Louis http://www.cse.wustl.edu/~jain/cse570-13/ 10-6 ©2013 Raj Jain
  • 7. ACID Requirements      Atomicity: All or nothing. If anything fails, entire transaction fails. Example, Payment and ticketing. Consistency: If there is error in input, the output will not be written to the database. Database goes from one valid state to another valid states. Valid=Does not violate any defined rules. Isolation: Multiple parallel transactions will not interfere with each other. Durability: After the output is written to the database, it stays there forever even after power loss, crashes, or errors. Relational databases provide ACID while non-relational databases aim for BASE (Basically Available, Soft, and Eventual Consistency) Ref: http://en.wikipedia.org/wiki/ACID Washington University in St. Louis http://www.cse.wustl.edu/~jain/cse570-13/ 10-7 ©2013 Raj Jain
  • 8. Terminology         Structured Data: Data that has a pre-set format, e.g., Address Books, product catalogs, banking transactions, Unstructured Data: Data that has no pre-set format. Movies, Audio, text files, web pages, computer programs, social media, Semi-Structured Data: Unstructured data that can be put into a structure by available format descriptions 80% of data is unstructured. Batch vs. Streaming Data Real-Time Data: Streaming data that needs to analyzed as it comes in. E.g., Intrusion detection. Aka “Data in Motion” Data at Rest: Non-real time. E.g., Sales analysis. Metadata: Definitions, mappings, scheme Ref: Michael Minelli, "Big Data, Big Analytics: Emerging Business Intelligence and Analytic Trends for Today's Businesses," Wiley, 2013, ISBN:'111814760X http://www.cse.wustl.edu/~jain/cse570-13/ Washington University in St. Louis ©2013 Raj Jain 10-8
  • 9. Relational Databases and SQL  Relational Database: Stores data in tables. A “Schema” defines the tables, the fields in tables and relationships between the two. Data is stored one column/attribute Order Table Customer Table Order Number Customer ID Product ID Quantity Unit Price Customer ID Customer Name Customer Address Gender Income Range SQL (Structured Query Language): Most commonly used language for creating, retrieving, updating, and deleting (CRUD) data in a relational database Example: To find the gender of customers who bought XYZ: Select CustomerID, State, Gender, ProductID from “Customer Table”, “Order Table” where ProductID = XYZ  Ref: http://en.wikipedia.org/wiki/Comparison_of_relational_database_management_systems http://www.cse.wustl.edu/~jain/cse570-13/ Washington University in St. Louis 10-9 ©2013 Raj Jain
  • 10. Non-relational Databases      NoSQL: Not Only SQL. Any database that uses non-SQL interfaces, e.g., Python, Ruby, C, etc. for retrieval. Typically store data in key-value pairs. Not limited to rows or columns. Data structure and query is specific to the data type High-performance in-memory databases RESTful (Representational State Transfer) web-like APIs Eventual consistency: BASE in place of ACID Washington University in St. Louis http://www.cse.wustl.edu/~jain/cse570-13/ 10-10 ©2013 Raj Jain
  • 11. NewSQL Databases      Overcome scaling limits of MySQL Same scalable performance as NoSQL but using SQL Providing ACID Also called Scale-out SQL Generally use distributed processing. Ref: http://en.wikipedia.org/wiki/NewSQL Washington University in St. Louis http://www.cse.wustl.edu/~jain/cse570-13/ 10-11 ©2013 Raj Jain
  • 12. Columnar Databases ID 101 105 106   Name Salary Smith 10000 Jones 20000 Jones 15000 In Relational databases, data in each row of the table is stored together: 001:101,Smith,10000; 002:105,Jones,20000; 003:106,John;15000  Easy to find all information about a person.  Difficult to answer queries about the aggregate:  How many people have salary between 12k-15k? In Columnar databases, data in each column is stored together. 101:001,105:002,106:003; Smith:001, Jones:002,003; 10000:001, 20000:002, 150000:003    Easy to get column statistics Very easy to add columns Good for data with high variety  simply add columns Ref: http://en.wikipedia.org/wiki/Column-oriented_DBMS http://www.cse.wustl.edu/~jain/cse570-13/ Washington University in St. Louis 10-12 ©2013 Raj Jain
  • 13. Types of Databases Relational Databases: PostgreSQL, SQLite, MySQL  NewSQL Databases: Scale-out using distributed processing Non-relational Databases:  Key-Value Pair (KVP) Databases: Data is stored as Key:Value, e.g., Riak Key-Value Database  Document Databases: Store documents or web pages, e.g., MongoDB, CouchDB  Columnar Databases: Store data in columns, e.g., HBase  Graph Databases: Stores nodes and relationship, e.g., Neo4J  Spatial Databases: For map and nevigational data, e.g., OpenGEO, PortGIS, ArcSDE  In-Memory Database (IMDB): All data in memory. For real time applications Cloud Databases: Any data that is run in a cloud using IAAS, VM Image, DAAS http://www.cse.wustl.edu/~jain/cse570-13/  Washington University in St. Louis ©2013 Raj Jain 10-13
  • 14. Google File System     Commodity computers serve as “Chunk Servers” and store multiple copies of data blocks A master server keeps a map of all chunks of files and location of those chunks. All writes are propagated by the writing chunk server to other chunk servers that have copies. Master server controls all read-write accesses Name Space Block Map Master Server Chunk Server B1 B2 B3 Chunk Server B3 B2 B4 Chunk Server Replicate Chunk Server B4 B4 B2 B1 B3 B1 Write Ref: S. Ghemawat, et al., "The Google File System", OSP 2003, http://research.google.com/archive/gfs.html http://www.cse.wustl.edu/~jain/cse570-13/ Washington University in St. Louis 10-14 ©2013 Raj Jain
  • 15. BigTable      Distributed storage system built on Google File System Data stored in rows and columns Optimized for sparse, persistent, multidimensional sorted map. Uses commodity servers Not distributed outside of Google but accessible via Google App Engine Ref: F. Chang, et al., "Bigtable: A Distributed Storage System for Structured Data," 2006, http://research.google.com/archive/bigtable.html http://www.cse.wustl.edu/~jain/cse570-13/ Washington University in St. Louis 10-15 ©2013 Raj Jain
  • 16. MapReduce     Software framework to process massive amounts of unstructured data in parallel Goals:  Distributed: over a large number of inexpensive processors  Scalable: expand or contract as needed  Fault tolerant: Continue in spite of some failures Map: Takes a set of data and converts it into another set of key-value pairs.. Reduce: Takes the output from Map as input and outputs a smaller set of key-value pairs. Shuffle Input Map Reduce Output Reduce Output Map Map Ref: J. Dean and S. Ghemawat, “MapReduce: Simplified Data Processing on Large Clusters,” OSDI 2004, http://research.google.com/archive/mapreduce-osdi04.pdf http://www.cse.wustl.edu/~jain/cse570-13/ Washington University in St. Louis 10-16 ©2013 Raj Jain
  • 17. MapReduce Example       100 files with daily temperature in two cities. Each file has 10,000 entries. For example, one file may have (Toronto 20), (New York 30), .. Our goal is to compute the maximum temperature in the two cities. Assign the task to 100 Map processors each works on one file. Each processor outputs a list of key-value pairs, e.g., (Toronto 30), New York (65), … Now we have 100 lists each with two elements. We give this list to two reducers – one for Toronto and another for New York. The reducer produce the final answer: (Toronto 55), (New York 65) Ref: IBM. “What is MapReduce?,” http://www-01.ibm.com/software/data/infosphere/hadoop/mapreduce/ http://www.cse.wustl.edu/~jain/cse570-13/ Washington University in St. Louis 10-17 ©2013 Raj Jain
  • 18. MapReduce Optimization     Scheduling:  Task is broken into pieces that can be computed in parallel  Map tasks are scheduled before the reduce tasks.  If there are more map tasks than processors, map tasks continue until all of them are complete.  A new strategy is used to assign Reduce jobs so that it can be done in parallel  The results are combined. Synchronization: The map jobs should be comparables so that they finish together. Similarly reduce jobs should be comparable. Code/Data Collocation: The data for map jobs should be at the processors that are going to map. Fault/Error Handling: If a processor fails, its task needs to be assigned to another processor. Washington University in St. Louis http://www.cse.wustl.edu/~jain/cse570-13/ 10-18 ©2013 Raj Jain
  • 19. Story of Hadoop     Doug Cutting at Yahoo and Mike Caferella were working on creating a project called “Nutch” for large web index. They saw Google papers on MapReduce and Google File System and used it Hadoop was the name of a yellow plus elephant toy that Doug’s son had. In 2008 Amr left Yahoo to found Cloudera. In 2009 Doug joined Cloudera. Ref: Michael Minelli, "Big Data, Big Analytics: Emerging Business Intelligence and Analytic Trends for Today's Businesses," Wiley, 2013, ISBN:'111814760X http://www.cse.wustl.edu/~jain/cse570-13/ Washington University in St. Louis ©2013 Raj Jain 10-19
  • 20. Hadoop     An open source implementation of MapReduce framework Three components:  Hadoop Common Package (files needed to start Hadoop)  Hadoop Distributed File System: HDFS  MapReduce Engine HDFS requires data to be broken into blocks. Each block is stored on 2 or more data nodes on different racks. Name node: Manages the file system name space  keeps track of where each block is. Name Space Block Map Name Node B1 B2 B3 B3 B2 B4 Replicate B4 B2 B1 B4 B3 B1 Write Washington University in St. Louis http://www.cse.wustl.edu/~jain/cse570-13/ 10-20 ©2013 Raj Jain
  • 21. Hadoop (Cont)    Data node: Constantly ask the job tracker if there is something for them to do  Used to track which data nodes are up or down Job tracker: Assigns the map job to task tracker nodes that have the data or are close to the data (same rack) Task Tracker: Keep the work as close to the data as possible. Switch Switch Job Tracker Name Node DN+TT DN+TT DN+TT DN+TT Rack Washington University in St. Louis Rack Switch Sec. Job Tracker DN+TT DN+TT Rack Switch Sec. NN DN+TT DN+TT Rack http://www.cse.wustl.edu/~jain/cse570-13/ 10-21 DN= Data Node TT = Task Tracker ©2013 Raj Jain
  • 22. Hadoop (Cont)    Data nodes get the data if necessary, do the map function, and write the results to disks. Job tracker than assigns the reduce jobs to data nodes that have the map output or close to it. All data has a check attached to it to verify its integrity. Washington University in St. Louis http://www.cse.wustl.edu/~jain/cse570-13/ 10-22 ©2013 Raj Jain
  • 23. Apache Hadoop Tools     Apache Hadoop: Open source Hadoop framework in Java. Consists of Hadoop Common Package (filesystem and OS abstractions), a MapReduce engine (MapReduce or YARN), and Hadoop Distributed File System (HDFS) Apache Mahout: Machine learning algorithms for collaborative filtering, clustering, and classification using Hadoop Apache Hive: Data warehouse infrastructure for Hadoop. Provides data summarization, query, and analysis using a SQLlike language called HiveQL. Stores data in an embedded Apache Derby database. Apache Pig: Platform for creating MapReduce programs using a high-level “Pig Latin” language. Makes MapReduce programming similar to SQL. Can be extended by user defined functions written in Java, Python, etc. Ref: http://hadoop.apache.org/, http://mahout.apache.org/, http://hive.apache.org/, http://pig.apache.org/ http://www.cse.wustl.edu/~jain/cse570-13/ Washington University in St. Louis 10-23 ©2013 Raj Jain
  • 24. Apache Hadoop Tools (Cont)     Apache Avro: Data serialization system. Avro IDL is the interface description language syntax for Avro. Apache HBase: Non-relational DBMS part of the Hadoop project. Designed for large quantities of sparse data (like BigTable). Provides a Java API for map reduce jobs to access the data. Used by Facebook. Apache ZooKeeper: Distributed configuration service, synchronization service, and naming registry for large distributed systems like Hadoop. Apache Cassandra: Distributed database management system. Highly scalable. Ref: http://avro.apache.org/, http://cassandra.apache.org/, http://hbase.apache.org/ , http://zookeeper.apache.org/ http://www.cse.wustl.edu/~jain/cse570-13/ Washington University in St. Louis 10-24 ©2013 Raj Jain
  • 25. Apache Hadoop Tools (Cont)     Apache Ambari: A web-based tool for provision, managing and monitoring Apache Hadoop cluster Apache Chukwa: A data collection system for managing large distributed systems Apache Sqoop: Tool for transferring bulk data between structured databases and Hadoop Apache Oozie: A workflow scheduler system to manage Apache Hadoop jobs Ref: http://incubator.apache.org/chukwa/, http://oozie.apache.org/, https://sqoop.apache.org/, http://incubator.apache.org/ambari/ http://www.cse.wustl.edu/~jain/cse570-13/ Washington University in St. Louis ©2013 Raj Jain 10-25
  • 26. Apache Other Big Data Tools     Apache Accumulo: Sorted distributed key/value store based on Google’s BigTable design. 3rd Most popular NOSQL widecolumn system. Provides cell-level security. Users can see only authorized keys and values. Originally funded by DoD. Apache Thrift: IDL to create services using many languages including C#, C++, Java, Perl, Python, Ruby, etc. Apache Beehive: Java application framework to allow development of Java based applications. Apache Derby: A RDBMS that can be embedded in Java programs. Needs only 2.6MB disk space. Supports JDBC (Java Database Connectivity) and SQL. Ref: http://en.wikipedia.org/wiki/Apache_Accumulo, http://en.wikipedia.org/wiki/Apache_Thrift, http://en.wikipedia.org/wiki/Apache_Beehive, http://en.wikipedia.org/wiki/Apache_derby, http://www.cse.wustl.edu/~jain/cse570-13/ Washington University in St. Louis 10-26 ©2013 Raj Jain
  • 27. Other Big Data Tools     Cascading: Open Source software abstraction layer for Hadoop. Allows developers to create a .jar file that describes their data sources, analysis, and results without knowing MapReduce. Hadoop .jar file contains Cascading .jar files. Storm: Open source event processor and distributed computation framework alternative to MapReduce. Allows batch distributed processing of streaming data using a sequence of transformations. Elastic MapReduce (EMR): Automated provisioning of the Hadoop cluster, running, and terminating. Aka Hive. HyperTable: Hadoop compatible database system. Ref: http://en.wikipedia.org/wiki/Cascading, http://en.wikipedia.org/wiki/Hypertable, http://en.wikipedia.org/wiki/Storm_%28event_processor%29 http://www.cse.wustl.edu/~jain/cse570-13/ Washington University in St. Louis 10-27 ©2013 Raj Jain
  • 28. Other Big Data Tools (Cont)      Filesysem in User-space (FUSE): Users can create their own virtual file systems. Available for Linux, Android, OSX, etc. Cloudera Impala: Open source SQL query execution on HDFS and Apache HBase data MapR Hadoop: Enhanced versions of Apache Hadoop supported by MapR. Google, EMC, Amazon use MapR Hadoop. Big SQL: SQL interface to Hadoop (IBM) Hadapt: Analysis of massive data sets using SQL with Apache Hadoop. Ref: http://en.wikipedia.org/wiki/Cloudera_Impala http://en.wikipedia.org/wiki/Filesystem_in_Userspace, http://en.wikipedia.org/wiki/Big_SQL, http://en.wikipedia.org/wiki/Cloudera_Impala , http://en.wikipedia.org/wiki/MapR, http://en.wikipedia.org/wiki/Hadapt http://www.cse.wustl.edu/~jain/cse570-13/ Washington University in St. Louis ©2013 Raj Jain 10-28
  • 29. Analytics Analytics: Guide decision making by discovering patterns in data using statistics, programming, and operations research.  SQL Analytics: Count, Mean, OLAP  Descriptive Analytics: Analyzing historical data to explain past success or failures.  Predictive Analytics: Forecasting using historical data.  Prescriptive Analytics: Suggest decision options. Continually update these options with new data.  Data Mining: Discovering patterns, trends, and relationships using Association rules, Clustering, Feature extraction  Simulation: Discrete Event Simulation, Monte Carlo, Agent-based  Optimization: Linear, non-Linear  Machine Learning: An algorithm technique for learning from empirical data and then using those lessons to predict future outcomes of new data Ref: Michael Minelli, "Big Data, Big Analytics: Emerging Business Intelligence and Analytic Trends for Today's Businesses," Wiley, 2013, ISBN:111814760X http://www.cse.wustl.edu/~jain/cse570-13/ Washington University in St. Louis ©2013 Raj Jain 10-29
  • 30. Analytics (Cont)    Web Analytics: Analytics of Web Accesses and Web users. Learning Analytics: Analytics of learners (students) Data Science: Field of data analytics Washington University in St. Louis http://www.cse.wustl.edu/~jain/cse570-13/ 10-30 ©2013 Raj Jain
  • 31. Summary 1. 2. 3. 4. 5. Big data has become possible due to low cost storage, high performance servers, high-speed networking, new analytics Google File System, BigTable Database, and MapReduce framework sparked the development of Apache Hadoop. Key components of Hadoop systems are HDFS, Avro data serialization system, MapReduce or YARN computation engine, Pig Latin high level programming language, Hive data warehouse, HBase database, and ZooKeeper for reliable distributed coordination. Discovering patterns in data and using them is called Analytics. It can be descriptive, predictive, or prescriptive Types of Databases: Relational, SQL, NoSQL, NewSQL, Key-Value Pair (KVP), Document, Columnar, Graph, and Spatial Washington University in St. Louis http://www.cse.wustl.edu/~jain/cse570-13/ 10-31 ©2013 Raj Jain
  • 32. Reading List     J. Hurwitz, et al., “Big Data for Dummies,” Wiley, 2013, ISBN:978-1-118-50422-2 (Safari Book) A. Shieh, “Sharing the Data Center Network,” NSDI 2011, http://www.usenix.org/event/nsdi11/tech/full_papers/Shieh.pdf IBM. “What is MapReduce?,” http://www01.ibm.com/software/data/infosphere/hadoop/mapreduce/ Michael Minelli, "Big Data, Big Analytics: Emerging Business Intelligence and Analytic Trends for Today's Businesses," Wiley, 2013, ISBN:111814760X Washington University in St. Louis http://www.cse.wustl.edu/~jain/cse570-13/ 10-32 ©2013 Raj Jain
  • 34. Wikipedia Links (Cont)               http://en.wikipedia.org/wiki/Apache_Avro http://en.wikipedia.org/wiki/Apache_Beehive http://en.wikipedia.org/wiki/Apache_Cassandra http://en.wikipedia.org/wiki/Relational_database http://en.wikipedia.org/wiki/Relational_database_management_system http://en.wikipedia.org/wiki/Column-oriented_DBMS http://en.wikipedia.org/wiki/Spatial_database http://en.wikipedia.org/wiki/SQL http://en.wikipedia.org/wiki/NoSQL http://en.wikipedia.org/wiki/NewSQL http://en.wikipedia.org/wiki/MySQL http://en.wikipedia.org/wiki/Create,_read,_update_and_delete http://en.wikipedia.org/wiki/Unstructured_data http://en.wikipedia.org/wiki/Semi-structured_data Washington University in St. Louis http://www.cse.wustl.edu/~jain/cse570-13/ 10-34 ©2013 Raj Jain
  • 36. References                J. Dean and S. Ghemawat, “MapReduce: Simplified Data Processing on Large Clusters,” OSDI 2004, http://research.google.com/archive/mapreduce-osdi04.pdf S. Ghemawat, et al., "The Google File System", OSP 2003, http://research.google.com/archive/gfs.html F. Chang, et al., "Bigtable: A Distributed Storage System for Structured Data," 2006, http://research.google.com/archive/bigtable.html http://avro.apache.org/ http://cassandra.apache.org/ http://hadoop.apache.org/ http://hbase.apache.org/ http://hive.apache.org/ http://incubator.apache.org/ambari/ http://incubator.apache.org/chukwa/ http://mahout.apache.org/ http://oozie.apache.org/ http://pig.apache.org/ http://zookeeper.apache.org/ https://sqoop.apache.org/ Washington University in St. Louis http://www.cse.wustl.edu/~jain/cse570-13/ 10-36 ©2013 Raj Jain
  • 37. Acronyms                 ACID API ArcSDE BASE CRUD DAAS DARPA DBMS DN DoD EMC FUSE HDFS IAAS IBM ID Atomicity, Consistency, Isolation, Durability Application Programming Interface Arc Spatial Database Engine Basically Available, Soft, and Eventual Consistency Create, Retrieve, Update, and Delete Database as a Service Defense Advanced Research Project Agancy Database Management System Data Node Department of Defense Name of a company Filesysem in User-space Hadoop Distributed File System Infrastructure as a Service International Business Machines Identifier Washington University in St. Louis http://www.cse.wustl.edu/~jain/cse570-13/ 10-37 ©2013 Raj Jain
  • 38. Acronyms (Cont)                 IDL IMDB JDBC KVP NewSQL NoSQL OLAP OpenGEO OSDI OSX PortGIS PostGresSQL RDBMS REST SQL TB Interface Description Language In-Memory Database Java Database Connectivity Key-Value Pair New SQL Not Only SQL Online Analytical Processing Operating Systems Design and Implementation Apple Mac Operating System version 10 Port Geographical Information System PostGress SQL Relational Database Management System Representation State Transfer Structured Query Language Terabyte Washington University in St. Louis http://www.cse.wustl.edu/~jain/cse570-13/ 10-38 ©2013 Raj Jain
  • 39. Acronyms (Cont)      TT US USGS VM YARN Task Tracker United States United States Geological Survey Virtual Machine Yet Another Resource Negotiator Washington University in St. Louis http://www.cse.wustl.edu/~jain/cse570-13/ 10-39 ©2013 Raj Jain
  • 40. Quiz 10A      The 3V's that define Big Data are _______________, _______________, and _______________ ACID stands for _______________, _______________, _______________, and _______________ BASE stands for _______________ _______________, _______________, and _______________ Consistency. _______________ data is the data that has pre-set format. Data in _______________ is the data that is streaming. Your Name: ________________________ Washington University in St. Louis http://www.cse.wustl.edu/~jain/cse570-13/ 10-41 ©2013 Raj Jain
  • 41. Solution to Quiz 10A      The 3V's that define Big Data are *Volume*, *velocity*, and *variety* ACID stands for *Atomicity*, *Consistency*, *Isolation*, and *Durability* BASE stands for *Basically* *Available*, *Soft*, and *Eventual* Consistency. *Structured* data is the data that has pre-set format. Data in *Motion* is the data that is streaming. Washington University in St. Louis http://www.cse.wustl.edu/~jain/cse570-13/ 10-42 ©2013 Raj Jain