hw09 building data intensive apps a closer look at trending topics.org

37
09/29/09 1 Prototyping Data Intensive Apps: TrendingTopics.org Pete Skomoroch Research Scientist at LinkedIn Consultant at Data Wrangling @peteskomoroch

Upload: cloudera-inc

Post on 06-May-2015

2.632 views

Category:

Technology


1 download

TRANSCRIPT

Page 1: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

09/29/09 1

Prototyping Data Intensive Apps: TrendingTopics.org

Pete SkomorochResearch Scientist at LinkedInConsultant at Data Wrangling

@peteskomoroch

Page 2: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

Talk Outline

• TrendingTopics Overview• Wikipedia Page View Dataset• Hadoop on Amazon EC2• Loading Data on EC2: Amazon EBS & S3• Daily Timelines with Hadoop Streaming• Hive Data Warehouse Layer• Trend Computation with Hive• Hooking It All Together• Front End & Visualizations

Page 3: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

3

Data Intensive Web Apps

• Batch data mining or prediction with Hadoop• Iterate quickly with high level languages & tools

– Pig, Hive, Clojure, Cascading, Python, Ruby

• EC2: Get running with limited initial capital• Use external data and APIs in novel ways• Recent real world example: FlightCaster

Page 4: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

4

TrendingTopics.org

Page 5: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

5

Daily Pageview Timeline Charts

Page 6: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

6

Detects Rising Trends with Hadoop

Page 7: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

7

TrendingTopics is Open Source

• Built as a side project at Data Wrangling• Core code completed over 2 weeks in June• Code on Github• Data released on Amazon Public Datasets

Page 8: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

8

Technology Stack

Page 9: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

9

Application Data Flow

Page 10: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

10

Hadoop on Amazon EC2

• EC2: Launch servers on demand• S3: Simple Storage Service• EBS: Persistent disks for EC2• Used Cloudera Hadoop Distribution

– Includes Pig, Hive, HBase, Sqoop, EBS integration– Allows customization of Hadoop EC2 instances– See EC2 Docs and Tutorials on the Cloudera site

Page 11: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

11

Wikipedia Page View Log Data

• 1 TB of hourly log files from Wikipedia Squid proxy• Filename contains timestamp• Columns: project, pagename, pageviews, & bytes

Page 12: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

12

Wikipedia Redirect Data

• Many articles in the logs redirect to canonical titles• Amazon Public Dataset contains a lookup table:

Page 13: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

13

Loading Data into Hadoop on EC2

• Hadoop can read directly from Amazon S3

• Pulling in data from EBS snapshots

Page 14: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

14

Python Streaming for Daily Timelines

Page 15: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

15

Streaming: Filter & Aggregate Logs

Page 16: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

16

Hive Data Warehouse Layer on EC2

• Easy for analysts familar with SQL• Familar syntax (SELECT, GROUP BY, SORT...)• Hide the MR muck, for JOIN, UNION, etc.• Supports streaming UDFs• Sampling: generate datasets for R&D• Used on Timeline and Redirect data

Page 17: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

17

Fixing Wiki Redirects with Hive JOIN

Page 18: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

18

Trend Detection With Hadoop

Page 19: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

19

Hourly Data: “Java” vs. “Hangover”

Page 20: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

20

Robust Regression with R & Hadoop

• Fit R model to hourly data for 2.3M Wiki articles• “Trending” if article views >> model prediction

Page View “Spikes”

Page 21: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

21

Call Python Trend Mapper from Hive

Page 22: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

22

Simple Trend Calculation in Python

Page 23: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

23

Use Trend Scores to Rank Articles

Page 24: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

24

Exporting Data from our EC2 Cluster

• Output files are delimited text for bulk DB load• Distcp outputs to S3:

– hadoop distcp /user/output s3n://trendingtopics/exports

• Hive can create tables directly over S3 filesystem:– create external table foo ... location

's3n://trendingtopics/hiveoutput’

Page 25: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

25

Hooking It All Together

Page 26: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

26

Ruby on Rails Front End

• Run a development version of the app locally:

Page 27: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

27

Automate & Deploy with EC2onRails

• EC2onRails: Ubuntu server images for EC2, runs instances of Ruby on Rails, MySQL, Apache

• Daily cron job on App server launches Hadoop• Hadoop EC2 boot script checks out latest trend

detection code from Github• Capistrano tasks deploy new application code,

maintain DB, cache, archives

Page 28: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

28

Cron Triggers Hadoop Jobs on EC2

Modify Cloudera hadoop-ec2-init-remote.sh boot script

Page 29: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

29

Bash Scripts Automate Daily Run

• run_daily_merge.sh kicks off Hadoop/Hive jobs• Queries MySQL for last run date• Generates timelines with Hadoop streaming • Hive operates on Timeline data, computes Trends

with Python• Hive output copied to S3• Calls remote script to load MySQL staging tables• Hadoop cluster self terminates• Remote script swaps staging and prod after load

Page 30: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

30

Capistrano Tasks

• Capistrano: Ruby tool for automating tasks on one or more remote servers (www.capify.org)

• Deploys Rails code and cron jobs to App server• Cleanup tasks are triggered at end of load:

– Flags featured Wikipedia articles– Indexes MySQL tables, Flushes cache

Page 31: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

31

Visualization APIs

• Google Viz API: Annotated Timeline for Rails

• Google Charts sparklines: gc4r

• Yahoo BOSS image search in Rails

Page 32: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

32

Ideas & Next Steps

• Try out the code on Github• Show related articles using link graph data• Extract trending phrases from article text• Boost Twitter trending topics with Wikipedia logs• Update top trends hourly• Use date partitioned tables, incremental updates• Add a real search engine (uses MySQL now)

Page 33: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

33

LinkedIn Analytics Team

We’re Hiring

Page 34: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

34

Questions?

• Contact– Blog: datawrangling.com– Twitter: @peteskomoroch

• Code– http://github.com/datawrangling/trendingtopics– Hadoop blog posts & tutorials on the Cloudera site– Amazon EMR tutorial on Finding Similar Artists with

Hadoop & Last.FM data http://bit.ly/EMRsimilarity

Page 35: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

35

Backup slides

Page 36: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

36

Wikipedia Views ~ Google Searches

“Dwight Howard” on TrendingTopics “Dwight Howard” on Google Trends

Page 37: Hw09   Building Data Intensive Apps  A Closer Look At Trending Topics.Org

37

Wikipedia Log Analysis with Pig

• Most Read articles Pig Latin example• Show junk Wikipedia pages that need filtering