0% found this document useful (0 votes)
18 views4 pages

Big Data: EMR, ML, Elasticsearch Guide

This document provides an overview of Module 10 on Big Data which includes introductions and walkthroughs for Elastic MapReduce, Amazon Machine Learning, and Amazon Elasticsearch. It also includes reviews, assignments, and sample data for Elasticsearch including documents and searches.

Uploaded by

srinubasani
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
18 views4 pages

Big Data: EMR, ML, Elasticsearch Guide

This document provides an overview of Module 10 on Big Data which includes introductions and walkthroughs for Elastic MapReduce, Amazon Machine Learning, and Amazon Elasticsearch. It also includes reviews, assignments, and sample data for Elasticsearch including documents and searches.

Uploaded by

srinubasani
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Module 10 ­ Big Data 

 
 
Introduction 
Walkthroughs 
Elastic Map Reduce: Analyze CloudFront logs 
Amazon Machine Learning: Banking 
Amazon Elasticsearch: Index and search a movie database 
Review 
Assignments 
Elasticsearch data samples 
Documents 
Search 
 

Introduction 
 
EMR: ​
[Link]
Amazon Machine Learning: ​ [Link]
Amazon Elasticsearch: ​
[Link]
 

Walkthroughs 

Elastic Map Reduce: Analyze CloudFront logs 
[Link]

Amazon Machine Learning: Banking 
Banking example available on Web Console 

Amazon Elasticsearch: Index and search a movie database 
[Link]
 
Review 
● Use cases or applications for EMR, Elasticsearch, and ML in your domain/area of 
expertise 
 

Assignments 
 
EMR: LogAnalyzer for CloudFront 
[Link]
 
EMR: Contextual advertising 
[Link]
 
EMR: Finding trending topics 
[Link]
 
Machine learning: Predict responses to a marketing offer 
[Link]
 
Elastic Search: Create a search service for Comics/Superhero data 
[Link]
 
 
   
Elasticsearch data samples 

Documents 
 
curl ­XPUT 
"​ /movies/movie/1" ­d' 
search­movies­[Link]­east­[Link]​

    "title": "The Godfather", 
    "director": "Francis Ford Coppola", 
    "year": 1972, 
    "genres": ["Crime", "Drama"] 
}' 
 
curl ­XPUT 
"​ /movies/movie/2" ­d' 
search­movies­[Link]­east­[Link]​

    "title": "Lawrence of Arabia", 
    "director": "David Lean", 
    "year": 1962, 
    "genres": ["Adventure", "Biography", "Drama"] 
}' 
 
curl ­XPUT 
"​ /movies/movie/3" ­d' 
search­movies­[Link]­east­[Link]​

    "title": "To Kill a Mockingbird", 
    "director": "Robert Mulligan", 
    "year": 1962, 
    "genres": ["Crime", "Drama", "Mystery"] 
}' 
 
curl ­XPUT 
"​ /movies/movie/4" ­d' 
search­movies­[Link]­east­[Link]​

    "title": "Apocalypse Now", 
    "director": "Francis Ford Coppola", 
    "year": 1979, 
    "genres": ["Drama", "War"] 
}' 
 
curl ­XPUT 
"​search­movies­[Link]­east­[Link]​ /movies/movie/5" ­d' 

    "title": "Kill Bill: Vol. 1", 
    "director": "Quentin Tarantino", 
    "year": 2003, 
    "genres": ["Action", "Crime", "Thriller"] 
}' 
 
curl ­XPUT 
"​search­movies­[Link]­east­[Link]​ /movies/movie/6" ­d' 

    "title": "The Assassination of Jesse James by the Coward Robert Ford", 
    "director": "Andrew Dominik", 
    "year": 2007, 
    "genres": ["Biography", "Crime", "Drama"] 
}' 
 
 

Search 
 
curl ­XGET 
'​ /movies/_search?q
search­movies­[Link]­east­[Link]​
=*' 
 
 
curl ­XGET 
'​ /movies/_search?q
search­movies­[Link]­east­[Link]​
=andrew' 
 
 

You might also like