SlideShare a Scribd company logo
Hadoop for Data Science
Donald Miner
NYC Pig User Group
August 22, 2013
About Don
@donaldpminer
dminer@clearedgeit.com
I’ll talk about…
Intro to Hadoop
Some reasons why I think Hadoop is cool
(is this cliché yet?)
Step 1: Hadoop
Step 2: ????
Step 3: Data Science!
Some examples of data science work on hadoop
What can Hadoop do to enable data science work?
Hadoop
• Distributed platform for thousands of nodes
• Data storage and computation framework
• Open source
• Runs on commodity hardware
Hadoop Distributed File System
HDFS
• Stores files in folders (that’s it)
– Nobody cares what’s in your files
• Chunks large files into blocks (~64MB-2GB)
• 3 replicates of each block (better safe than sorry)
• Blocks are scattered all over the place
FILE BLOCKS
MapReduce
• Analyzes raw data in HDFS where the data is
• Jobs are split into Mappers and Reducers
Reducers (you code this, too)
Automatically Groups by the
mapper’s output key
Aggregate, count, statistics
Outputs to HDFS
Mappers (you code this)
Loads data from HDFS
Filter, transform, parse
Outputs (key, value) pairs
Hadoop Ecosystem
• Higher-level languages like Pig and Hive
• HDFS Data systems like HBase and Accumulo
• Close friends like ZooKeeper, Flume, Storm,
Cassandra, Avro
Pig
• Pig is a fantastic query language that runs MapReduce
jobs
• Higher-level than MapReduce: write code in terms of
GROUP BY, DISTINCT, FOREACH, FILTER, etc.
• Custom loaders and storage functions make this good
glue
• I use this a lot
A = LOAD ‘data.txt’
AS (name:chararray, age:int, state:chararray);
B = GROUP A BY state;
C = FOREACH B GENERATE group, COUNT(*), AVG(age);
dump c;
Mahout
• Mahout is a Machine
Library
• Has both parallel and
non-parallel
implementations of a
number of algorithms:
– Recommenders
– Clustering
– Classification
Cool Thing #1: Linear Scalability
• HDFS and MapReduce
scale linearly
• If you have twice as
many computers, jobs
run twice as fast
• If you have twice as
much data, jobs run
twice as slow
• If you have twice as
many computers, you
can store twice as much
data
DATA LOCALITY!!
Cool Thing #2: Schema on Read
LOAD DATA FIRST, ASK QUESTIONS LATER
Data is parsed/interpreted as it is loaded out of HDFS
What implications does this have?
BEFORE:
ETL, schema design upfront,
tossing out original data,
comprehensive data study
Keep original data around!
Have multiple views of the same data!
Work with unstructured data sooner!
Store first, figure out what to do with it later!
WITH HADOOP:
Cool Thing #3: Transparent Parallelism
Network programming?
Inter-process communication?
Threading?
Distributed stuff?
With MapReduce, I DON’T CARE
Your solution
… I just have to fit my solution into this tiny box
Fault tolerance?
Code deployment?
RPC?
Message passing?
Locking?
MapReduce
Framework
Data storage?
Scalability?
Data center fires?
Cool Thing #4: Unstructured Data
• Unstructured data:
media, text,
forms, log data
lumped structured data
• Query languages like SQL
and Pig assume some sort
of “structure”
• MapReduce is just Java:
You can do anything Java can
do in a Mapper or Reducer
One of the things Hadoop can do for you is turn your unstructured data into structured
The rest of the talk
• Four threads:
– Data exploration
– Classification
– NLP
– Recommender systems
I’m using these to illustrate some points
Exploration
• Hadoop is great at exploring data!
• I like to explore data in a couple ways:
– Filtering
– Sampling
– Summarization
– Evaluate cleanliness
• I like to spend 50% of my time
doing exploration
(but unfortunately it’s the
first thing to get cut)
Filtering
• Filtering is like a microscope:
I want to take a closer look at a subset
• In MapReduce, you do this in the mapper
• Identify nasty records you want to get rid of
• Examples:
– Only new york data
– Only millennials
– Remove gibberish
– Only 5 minutes
Sampling
• Hadoop isn’t the king of interactive analysis
• Sampling is a good way to grab a set of data
then work with it locally (Excel?)
• Pig has a handy SAMPLE keyword
• Types of sampling:
– Sample randomly across the entire data set
– Sub-graph extraction
– Filters (from the last slide)
Summarization
• Summarization is a bird’s-eye view
• MapReduce is good at summarization:
– Mappers extract the group-by keys
– Reducers do the aggregation
• I like to:
– Count number, get stdev, get average, get min/max of
records in several groups
– Count nulls in columns
(if applicable)
– Grab top-10 lists
Evaluating Cleanliness
• I’ve never been burned twice:
– There are a list of things that I like to check
• Things to check for:
– Fields that shouldn’t be null that are
– Duplicates (does unique records=records?)
– Dates (look for 1970; look at formats; time zones)
– Things that should be normalized
– Keys that are different because of trash
e.g. “ abc “ != “abc”
What’s the point?
• Hadoop is really good at this stuff!
• You probably have a lot of data and a lot of it
is garbage!
• Take the time to do this and your further work
will be much easier
• It’s hard to tell what methods
you should use until you
explore your data
Classification
• Classification is taking feature vectors (derived from
your data), and then guessing some sort of label
– E.g.,
sunny, Saturday, summer -> play tennis
rainy, Wednesday, winter -> don’t play tennis
• Most classification algorithms aren’t easily
parallelizable or have good implementations
• You need a training set of true feature vectors and
labels… how often is your data labeled?
• I’ve found classification rather hard, except for when…
Overall Classification Workflow
EXPLORATION EXPERIMENTATION
OF DIFFERENT METHODS
REFINING PROMISING
METHODS
The Model Training Workflow
FEATURE
EXTRACTION
MODEL
TRAINING USE MODEL
DATA FEATURE
VECTORS
MODEL OUTPUT
Data volumes in training
DATAVOLUME
DATA
I have a lot of data
Data volumes in training
DATAVOLUME
DATA
FEATURE
VECTORS
feature extraction
Is this result “big data”?
Examples:
- 10TB of network traffic distilled into 9K IP address FVs
- 10TB of medical records distilled into 50M patient FVs
- 10TB of documents distilled into 5TB of document FVs
Data volumes in training
DATAVOLUME
DATA
FEATURE
VECTORS
feature extraction Model
Training
MODEL
The model itself is usually pretty tiny
Data volumes in training
DATAVOLUME
DATA
FEATURE
VECTORS
feature extraction Model
Training
MODEL
Applying that model to all the
data is a big data problem!
Some hurdles
• Where do I run non-hadoop code?
• How do I host out results to the application?
• How do I use my model on streaming data?
• Automate performance measurement
Miscellaneous:
Train all the classifiers!
Training a classifier might not be a big data problem…
… but training lots of them is!
Examples:
Train a model per user to detect anomalous events
Train a Boolean model per label possibility
Ensemble methods
So what’s the point?
• Not all stages of the model training workflow
are Hadoop problems
• Use the right tool for the job in each phase
e.g., non-parallel model training in some cases
FEATURE
EXTRACTION
MODEL
TRAINING USE MODEL
DATA FEATURE
VECTORS
MODEL OUTPUT
Natural Language Pre-Processing
• A lot of classic tools in NLP are “embarrassingly
parallel”
– Stemming
– Lexical analysis
– Parsing
– Tokenization
– Normalization
– Removing stop words
– Spell check
Each of these apply to segments of text and
don’t have much to do with any other piece of
Text in the corpus.
Python, NLTK, and Pig
• Pig is a higher-level abstract over MapReduce
• NLTK is a popular natural language toolkit for Python
• Pig allows you to stream data through arbitrary
processes (including python scripts)
• You can use UDFs to wrap NLTK methods, but the need
to use Jython sucks
• Use Pig to move your data around, use a real package
to do the work on the records
postdata = STREAM data THROUGH `my_nltk_script.py`;
(I do the same thing with Scipy and Numpy)
OpenNLP and MapReduce
• OpenNLP is an Apache project is an NLP library
• “It supports the most common NLP tasks, such as
tokenization, sentence segmentation, part-of-
speech tagging, named entity extraction,
chunking, parsing, and coreference resolution.”
• Written in Java with reasonable APIs
• MapReduce is just Java, so you can link into just
about anything you want
• Use OpenNLP in the Mapper to enrich, normalize,
cleanse your data
One of my favorites: TF-IDF
• TF-IDF (Term Frequency, Inverse Document
Frequency)
– TF: how common is the word in the document
– IDF: how common is this word everywhere
(inverse)
– Multiply both and get a score for each term
• Easily pulls out topics in documents (or lack of
topics)
• Parallelizable (examples online)
Example: The quick brown fox jumps over the lazy dog
Somewhat related: Text extraction
• Extracting text with OCR or Speech-to-text (for
example) can be an expensive operation
• Use Hadoop’s parallelism to apply your
method against a large corpus of data
• You can’t really make individual extraction
faster, but you can make the overall process
faster
So what’s the point?
• Hadoop can be used to glue together already
existing libraries
– You just have to figure out how to split the
problem up yourself
• Utilize a lot of the NLP toolkits to process text
Recommender Systems
• Hadoop is good at recommender systems
– Recommender systems like a lot of data
– Systems want to make a lot of recommendations
• A number of methods available in Mahout
• I’ll be talking about Collaborative Filtering
1. Find similar users
2. Make recommendations based on those
I have no idea what I’m doing
• Collaborative Filtering is cool because it
doesn’t have to understand the user or the
item… just the relationships
• Relationships are easy to extract, features and
labels not so much
• Features can be folded into the similarity
metrics
What’s the point?
• Recommender systems parallelize and there is
a Hadoop library for it
• They use relationships, not features, so the
data is easier to extract
• If you can fit your problem into the
recommendation framework, you can do
something interesting
Other stuff: Graphs
• Graphs are useful and a lot can be done with
Hadoop
• Check out Giraph
• Check out how Accumulo has been used to
store graphs (google: “Graph 500 Accumulo”)
• Stuff to do:
– Subgraph extraction
– Missing edge recommendation
– Cool visualizations
– Summarizing relationships
Other stuff: Clustering
• Provides interesting insight into group
• Some methods parallelize well
• Mahout has:
– Dirichlet process clustering
– K-means
– Fuzzy K-means
Other stuff: R and Hadoop
• RHIPE and Rhadoop allow you to write
MapReduce jobs in R, instead of Java
• Can also use Hadoop streaming to use R
• This doesn’t magically parallelize all your R
code
• Useful to integrate into R more seamlessly
Wrap up
• Hadoop is good at certain things
• Hadoop can’t do everything and you have to
do the rest
THANKS!
dminer@clearedgeit.com
@donaldpminer

More Related Content

PPTX
Hadoop for Data Science
PPTX
10 concepts the enterprise decision maker needs to understand about Hadoop
PPTX
EDHREC @ Data Science MD
PPTX
Hadoop with Python
PDF
IPython Notebook as a Unified Data Science Interface for Hadoop
PPTX
Python in big data world
PDF
Apache Pig for Data Scientists
PPT
Finding the needles in the haystack. An Overview of Analyzing Big Data with H...
Hadoop for Data Science
10 concepts the enterprise decision maker needs to understand about Hadoop
EDHREC @ Data Science MD
Hadoop with Python
IPython Notebook as a Unified Data Science Interface for Hadoop
Python in big data world
Apache Pig for Data Scientists
Finding the needles in the haystack. An Overview of Analyzing Big Data with H...

What's hot (20)

PPTX
Pig Tutorial | Apache Pig Tutorial | What Is Pig In Hadoop? | Apache Pig Arch...
PDF
Apache Pig: Making data transformation easy
PDF
Data Science with Spark - Training at SparkSummit (East)
PPTX
Using the search engine as recommendation engine
PDF
High Performance Machine Learning in R with H2O
PDF
Ted Willke, Intel Labs MLconf 2013
PDF
H2O World - Sparkling water on the Spark Notebook: Interactive Genomes Clust...
PDF
Where Search Meets Machine Learning: Presented by Diana Hu & Joaquin Delgado,...
PPTX
Big Data Science with H2O in R
PPT
Bigdata processing with Spark
PPTX
Big Data Analytics with Storm, Spark and GraphLab
PDF
Scaling PyData Up and Out
PDF
Fast and Scalable Python
ODP
MongoDB & Machine Learning
PPTX
Seattle Scalability Mahout
PDF
Large Scale Math with Hadoop MapReduce
PPT
Bigdata processing with Spark - part II
PDF
Java Memory Analysis: Problems and Solutions
PPTX
Dataiku hadoop summit - semi-supervised learning with hadoop for understand...
PDF
H2O World - Benchmarking Open Source ML Platforms - Szilard Pafka
Pig Tutorial | Apache Pig Tutorial | What Is Pig In Hadoop? | Apache Pig Arch...
Apache Pig: Making data transformation easy
Data Science with Spark - Training at SparkSummit (East)
Using the search engine as recommendation engine
High Performance Machine Learning in R with H2O
Ted Willke, Intel Labs MLconf 2013
H2O World - Sparkling water on the Spark Notebook: Interactive Genomes Clust...
Where Search Meets Machine Learning: Presented by Diana Hu & Joaquin Delgado,...
Big Data Science with H2O in R
Bigdata processing with Spark
Big Data Analytics with Storm, Spark and GraphLab
Scaling PyData Up and Out
Fast and Scalable Python
MongoDB & Machine Learning
Seattle Scalability Mahout
Large Scale Math with Hadoop MapReduce
Bigdata processing with Spark - part II
Java Memory Analysis: Problems and Solutions
Dataiku hadoop summit - semi-supervised learning with hadoop for understand...
H2O World - Benchmarking Open Source ML Platforms - Szilard Pafka
Ad

Viewers also liked (20)

PPTX
Big Data Warehousing: Pig vs. Hive Comparison
PPTX
Pig on Spark
PDF
Nycdsa ml conference slides march 2015
PDF
THE HACK ON JERSEY CITY CONDO PRICES explore trends in public data
PPTX
Data Science Academy Student Demo day--Moyi Dang, Visualizing global public c...
PDF
Natural Language Processing(SupStat Inc)
PDF
Using Machine Learning to aid Journalism at the New York Times
PPTX
Streaming Python on Hadoop
PDF
Hack session for NYTimes Dialect Map Visualization( developed by R Shiny)
PDF
Spatial query tutorial for nyc subway income level along subway
PDF
Nyc open-data-2015-andvanced-sklearn-expanded
PDF
Data Science Academy Student Demo day--Richard Sheng, kinvolved school attend...
PPTX
Data Science Academy Student Demo day--Chang Wang, dogs breeds in nyc
PDF
Data mining with caret package
KEY
Hive vs Pig for HadoopSourceCodeReading
PDF
Bayesian models in r
PPTX
Data Science Academy Student Demo day--Divyanka Sharma, Businesses in nyc
PDF
PDF
Introducing natural language processing(NLP) with r
PDF
Max Kuhn's talk on R machine learning
Big Data Warehousing: Pig vs. Hive Comparison
Pig on Spark
Nycdsa ml conference slides march 2015
THE HACK ON JERSEY CITY CONDO PRICES explore trends in public data
Data Science Academy Student Demo day--Moyi Dang, Visualizing global public c...
Natural Language Processing(SupStat Inc)
Using Machine Learning to aid Journalism at the New York Times
Streaming Python on Hadoop
Hack session for NYTimes Dialect Map Visualization( developed by R Shiny)
Spatial query tutorial for nyc subway income level along subway
Nyc open-data-2015-andvanced-sklearn-expanded
Data Science Academy Student Demo day--Richard Sheng, kinvolved school attend...
Data Science Academy Student Demo day--Chang Wang, dogs breeds in nyc
Data mining with caret package
Hive vs Pig for HadoopSourceCodeReading
Bayesian models in r
Data Science Academy Student Demo day--Divyanka Sharma, Businesses in nyc
Introducing natural language processing(NLP) with r
Max Kuhn's talk on R machine learning
Ad

Similar to Data science and Hadoop (20)

PPTX
Scaling ETL with Hadoop - Avoiding Failure
PPTX
Machine Learning with Spark
PPTX
Big data Intro - Presentation to OCHackerz Meetup Group
PDF
R, Hadoop and Amazon Web Services
PDF
"R, Hadoop, and Amazon Web Services (20 December 2011)"
PPTX
Hadoop World 2011: Data Mining in Hadoop, Making Sense of it in Mahout! - Mic...
PPTX
BW Tech Meetup: Hadoop and The rise of Big Data
PPTX
Bw tech hadoop
PPTX
Hadoop for the Absolute Beginner
PPTX
Hadoop and Mapreduce for .NET User Group
PPTX
Taming the resource tiger
PDF
A Maturing Role of Workflows in the Presence of Heterogenous Computing Archit...
PDF
Map reduce and hadoop at mylife
PDF
Agile analytics applications on hadoop
PPTX
Unit II - Data Science (3) VI semester SRMIST
PPT
Agile Data Science: Hadoop Analytics Applications
PDF
DataIntensiveComputing.pdf
PPTX
Hands On: Introduction to the Hadoop Ecosystem
PPT
Agile Data Science: Building Hadoop Analytics Applications
PPTX
Taming the resource tiger
Scaling ETL with Hadoop - Avoiding Failure
Machine Learning with Spark
Big data Intro - Presentation to OCHackerz Meetup Group
R, Hadoop and Amazon Web Services
"R, Hadoop, and Amazon Web Services (20 December 2011)"
Hadoop World 2011: Data Mining in Hadoop, Making Sense of it in Mahout! - Mic...
BW Tech Meetup: Hadoop and The rise of Big Data
Bw tech hadoop
Hadoop for the Absolute Beginner
Hadoop and Mapreduce for .NET User Group
Taming the resource tiger
A Maturing Role of Workflows in the Presence of Heterogenous Computing Archit...
Map reduce and hadoop at mylife
Agile analytics applications on hadoop
Unit II - Data Science (3) VI semester SRMIST
Agile Data Science: Hadoop Analytics Applications
DataIntensiveComputing.pdf
Hands On: Introduction to the Hadoop Ecosystem
Agile Data Science: Building Hadoop Analytics Applications
Taming the resource tiger

More from Donald Miner (7)

PPTX
Machine Learning Vital Signs
PPTX
Survey of Accumulo Techniques for Indexing Data
PPTX
An Introduction to Accumulo
PPTX
SQL on Accumulo
PPTX
Data, The New Currency
PPTX
The Amino Analytical Framework - Leveraging Accumulo to the Fullest
PPTX
MapReduce Design Patterns
Machine Learning Vital Signs
Survey of Accumulo Techniques for Indexing Data
An Introduction to Accumulo
SQL on Accumulo
Data, The New Currency
The Amino Analytical Framework - Leveraging Accumulo to the Fullest
MapReduce Design Patterns

Recently uploaded (20)

PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PPT
Teaching material agriculture food technology
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Machine learning based COVID-19 study performance prediction
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PPTX
sap open course for s4hana steps from ECC to s4
PDF
Approach and Philosophy of On baking technology
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
Encapsulation theory and applications.pdf
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
Unlocking AI with Model Context Protocol (MCP)
PPTX
Spectroscopy.pptx food analysis technology
PPTX
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
PDF
cuic standard and advanced reporting.pdf
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Teaching material agriculture food technology
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Spectral efficient network and resource selection model in 5G networks
Machine learning based COVID-19 study performance prediction
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
Understanding_Digital_Forensics_Presentation.pptx
sap open course for s4hana steps from ECC to s4
Approach and Philosophy of On baking technology
The Rise and Fall of 3GPP – Time for a Sabbatical?
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
20250228 LYD VKU AI Blended-Learning.pptx
Encapsulation theory and applications.pdf
Chapter 3 Spatial Domain Image Processing.pdf
Unlocking AI with Model Context Protocol (MCP)
Spectroscopy.pptx food analysis technology
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
cuic standard and advanced reporting.pdf

Data science and Hadoop

  • 1. Hadoop for Data Science Donald Miner NYC Pig User Group August 22, 2013
  • 3. I’ll talk about… Intro to Hadoop Some reasons why I think Hadoop is cool (is this cliché yet?) Step 1: Hadoop Step 2: ???? Step 3: Data Science! Some examples of data science work on hadoop What can Hadoop do to enable data science work?
  • 4. Hadoop • Distributed platform for thousands of nodes • Data storage and computation framework • Open source • Runs on commodity hardware
  • 5. Hadoop Distributed File System HDFS • Stores files in folders (that’s it) – Nobody cares what’s in your files • Chunks large files into blocks (~64MB-2GB) • 3 replicates of each block (better safe than sorry) • Blocks are scattered all over the place FILE BLOCKS
  • 6. MapReduce • Analyzes raw data in HDFS where the data is • Jobs are split into Mappers and Reducers Reducers (you code this, too) Automatically Groups by the mapper’s output key Aggregate, count, statistics Outputs to HDFS Mappers (you code this) Loads data from HDFS Filter, transform, parse Outputs (key, value) pairs
  • 7. Hadoop Ecosystem • Higher-level languages like Pig and Hive • HDFS Data systems like HBase and Accumulo • Close friends like ZooKeeper, Flume, Storm, Cassandra, Avro
  • 8. Pig • Pig is a fantastic query language that runs MapReduce jobs • Higher-level than MapReduce: write code in terms of GROUP BY, DISTINCT, FOREACH, FILTER, etc. • Custom loaders and storage functions make this good glue • I use this a lot A = LOAD ‘data.txt’ AS (name:chararray, age:int, state:chararray); B = GROUP A BY state; C = FOREACH B GENERATE group, COUNT(*), AVG(age); dump c;
  • 9. Mahout • Mahout is a Machine Library • Has both parallel and non-parallel implementations of a number of algorithms: – Recommenders – Clustering – Classification
  • 10. Cool Thing #1: Linear Scalability • HDFS and MapReduce scale linearly • If you have twice as many computers, jobs run twice as fast • If you have twice as much data, jobs run twice as slow • If you have twice as many computers, you can store twice as much data DATA LOCALITY!!
  • 11. Cool Thing #2: Schema on Read LOAD DATA FIRST, ASK QUESTIONS LATER Data is parsed/interpreted as it is loaded out of HDFS What implications does this have? BEFORE: ETL, schema design upfront, tossing out original data, comprehensive data study Keep original data around! Have multiple views of the same data! Work with unstructured data sooner! Store first, figure out what to do with it later! WITH HADOOP:
  • 12. Cool Thing #3: Transparent Parallelism Network programming? Inter-process communication? Threading? Distributed stuff? With MapReduce, I DON’T CARE Your solution … I just have to fit my solution into this tiny box Fault tolerance? Code deployment? RPC? Message passing? Locking? MapReduce Framework Data storage? Scalability? Data center fires?
  • 13. Cool Thing #4: Unstructured Data • Unstructured data: media, text, forms, log data lumped structured data • Query languages like SQL and Pig assume some sort of “structure” • MapReduce is just Java: You can do anything Java can do in a Mapper or Reducer One of the things Hadoop can do for you is turn your unstructured data into structured
  • 14. The rest of the talk • Four threads: – Data exploration – Classification – NLP – Recommender systems I’m using these to illustrate some points
  • 15. Exploration • Hadoop is great at exploring data! • I like to explore data in a couple ways: – Filtering – Sampling – Summarization – Evaluate cleanliness • I like to spend 50% of my time doing exploration (but unfortunately it’s the first thing to get cut)
  • 16. Filtering • Filtering is like a microscope: I want to take a closer look at a subset • In MapReduce, you do this in the mapper • Identify nasty records you want to get rid of • Examples: – Only new york data – Only millennials – Remove gibberish – Only 5 minutes
  • 17. Sampling • Hadoop isn’t the king of interactive analysis • Sampling is a good way to grab a set of data then work with it locally (Excel?) • Pig has a handy SAMPLE keyword • Types of sampling: – Sample randomly across the entire data set – Sub-graph extraction – Filters (from the last slide)
  • 18. Summarization • Summarization is a bird’s-eye view • MapReduce is good at summarization: – Mappers extract the group-by keys – Reducers do the aggregation • I like to: – Count number, get stdev, get average, get min/max of records in several groups – Count nulls in columns (if applicable) – Grab top-10 lists
  • 19. Evaluating Cleanliness • I’ve never been burned twice: – There are a list of things that I like to check • Things to check for: – Fields that shouldn’t be null that are – Duplicates (does unique records=records?) – Dates (look for 1970; look at formats; time zones) – Things that should be normalized – Keys that are different because of trash e.g. “ abc “ != “abc”
  • 20. What’s the point? • Hadoop is really good at this stuff! • You probably have a lot of data and a lot of it is garbage! • Take the time to do this and your further work will be much easier • It’s hard to tell what methods you should use until you explore your data
  • 21. Classification • Classification is taking feature vectors (derived from your data), and then guessing some sort of label – E.g., sunny, Saturday, summer -> play tennis rainy, Wednesday, winter -> don’t play tennis • Most classification algorithms aren’t easily parallelizable or have good implementations • You need a training set of true feature vectors and labels… how often is your data labeled? • I’ve found classification rather hard, except for when…
  • 22. Overall Classification Workflow EXPLORATION EXPERIMENTATION OF DIFFERENT METHODS REFINING PROMISING METHODS The Model Training Workflow FEATURE EXTRACTION MODEL TRAINING USE MODEL DATA FEATURE VECTORS MODEL OUTPUT
  • 23. Data volumes in training DATAVOLUME DATA I have a lot of data
  • 24. Data volumes in training DATAVOLUME DATA FEATURE VECTORS feature extraction Is this result “big data”? Examples: - 10TB of network traffic distilled into 9K IP address FVs - 10TB of medical records distilled into 50M patient FVs - 10TB of documents distilled into 5TB of document FVs
  • 25. Data volumes in training DATAVOLUME DATA FEATURE VECTORS feature extraction Model Training MODEL The model itself is usually pretty tiny
  • 26. Data volumes in training DATAVOLUME DATA FEATURE VECTORS feature extraction Model Training MODEL Applying that model to all the data is a big data problem!
  • 27. Some hurdles • Where do I run non-hadoop code? • How do I host out results to the application? • How do I use my model on streaming data? • Automate performance measurement
  • 28. Miscellaneous: Train all the classifiers! Training a classifier might not be a big data problem… … but training lots of them is! Examples: Train a model per user to detect anomalous events Train a Boolean model per label possibility Ensemble methods
  • 29. So what’s the point? • Not all stages of the model training workflow are Hadoop problems • Use the right tool for the job in each phase e.g., non-parallel model training in some cases FEATURE EXTRACTION MODEL TRAINING USE MODEL DATA FEATURE VECTORS MODEL OUTPUT
  • 30. Natural Language Pre-Processing • A lot of classic tools in NLP are “embarrassingly parallel” – Stemming – Lexical analysis – Parsing – Tokenization – Normalization – Removing stop words – Spell check Each of these apply to segments of text and don’t have much to do with any other piece of Text in the corpus.
  • 31. Python, NLTK, and Pig • Pig is a higher-level abstract over MapReduce • NLTK is a popular natural language toolkit for Python • Pig allows you to stream data through arbitrary processes (including python scripts) • You can use UDFs to wrap NLTK methods, but the need to use Jython sucks • Use Pig to move your data around, use a real package to do the work on the records postdata = STREAM data THROUGH `my_nltk_script.py`; (I do the same thing with Scipy and Numpy)
  • 32. OpenNLP and MapReduce • OpenNLP is an Apache project is an NLP library • “It supports the most common NLP tasks, such as tokenization, sentence segmentation, part-of- speech tagging, named entity extraction, chunking, parsing, and coreference resolution.” • Written in Java with reasonable APIs • MapReduce is just Java, so you can link into just about anything you want • Use OpenNLP in the Mapper to enrich, normalize, cleanse your data
  • 33. One of my favorites: TF-IDF • TF-IDF (Term Frequency, Inverse Document Frequency) – TF: how common is the word in the document – IDF: how common is this word everywhere (inverse) – Multiply both and get a score for each term • Easily pulls out topics in documents (or lack of topics) • Parallelizable (examples online) Example: The quick brown fox jumps over the lazy dog
  • 34. Somewhat related: Text extraction • Extracting text with OCR or Speech-to-text (for example) can be an expensive operation • Use Hadoop’s parallelism to apply your method against a large corpus of data • You can’t really make individual extraction faster, but you can make the overall process faster
  • 35. So what’s the point? • Hadoop can be used to glue together already existing libraries – You just have to figure out how to split the problem up yourself • Utilize a lot of the NLP toolkits to process text
  • 36. Recommender Systems • Hadoop is good at recommender systems – Recommender systems like a lot of data – Systems want to make a lot of recommendations • A number of methods available in Mahout • I’ll be talking about Collaborative Filtering 1. Find similar users 2. Make recommendations based on those
  • 37. I have no idea what I’m doing • Collaborative Filtering is cool because it doesn’t have to understand the user or the item… just the relationships • Relationships are easy to extract, features and labels not so much • Features can be folded into the similarity metrics
  • 38. What’s the point? • Recommender systems parallelize and there is a Hadoop library for it • They use relationships, not features, so the data is easier to extract • If you can fit your problem into the recommendation framework, you can do something interesting
  • 39. Other stuff: Graphs • Graphs are useful and a lot can be done with Hadoop • Check out Giraph • Check out how Accumulo has been used to store graphs (google: “Graph 500 Accumulo”) • Stuff to do: – Subgraph extraction – Missing edge recommendation – Cool visualizations – Summarizing relationships
  • 40. Other stuff: Clustering • Provides interesting insight into group • Some methods parallelize well • Mahout has: – Dirichlet process clustering – K-means – Fuzzy K-means
  • 41. Other stuff: R and Hadoop • RHIPE and Rhadoop allow you to write MapReduce jobs in R, instead of Java • Can also use Hadoop streaming to use R • This doesn’t magically parallelize all your R code • Useful to integrate into R more seamlessly
  • 42. Wrap up • Hadoop is good at certain things • Hadoop can’t do everything and you have to do the rest

Editor's Notes

  • #2: Donald's talk will cover how to use native MapReduce in conjunction with Pig, including a detailed discussion of when users might be best served to use one or the other.