SlideShare a Scribd company logo
1 of 40
Download to read offline
Facebook’s Petabyte Scale Data
       Warehouse using Hive and Hadoop




Wednesday, January 27, 2010
Why Another Data Warehousing System?




                               Data, data and more data
                                    200GB per day in March 2008
                              12+TB(compressed) raw data per day today




Wednesday, January 27, 2010
Trends Leading to More Data




Wednesday, January 27, 2010
Trends Leading to More Data




                              Free or low cost of user services




Wednesday, January 27, 2010
Trends Leading to More Data




                              Free or low cost of user services



                Realization that more insights are derived from
                simple algorithms on more data




Wednesday, January 27, 2010
Deficiencies of Existing Technologies




Wednesday, January 27, 2010
Deficiencies of Existing Technologies



         Cost of Analysis and Storage on proprietary systems
         does not support trends towards more data




Wednesday, January 27, 2010
Deficiencies of Existing Technologies



         Cost of Analysis and Storage on proprietary systems
         does not support trends towards more data



                   Limited Scalability does not support trends
                   towards more data




Wednesday, January 27, 2010
Deficiencies of Existing Technologies



         Cost of Analysis and Storage on proprietary systems
         does not support trends towards more data



                   Limited Scalability does not support trends
                   towards more data


                              Closed and Proprietary Systems



Wednesday, January 27, 2010
Lets try Hadoop…

   Pros
        – Superior in availability/scalability/manageability
        – Efficiency not that great, but throw more hardware
        – Partial Availability/resilience/scale more important than ACID


   Cons: Programmability and Metadata
        – Map-reduce hard to program (users know sql/bash/python)
        – Need to publish data in well known schemas

   Solution: HIVE




Wednesday, January 27, 2010
What is HIVE?

   A system for managing and querying structured data built
    on top of Hadoop
        – Map-Reduce for execution
        – HDFS for storage
        – Metadata in an RDBMS


   Key Building Principles:
        –   SQL as a familiar data warehousing tool
        –   Extensibility – Types, Functions, Formats, Scripts
        –   Scalability and Performance
        –   Interoperability




Wednesday, January 27, 2010
Why SQL on Hadoop?
  hive> select key, count(1) from kv1 where key > 100 group by
      key;

  vs.

  $ cat > /tmp/reducer.sh
  uniq -c | awk '{print $2"t"$1}‘
  $ cat > /tmp/map.sh
  awk -F '001' '{if($1 > 100) print $1}‘
  $ bin/hadoop jar contrib/hadoop-0.19.2-dev-streaming.jar -input /user/hive/warehouse/kv1 -
      mapper map.sh -file /tmp/reducer.sh -file /tmp/map.sh -reducer reducer.sh -output /tmp/
      largekey -numReduceTasks 1
  $ bin/hadoop dfs –cat /tmp/largekey/part*




Wednesday, January 27, 2010
Data Flow Architecture at Facebook




Wednesday, January 27, 2010
Data Flow Architecture at Facebook




        Web Servers




Wednesday, January 27, 2010
Data Flow Architecture at Facebook




        Web Servers           Scribe MidTier




Wednesday, January 27, 2010
Data Flow Architecture at Facebook


                                                     Filers

        Web Servers           Scribe MidTier




                                               Scribe-Hadoop
                                               Cluster




Wednesday, January 27, 2010
Data Flow Architecture at Facebook


                                                     Filers

        Web Servers           Scribe MidTier




                                               Scribe-Hadoop
                                               Cluster




                                                Federated MySQL

Wednesday, January 27, 2010
Data Flow Architecture at Facebook


                                                                     Filers

        Web Servers                     Scribe MidTier




                                                               Scribe-Hadoop
                                                               Cluster




                              Production Hive-Hadoop Cluster
                                                                Federated MySQL

Wednesday, January 27, 2010
Data Flow Architecture at Facebook


                                                                     Filers

        Web Servers                     Scribe MidTier




                                                               Scribe-Hadoop
                                                               Cluster




                              Production Hive-Hadoop Cluster
          Oracle RAC                                            Federated MySQL

Wednesday, January 27, 2010
Data Flow Architecture at Facebook


                                                                      Filers

        Web Servers                      Scribe MidTier




                        Hive
                        replication                             Scribe-Hadoop
                                                                Cluster




                               Production Hive-Hadoop Cluster
          Oracle RAC                                             Federated MySQL

Wednesday, January 27, 2010
Data Flow Architecture at Facebook


                                                                      Filers

        Web Servers                      Scribe MidTier




                        Hive
                        replication                             Scribe-Hadoop
                                                                Cluster
 Adhoc Hive-Hadoop Cluster




                               Production Hive-Hadoop Cluster
          Oracle RAC                                             Federated MySQL

Wednesday, January 27, 2010
Scribe & Hadoop Clusters @ Facebook

   Used to log data from web servers

   Clusters collocated with the web servers

   Network is the biggest bottleneck

   Typical cluster has about 50 nodes.

   Stats:
        – ~ 25TB/day of raw data logged
        – 99% of the time data is available within 20 seconds



Wednesday, January 27, 2010
Hadoop & Hive Cluster @ Facebook

   Hadoop/Hive cluster
        –   8400 cores
        –   Raw Storage capacity ~ 12.5PB
        –   8 cores + 12 TB per node
        –   32 GB RAM per node
        –   Two level network topology
               1 Gbit/sec from node to rack switch
               4 Gbit/sec to top level rack switch


   2 clusters
        – One for adhoc users
        – One for strict SLA jobs




Wednesday, January 27, 2010
Hive & Hadoop Usage @ Facebook

   Statistics per day:
     – 12 TB of compressed new data added per day
     – 135TB of compressed data scanned per day
     – 7500+ Hive jobs per day
     – 80K compute hours per day

   Hive simplifies Hadoop:
    – New engineers go though a Hive training session
    – ~200 people/month run jobs on Hadoop/Hive
    – Analysts (non-engineers) use Hadoop through Hive
    – Most of jobs are Hive Jobs



Wednesday, January 27, 2010
Hive & Hadoop Usage @ Facebook

   Types of Applications:
        – Reporting
               Eg: Daily/Weekly aggregations of impression/click counts
               Measures of user engagement
               Microstrategy reports

        – Ad hoc Analysis
               Eg: how many group admins broken down by state/country

        – Machine Learning (Assembling training data)
               Ad Optimization
               Eg: User Engagement as a function of user attributes

        – Many others


Wednesday, January 27, 2010
More about HIVE




Wednesday, January 27, 2010
Data Model


                              Name                        HDFS Directory



   Table                      pvs                         /wh/pvs



   Partition                  ds = 20090801, ctry = US    /wh/pvs/ds=20090801/ctry=US




                                                          /wh/pvs/ds=20090801/ctry=US/
   Bucket                     user into 32 buckets
                                                          part-00000
                              HDFS file for user hash 0




Wednesday, January 27, 2010
Hive Query Language
   SQL
        –   Sub-queries in from clause
        –   Equi-joins (including Outer joins)
        –   Multi-table Insert
        –   Multi-group-by
        –   Embedding Custom Map/Reduce in SQL
   Sampling
   Primitive Types
        – integer types, float, string, boolean
   Nestable Collections
        – array<any-type> and map<primitive-type, any-type>
   User-defined types
        – Structures with attributes which can be of any-type


Wednesday, January 27, 2010
Optimizations
 Joins try to reduce the number of map/reduce jobs needed.
 Memory efficient joins by streaming largest tables.
 Map Joins
     – User specified small tables stored in hash tables on the mapper
     – No reducer needed

 Map side partial aggregations
     – Hash-based aggregates
     – Serialized key/values in hash tables
     – 90% speed improvement on Query
             SELECT count(1) FROM t;
 Load balancing for data skew



Wednesday, January 27, 2010
Hive: Open & Extensible

   Different on-disk storage(file) formats
        – Text File, Sequence File, …
   Different serialization formats and data types
        – LazySimpleSerDe, ThriftSerDe …
   User-provided map/reduce scripts
        – In any language, use stdin/stdout to transfer data …
   User-defined Functions
        – Substr, Trim, From_unixtime …
   User-defined Aggregation Functions
        – Sum, Average …
   User-define Table Functions
        – Explode …



Wednesday, January 27, 2010
Existing File Formats
                              TEXTFILE     SEQUENCEFILE   RCFILE

     Data type                text only    text/binary    text/binary

     Internal
                              Row-based    Row-based      Column-based
     Storage order

     Compression              File-based   Block-based    Block-based

     Splitable*               YES          YES            YES

     Splitable* after
                              NO           YES            YES
     compression

 * Splitable: Capable of splitting the file so that a single huge
      file can be processed by multiple mappers in parallel.


Wednesday, January 27, 2010
Map/Reduce Scripts Examples

     add file page_url_to_id.py;
     add file my_python_session_cutter.py;
     FROM
        (MAP uhash, page_url, unix_time
           USING 'page_url_to_id.py'
           AS (uhash, page_id, unix_time)
         FROM mylog
         DISTRIBUTE BY uhash
         SORT BY uhash, unix_time) mylog2
      REDUCE uhash, page_id, unix_time
        USING 'my_python_session_cutter.py'
        AS (uhash, session_info);




Wednesday, January 27, 2010
UDF Example
      add jar build/ql/test/test-udfs.jar;
      CREATE TEMPORARY FUNCTION testlength AS
       'org.apache.hadoop.hive.ql.udf.UDFTestLength';
      SELECT testlength(page_url) FROM mylog;
      DROP TEMPORARY FUNCTION testlength;


   UDFTestLength.java:
  package org.apache.hadoop.hive.ql.udf;
  public class UDFTestLength extends UDF {
    public Integer evaluate(String s) {
      if (s == null) {
        return null;
      }
      return s.length();
    }
  }

Wednesday, January 27, 2010
Comparison of UDF/UDAF/UDTF v.s. M/R scripts

                              UDF/UDAF/UDTF        M/R scripts

     language                 Java                 any language

     data format              in-memory objects    serialized streams

     1/1 input/output         supported via UDF    supported

     n/1 input/output         supported via UDAF   supported

     1/n input/output         supported via UDTF   supported

     Speed                    faster               slower




Wednesday, January 27, 2010
Interoperability: Interfaces

   JDBC
        – Enables integration with JDBC based SQL clients
   ODBC
        – Enables integration with Microstrategy
   Thrift
        – Enables writing cross language clients
        – Main form of integration with php based Web UI




Wednesday, January 27, 2010
Interoperability: Microstrategy

   Beta integration with version 8
   Free form SQL support
   Periodically pre-compute the cube




Wednesday, January 27, 2010
Operational Aspects on Adhoc cluster

   Data Discovery
        – coHive
               Discover tables
               Talk to expert users of a table
               Browse table lineage


   Monitoring
        – Resource utilization by individual, project, group
        – SLA monitoring etc.
        – Bad user reports etc.




Wednesday, January 27, 2010
HiPal & CoHive (Not open source)




Wednesday, January 27, 2010
Open Source Community

   Released Hive-0.4 on 10/13/2009
   50 contributors and growing
   11 committers
        – 3 external to Facebook
   Available as a sub project in Hadoop
        -   http://wiki.apache.org/hadoop/Hive (wiki)
        -   http://hadoop.apache.org/hive (home page)
        -   http://svn.apache.org/repos/asf/hadoop/hive (SVN repo)
        -   ##hive (IRC)
        -   Works with hadoop-0.17, 0.18, 0.19, 0.20
   Mailing Lists:
        – hive-{user,dev,commits}@hadoop.apache.org



Wednesday, January 27, 2010
Powered by Hive




Wednesday, January 27, 2010

More Related Content

What's hot

Hadoop ecosystem
Hadoop ecosystemHadoop ecosystem
Hadoop ecosystem
Mohamed Ali Mahmoud khouder
 

What's hot (20)

Intro to HBase
Intro to HBaseIntro to HBase
Intro to HBase
 
Tuning Apache Phoenix/HBase
Tuning Apache Phoenix/HBaseTuning Apache Phoenix/HBase
Tuning Apache Phoenix/HBase
 
Data Lake: A simple introduction
Data Lake: A simple introductionData Lake: A simple introduction
Data Lake: A simple introduction
 
Apache hadoop technology : Beginners
Apache hadoop technology : BeginnersApache hadoop technology : Beginners
Apache hadoop technology : Beginners
 
Optimizing Hive Queries
Optimizing Hive QueriesOptimizing Hive Queries
Optimizing Hive Queries
 
Hadoop ecosystem
Hadoop ecosystemHadoop ecosystem
Hadoop ecosystem
 
Hadoop Data Lake vs classical Data Warehouse: How to utilize best of both wor...
Hadoop Data Lake vs classical Data Warehouse: How to utilize best of both wor...Hadoop Data Lake vs classical Data Warehouse: How to utilize best of both wor...
Hadoop Data Lake vs classical Data Warehouse: How to utilize best of both wor...
 
Big Data: Big SQL and HBase
Big Data:  Big SQL and HBase Big Data:  Big SQL and HBase
Big Data: Big SQL and HBase
 
Conversational AI with Transformer Models
Conversational AI with Transformer ModelsConversational AI with Transformer Models
Conversational AI with Transformer Models
 
Customer Experience at Disney+ Through Data Perspective
Customer Experience at Disney+ Through Data PerspectiveCustomer Experience at Disney+ Through Data Perspective
Customer Experience at Disney+ Through Data Perspective
 
Apache Hadoop Tutorial | Hadoop Tutorial For Beginners | Big Data Hadoop | Ha...
Apache Hadoop Tutorial | Hadoop Tutorial For Beginners | Big Data Hadoop | Ha...Apache Hadoop Tutorial | Hadoop Tutorial For Beginners | Big Data Hadoop | Ha...
Apache Hadoop Tutorial | Hadoop Tutorial For Beginners | Big Data Hadoop | Ha...
 
A practical introduction to Oracle NoSQL Database - OOW2014
A practical introduction to Oracle NoSQL Database - OOW2014A practical introduction to Oracle NoSQL Database - OOW2014
A practical introduction to Oracle NoSQL Database - OOW2014
 
Top 5 Considerations for a Big Data Solution
Top 5 Considerations for a Big Data SolutionTop 5 Considerations for a Big Data Solution
Top 5 Considerations for a Big Data Solution
 
GSK: How Knowledge Graphs Improve Clinical Reporting Workflows
GSK: How Knowledge Graphs Improve Clinical Reporting WorkflowsGSK: How Knowledge Graphs Improve Clinical Reporting Workflows
GSK: How Knowledge Graphs Improve Clinical Reporting Workflows
 
What is Hadoop | Introduction to Hadoop | Hadoop Tutorial | Hadoop Training |...
What is Hadoop | Introduction to Hadoop | Hadoop Tutorial | Hadoop Training |...What is Hadoop | Introduction to Hadoop | Hadoop Tutorial | Hadoop Training |...
What is Hadoop | Introduction to Hadoop | Hadoop Tutorial | Hadoop Training |...
 
Top Three Big Data Governance Issues and How Apache ATLAS resolves it for the...
Top Three Big Data Governance Issues and How Apache ATLAS resolves it for the...Top Three Big Data Governance Issues and How Apache ATLAS resolves it for the...
Top Three Big Data Governance Issues and How Apache ATLAS resolves it for the...
 
Data Lake Architecture
Data Lake ArchitectureData Lake Architecture
Data Lake Architecture
 
Hadoop Tutorial For Beginners
Hadoop Tutorial For BeginnersHadoop Tutorial For Beginners
Hadoop Tutorial For Beginners
 
Getting Started with Databricks SQL Analytics
Getting Started with Databricks SQL AnalyticsGetting Started with Databricks SQL Analytics
Getting Started with Databricks SQL Analytics
 
MapReduce Example | MapReduce Programming | Hadoop MapReduce Tutorial | Edureka
MapReduce Example | MapReduce Programming | Hadoop MapReduce Tutorial | Edureka MapReduce Example | MapReduce Programming | Hadoop MapReduce Tutorial | Edureka
MapReduce Example | MapReduce Programming | Hadoop MapReduce Tutorial | Edureka
 

Viewers also liked

Practical Problem Solving with Apache Hadoop & Pig
Practical Problem Solving with Apache Hadoop & PigPractical Problem Solving with Apache Hadoop & Pig
Practical Problem Solving with Apache Hadoop & Pig
Milind Bhandarkar
 
Introduction To Map Reduce
Introduction To Map ReduceIntroduction To Map Reduce
Introduction To Map Reduce
rantav
 
Seminar Presentation Hadoop
Seminar Presentation HadoopSeminar Presentation Hadoop
Seminar Presentation Hadoop
Varun Narang
 

Viewers also liked (16)

Hadoop, Pig, and Twitter (NoSQL East 2009)
Hadoop, Pig, and Twitter (NoSQL East 2009)Hadoop, Pig, and Twitter (NoSQL East 2009)
Hadoop, Pig, and Twitter (NoSQL East 2009)
 
Pig, Making Hadoop Easy
Pig, Making Hadoop EasyPig, Making Hadoop Easy
Pig, Making Hadoop Easy
 
introduction to data processing using Hadoop and Pig
introduction to data processing using Hadoop and Pigintroduction to data processing using Hadoop and Pig
introduction to data processing using Hadoop and Pig
 
Integration of Hive and HBase
Integration of Hive and HBaseIntegration of Hive and HBase
Integration of Hive and HBase
 
Practical Problem Solving with Apache Hadoop & Pig
Practical Problem Solving with Apache Hadoop & PigPractical Problem Solving with Apache Hadoop & Pig
Practical Problem Solving with Apache Hadoop & Pig
 
Introduction To Map Reduce
Introduction To Map ReduceIntroduction To Map Reduce
Introduction To Map Reduce
 
Hive Quick Start Tutorial
Hive Quick Start TutorialHive Quick Start Tutorial
Hive Quick Start Tutorial
 
Big Data Analytics with Hadoop
Big Data Analytics with HadoopBig Data Analytics with Hadoop
Big Data Analytics with Hadoop
 
Big Data & Hadoop Tutorial
Big Data & Hadoop TutorialBig Data & Hadoop Tutorial
Big Data & Hadoop Tutorial
 
Hadoop introduction , Why and What is Hadoop ?
Hadoop introduction , Why and What is  Hadoop ?Hadoop introduction , Why and What is  Hadoop ?
Hadoop introduction , Why and What is Hadoop ?
 
Seminar Presentation Hadoop
Seminar Presentation HadoopSeminar Presentation Hadoop
Seminar Presentation Hadoop
 
Big data and Hadoop
Big data and HadoopBig data and Hadoop
Big data and Hadoop
 
Hadoop - Overview
Hadoop - OverviewHadoop - Overview
Hadoop - Overview
 
Hadoop demo ppt
Hadoop demo pptHadoop demo ppt
Hadoop demo ppt
 
A beginners guide to Cloudera Hadoop
A beginners guide to Cloudera HadoopA beginners guide to Cloudera Hadoop
A beginners guide to Cloudera Hadoop
 
Hadoop
HadoopHadoop
Hadoop
 

Similar to Facebooks Petabyte Scale Data Warehouse using Hive and Hadoop

Fb talk arch_summit
Fb talk arch_summitFb talk arch_summit
Fb talk arch_summit
drewz lin
 
Hadoop and Hive Development at Facebook
Hadoop and Hive Development at  FacebookHadoop and Hive Development at  Facebook
Hadoop and Hive Development at Facebook
S S
 
Hadoop and Hive Development at Facebook
Hadoop and Hive Development at FacebookHadoop and Hive Development at Facebook
Hadoop and Hive Development at Facebook
elliando dias
 
Facebook hadoop-summit
Facebook hadoop-summitFacebook hadoop-summit
Facebook hadoop-summit
S S
 
Hive @ Hadoop day seattle_2010
Hive @ Hadoop day seattle_2010Hive @ Hadoop day seattle_2010
Hive @ Hadoop day seattle_2010
nzhang
 
Big data hadoop ecosystem and nosql
Big data hadoop ecosystem and nosqlBig data hadoop ecosystem and nosql
Big data hadoop ecosystem and nosql
Khanderao Kand
 
Taylor bosc2010
Taylor bosc2010Taylor bosc2010
Taylor bosc2010
BOSC 2010
 
Big Data in the Microsoft Platform
Big Data in the Microsoft PlatformBig Data in the Microsoft Platform
Big Data in the Microsoft Platform
Jesus Rodriguez
 

Similar to Facebooks Petabyte Scale Data Warehouse using Hive and Hadoop (20)

How Hadoop Revolutionized Data Warehousing at Yahoo and Facebook
How Hadoop Revolutionized Data Warehousing at Yahoo and FacebookHow Hadoop Revolutionized Data Warehousing at Yahoo and Facebook
How Hadoop Revolutionized Data Warehousing at Yahoo and Facebook
 
Fb talk arch_summit
Fb talk arch_summitFb talk arch_summit
Fb talk arch_summit
 
Apache Hadoop an Introduction - Todd Lipcon - Gluecon 2010
Apache Hadoop an Introduction - Todd Lipcon - Gluecon 2010Apache Hadoop an Introduction - Todd Lipcon - Gluecon 2010
Apache Hadoop an Introduction - Todd Lipcon - Gluecon 2010
 
Data infrastructure at Facebook
Data infrastructure at Facebook Data infrastructure at Facebook
Data infrastructure at Facebook
 
Hadoop
HadoopHadoop
Hadoop
 
Hadoop and Hive Development at Facebook
Hadoop and Hive Development at  FacebookHadoop and Hive Development at  Facebook
Hadoop and Hive Development at Facebook
 
Hadoop and Hive Development at Facebook
Hadoop and Hive Development at FacebookHadoop and Hive Development at Facebook
Hadoop and Hive Development at Facebook
 
Big data or big deal
Big data or big dealBig data or big deal
Big data or big deal
 
Facebook hadoop-summit
Facebook hadoop-summitFacebook hadoop-summit
Facebook hadoop-summit
 
Hive @ Hadoop day seattle_2010
Hive @ Hadoop day seattle_2010Hive @ Hadoop day seattle_2010
Hive @ Hadoop day seattle_2010
 
Overview of big data & hadoop version 1 - Tony Nguyen
Overview of big data & hadoop   version 1 - Tony NguyenOverview of big data & hadoop   version 1 - Tony Nguyen
Overview of big data & hadoop version 1 - Tony Nguyen
 
Overview of Big data, Hadoop and Microsoft BI - version1
Overview of Big data, Hadoop and Microsoft BI - version1Overview of Big data, Hadoop and Microsoft BI - version1
Overview of Big data, Hadoop and Microsoft BI - version1
 
عصر کلان داده، چرا و چگونه؟
عصر کلان داده، چرا و چگونه؟عصر کلان داده، چرا و چگونه؟
عصر کلان داده، چرا و چگونه؟
 
Hadoop Demystified + MapReduce (Java and C#), Pig, and Hive Demos
Hadoop Demystified + MapReduce (Java and C#), Pig, and Hive DemosHadoop Demystified + MapReduce (Java and C#), Pig, and Hive Demos
Hadoop Demystified + MapReduce (Java and C#), Pig, and Hive Demos
 
Hopsworks in the cloud Berlin Buzzwords 2019
Hopsworks in the cloud Berlin Buzzwords 2019 Hopsworks in the cloud Berlin Buzzwords 2019
Hopsworks in the cloud Berlin Buzzwords 2019
 
Change Data Capture to Data Lakes Using Apache Pulsar and Apache Hudi - Pulsa...
Change Data Capture to Data Lakes Using Apache Pulsar and Apache Hudi - Pulsa...Change Data Capture to Data Lakes Using Apache Pulsar and Apache Hudi - Pulsa...
Change Data Capture to Data Lakes Using Apache Pulsar and Apache Hudi - Pulsa...
 
HBaseCon 2013: Apache Drill - A Community-driven Initiative to Deliver ANSI S...
HBaseCon 2013: Apache Drill - A Community-driven Initiative to Deliver ANSI S...HBaseCon 2013: Apache Drill - A Community-driven Initiative to Deliver ANSI S...
HBaseCon 2013: Apache Drill - A Community-driven Initiative to Deliver ANSI S...
 
Big data hadoop ecosystem and nosql
Big data hadoop ecosystem and nosqlBig data hadoop ecosystem and nosql
Big data hadoop ecosystem and nosql
 
Taylor bosc2010
Taylor bosc2010Taylor bosc2010
Taylor bosc2010
 
Big Data in the Microsoft Platform
Big Data in the Microsoft PlatformBig Data in the Microsoft Platform
Big Data in the Microsoft Platform
 

More from royans

Hadoop: Distributed data processing
Hadoop: Distributed data processingHadoop: Distributed data processing
Hadoop: Distributed data processing
royans
 

More from royans (17)

Hadoop: Distributed data processing
Hadoop: Distributed data processingHadoop: Distributed data processing
Hadoop: Distributed data processing
 
Web20expo Filesystems
Web20expo FilesystemsWeb20expo Filesystems
Web20expo Filesystems
 
Flickr Services
Flickr ServicesFlickr Services
Flickr Services
 
Web20expo Scalable Web Arch
Web20expo Scalable Web ArchWeb20expo Scalable Web Arch
Web20expo Scalable Web Arch
 
Flickr Php
Flickr PhpFlickr Php
Flickr Php
 
Grid – Distributed Computing at Scale
Grid – Distributed Computing at ScaleGrid – Distributed Computing at Scale
Grid – Distributed Computing at Scale
 
How Typepad changed their architecture without taking down the service
How Typepad changed their architecture without taking down the serviceHow Typepad changed their architecture without taking down the service
How Typepad changed their architecture without taking down the service
 
Dmk Bo2 K7 Web
Dmk Bo2 K7 WebDmk Bo2 K7 Web
Dmk Bo2 K7 Web
 
21 Www Web Services
21 Www Web Services21 Www Web Services
21 Www Web Services
 
Web20expo Filesystems
Web20expo FilesystemsWeb20expo Filesystems
Web20expo Filesystems
 
Web Design World Flickr
Web Design World FlickrWeb Design World Flickr
Web Design World Flickr
 
Flickr Services
Flickr ServicesFlickr Services
Flickr Services
 
Filesystems
FilesystemsFilesystems
Filesystems
 
Scalable Web Arch
Scalable Web ArchScalable Web Arch
Scalable Web Arch
 
Web 2.0 Summit Flickr
Web 2.0 Summit FlickrWeb 2.0 Summit Flickr
Web 2.0 Summit Flickr
 
Web20expo Filesystems
Web20expo FilesystemsWeb20expo Filesystems
Web20expo Filesystems
 
Etech2005
Etech2005Etech2005
Etech2005
 

Recently uploaded

Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Victor Rentea
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 

Recently uploaded (20)

Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptx
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 

Facebooks Petabyte Scale Data Warehouse using Hive and Hadoop

  • 1. Facebook’s Petabyte Scale Data Warehouse using Hive and Hadoop Wednesday, January 27, 2010
  • 2. Why Another Data Warehousing System? Data, data and more data 200GB per day in March 2008 12+TB(compressed) raw data per day today Wednesday, January 27, 2010
  • 3. Trends Leading to More Data Wednesday, January 27, 2010
  • 4. Trends Leading to More Data Free or low cost of user services Wednesday, January 27, 2010
  • 5. Trends Leading to More Data Free or low cost of user services Realization that more insights are derived from simple algorithms on more data Wednesday, January 27, 2010
  • 6. Deficiencies of Existing Technologies Wednesday, January 27, 2010
  • 7. Deficiencies of Existing Technologies Cost of Analysis and Storage on proprietary systems does not support trends towards more data Wednesday, January 27, 2010
  • 8. Deficiencies of Existing Technologies Cost of Analysis and Storage on proprietary systems does not support trends towards more data Limited Scalability does not support trends towards more data Wednesday, January 27, 2010
  • 9. Deficiencies of Existing Technologies Cost of Analysis and Storage on proprietary systems does not support trends towards more data Limited Scalability does not support trends towards more data Closed and Proprietary Systems Wednesday, January 27, 2010
  • 10. Lets try Hadoop…  Pros – Superior in availability/scalability/manageability – Efficiency not that great, but throw more hardware – Partial Availability/resilience/scale more important than ACID  Cons: Programmability and Metadata – Map-reduce hard to program (users know sql/bash/python) – Need to publish data in well known schemas  Solution: HIVE Wednesday, January 27, 2010
  • 11. What is HIVE?  A system for managing and querying structured data built on top of Hadoop – Map-Reduce for execution – HDFS for storage – Metadata in an RDBMS  Key Building Principles: – SQL as a familiar data warehousing tool – Extensibility – Types, Functions, Formats, Scripts – Scalability and Performance – Interoperability Wednesday, January 27, 2010
  • 12. Why SQL on Hadoop? hive> select key, count(1) from kv1 where key > 100 group by key; vs. $ cat > /tmp/reducer.sh uniq -c | awk '{print $2"t"$1}‘ $ cat > /tmp/map.sh awk -F '001' '{if($1 > 100) print $1}‘ $ bin/hadoop jar contrib/hadoop-0.19.2-dev-streaming.jar -input /user/hive/warehouse/kv1 - mapper map.sh -file /tmp/reducer.sh -file /tmp/map.sh -reducer reducer.sh -output /tmp/ largekey -numReduceTasks 1 $ bin/hadoop dfs –cat /tmp/largekey/part* Wednesday, January 27, 2010
  • 13. Data Flow Architecture at Facebook Wednesday, January 27, 2010
  • 14. Data Flow Architecture at Facebook Web Servers Wednesday, January 27, 2010
  • 15. Data Flow Architecture at Facebook Web Servers Scribe MidTier Wednesday, January 27, 2010
  • 16. Data Flow Architecture at Facebook Filers Web Servers Scribe MidTier Scribe-Hadoop Cluster Wednesday, January 27, 2010
  • 17. Data Flow Architecture at Facebook Filers Web Servers Scribe MidTier Scribe-Hadoop Cluster Federated MySQL Wednesday, January 27, 2010
  • 18. Data Flow Architecture at Facebook Filers Web Servers Scribe MidTier Scribe-Hadoop Cluster Production Hive-Hadoop Cluster Federated MySQL Wednesday, January 27, 2010
  • 19. Data Flow Architecture at Facebook Filers Web Servers Scribe MidTier Scribe-Hadoop Cluster Production Hive-Hadoop Cluster Oracle RAC Federated MySQL Wednesday, January 27, 2010
  • 20. Data Flow Architecture at Facebook Filers Web Servers Scribe MidTier Hive replication Scribe-Hadoop Cluster Production Hive-Hadoop Cluster Oracle RAC Federated MySQL Wednesday, January 27, 2010
  • 21. Data Flow Architecture at Facebook Filers Web Servers Scribe MidTier Hive replication Scribe-Hadoop Cluster Adhoc Hive-Hadoop Cluster Production Hive-Hadoop Cluster Oracle RAC Federated MySQL Wednesday, January 27, 2010
  • 22. Scribe & Hadoop Clusters @ Facebook  Used to log data from web servers  Clusters collocated with the web servers  Network is the biggest bottleneck  Typical cluster has about 50 nodes.  Stats: – ~ 25TB/day of raw data logged – 99% of the time data is available within 20 seconds Wednesday, January 27, 2010
  • 23. Hadoop & Hive Cluster @ Facebook  Hadoop/Hive cluster – 8400 cores – Raw Storage capacity ~ 12.5PB – 8 cores + 12 TB per node – 32 GB RAM per node – Two level network topology  1 Gbit/sec from node to rack switch  4 Gbit/sec to top level rack switch  2 clusters – One for adhoc users – One for strict SLA jobs Wednesday, January 27, 2010
  • 24. Hive & Hadoop Usage @ Facebook  Statistics per day: – 12 TB of compressed new data added per day – 135TB of compressed data scanned per day – 7500+ Hive jobs per day – 80K compute hours per day  Hive simplifies Hadoop: – New engineers go though a Hive training session – ~200 people/month run jobs on Hadoop/Hive – Analysts (non-engineers) use Hadoop through Hive – Most of jobs are Hive Jobs Wednesday, January 27, 2010
  • 25. Hive & Hadoop Usage @ Facebook  Types of Applications: – Reporting  Eg: Daily/Weekly aggregations of impression/click counts  Measures of user engagement  Microstrategy reports – Ad hoc Analysis  Eg: how many group admins broken down by state/country – Machine Learning (Assembling training data)  Ad Optimization  Eg: User Engagement as a function of user attributes – Many others Wednesday, January 27, 2010
  • 26. More about HIVE Wednesday, January 27, 2010
  • 27. Data Model Name HDFS Directory Table pvs /wh/pvs Partition ds = 20090801, ctry = US /wh/pvs/ds=20090801/ctry=US /wh/pvs/ds=20090801/ctry=US/ Bucket user into 32 buckets part-00000 HDFS file for user hash 0 Wednesday, January 27, 2010
  • 28. Hive Query Language  SQL – Sub-queries in from clause – Equi-joins (including Outer joins) – Multi-table Insert – Multi-group-by – Embedding Custom Map/Reduce in SQL  Sampling  Primitive Types – integer types, float, string, boolean  Nestable Collections – array<any-type> and map<primitive-type, any-type>  User-defined types – Structures with attributes which can be of any-type Wednesday, January 27, 2010
  • 29. Optimizations  Joins try to reduce the number of map/reduce jobs needed.  Memory efficient joins by streaming largest tables.  Map Joins – User specified small tables stored in hash tables on the mapper – No reducer needed  Map side partial aggregations – Hash-based aggregates – Serialized key/values in hash tables – 90% speed improvement on Query  SELECT count(1) FROM t;  Load balancing for data skew Wednesday, January 27, 2010
  • 30. Hive: Open & Extensible  Different on-disk storage(file) formats – Text File, Sequence File, …  Different serialization formats and data types – LazySimpleSerDe, ThriftSerDe …  User-provided map/reduce scripts – In any language, use stdin/stdout to transfer data …  User-defined Functions – Substr, Trim, From_unixtime …  User-defined Aggregation Functions – Sum, Average …  User-define Table Functions – Explode … Wednesday, January 27, 2010
  • 31. Existing File Formats TEXTFILE SEQUENCEFILE RCFILE Data type text only text/binary text/binary Internal Row-based Row-based Column-based Storage order Compression File-based Block-based Block-based Splitable* YES YES YES Splitable* after NO YES YES compression * Splitable: Capable of splitting the file so that a single huge file can be processed by multiple mappers in parallel. Wednesday, January 27, 2010
  • 32. Map/Reduce Scripts Examples  add file page_url_to_id.py;  add file my_python_session_cutter.py;  FROM (MAP uhash, page_url, unix_time USING 'page_url_to_id.py' AS (uhash, page_id, unix_time) FROM mylog DISTRIBUTE BY uhash SORT BY uhash, unix_time) mylog2 REDUCE uhash, page_id, unix_time USING 'my_python_session_cutter.py' AS (uhash, session_info); Wednesday, January 27, 2010
  • 33. UDF Example  add jar build/ql/test/test-udfs.jar;  CREATE TEMPORARY FUNCTION testlength AS 'org.apache.hadoop.hive.ql.udf.UDFTestLength';  SELECT testlength(page_url) FROM mylog;  DROP TEMPORARY FUNCTION testlength;  UDFTestLength.java: package org.apache.hadoop.hive.ql.udf; public class UDFTestLength extends UDF { public Integer evaluate(String s) { if (s == null) { return null; } return s.length(); } } Wednesday, January 27, 2010
  • 34. Comparison of UDF/UDAF/UDTF v.s. M/R scripts UDF/UDAF/UDTF M/R scripts language Java any language data format in-memory objects serialized streams 1/1 input/output supported via UDF supported n/1 input/output supported via UDAF supported 1/n input/output supported via UDTF supported Speed faster slower Wednesday, January 27, 2010
  • 35. Interoperability: Interfaces  JDBC – Enables integration with JDBC based SQL clients  ODBC – Enables integration with Microstrategy  Thrift – Enables writing cross language clients – Main form of integration with php based Web UI Wednesday, January 27, 2010
  • 36. Interoperability: Microstrategy  Beta integration with version 8  Free form SQL support  Periodically pre-compute the cube Wednesday, January 27, 2010
  • 37. Operational Aspects on Adhoc cluster  Data Discovery – coHive  Discover tables  Talk to expert users of a table  Browse table lineage  Monitoring – Resource utilization by individual, project, group – SLA monitoring etc. – Bad user reports etc. Wednesday, January 27, 2010
  • 38. HiPal & CoHive (Not open source) Wednesday, January 27, 2010
  • 39. Open Source Community  Released Hive-0.4 on 10/13/2009  50 contributors and growing  11 committers – 3 external to Facebook  Available as a sub project in Hadoop - http://wiki.apache.org/hadoop/Hive (wiki) - http://hadoop.apache.org/hive (home page) - http://svn.apache.org/repos/asf/hadoop/hive (SVN repo) - ##hive (IRC) - Works with hadoop-0.17, 0.18, 0.19, 0.20  Mailing Lists: – hive-{user,dev,commits}@hadoop.apache.org Wednesday, January 27, 2010
  • 40. Powered by Hive Wednesday, January 27, 2010