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

Building Your Enterprise Data Marketplace with DMX-h
Building Your Enterprise Data Marketplace with DMX-hBuilding Your Enterprise Data Marketplace with DMX-h
Building Your Enterprise Data Marketplace with DMX-hPrecisely
 
Hadoop File system (HDFS)
Hadoop File system (HDFS)Hadoop File system (HDFS)
Hadoop File system (HDFS)Prashant Gupta
 
Addressing Big Data Challenges - The Hadoop Way
Addressing Big Data Challenges - The Hadoop WayAddressing Big Data Challenges - The Hadoop Way
Addressing Big Data Challenges - The Hadoop WayXoriant Corporation
 
Modernizing to a Cloud Data Architecture
Modernizing to a Cloud Data ArchitectureModernizing to a Cloud Data Architecture
Modernizing to a Cloud Data ArchitectureDatabricks
 
Big Data & Data Lakes Building Blocks
Big Data & Data Lakes Building BlocksBig Data & Data Lakes Building Blocks
Big Data & Data Lakes Building BlocksAmazon Web Services
 
Introduction to Apache Hadoop Eco-System
Introduction to Apache Hadoop Eco-SystemIntroduction to Apache Hadoop Eco-System
Introduction to Apache Hadoop Eco-SystemMd. Hasan Basri (Angel)
 
Parquet performance tuning: the missing guide
Parquet performance tuning: the missing guideParquet performance tuning: the missing guide
Parquet performance tuning: the missing guideRyan Blue
 
Architect’s Open-Source Guide for a Data Mesh Architecture
Architect’s Open-Source Guide for a Data Mesh ArchitectureArchitect’s Open-Source Guide for a Data Mesh Architecture
Architect’s Open-Source Guide for a Data Mesh ArchitectureDatabricks
 
Activate Data Governance Using the Data Catalog
Activate Data Governance Using the Data CatalogActivate Data Governance Using the Data Catalog
Activate Data Governance Using the Data CatalogDATAVERSITY
 
Introduction to Big Data
Introduction to Big DataIntroduction to Big Data
Introduction to Big DataVipin Batra
 
Hive and HiveQL - Module6
Hive and HiveQL - Module6Hive and HiveQL - Module6
Hive and HiveQL - Module6Rohit Agrawal
 
Diving into Delta Lake: Unpacking the Transaction Log
Diving into Delta Lake: Unpacking the Transaction LogDiving into Delta Lake: Unpacking the Transaction Log
Diving into Delta Lake: Unpacking the Transaction LogDatabricks
 
Hive Training -- Motivations and Real World Use Cases
Hive Training -- Motivations and Real World Use CasesHive Training -- Motivations and Real World Use Cases
Hive Training -- Motivations and Real World Use Casesnzhang
 
Hadoop Overview & Architecture
Hadoop Overview & Architecture  Hadoop Overview & Architecture
Hadoop Overview & Architecture EMC
 

What's hot (20)

Building Your Enterprise Data Marketplace with DMX-h
Building Your Enterprise Data Marketplace with DMX-hBuilding Your Enterprise Data Marketplace with DMX-h
Building Your Enterprise Data Marketplace with DMX-h
 
Hadoop ecosystem
Hadoop ecosystemHadoop ecosystem
Hadoop ecosystem
 
Hadoop File system (HDFS)
Hadoop File system (HDFS)Hadoop File system (HDFS)
Hadoop File system (HDFS)
 
Addressing Big Data Challenges - The Hadoop Way
Addressing Big Data Challenges - The Hadoop WayAddressing Big Data Challenges - The Hadoop Way
Addressing Big Data Challenges - The Hadoop Way
 
Modernizing to a Cloud Data Architecture
Modernizing to a Cloud Data ArchitectureModernizing to a Cloud Data Architecture
Modernizing to a Cloud Data Architecture
 
Big Data & Data Lakes Building Blocks
Big Data & Data Lakes Building BlocksBig Data & Data Lakes Building Blocks
Big Data & Data Lakes Building Blocks
 
Hadoop technology
Hadoop technologyHadoop technology
Hadoop technology
 
Introduction to Apache Hadoop Eco-System
Introduction to Apache Hadoop Eco-SystemIntroduction to Apache Hadoop Eco-System
Introduction to Apache Hadoop Eco-System
 
Redshift VS BigQuery
Redshift VS BigQueryRedshift VS BigQuery
Redshift VS BigQuery
 
Parquet performance tuning: the missing guide
Parquet performance tuning: the missing guideParquet performance tuning: the missing guide
Parquet performance tuning: the missing guide
 
Architect’s Open-Source Guide for a Data Mesh Architecture
Architect’s Open-Source Guide for a Data Mesh ArchitectureArchitect’s Open-Source Guide for a Data Mesh Architecture
Architect’s Open-Source Guide for a Data Mesh Architecture
 
Apache hive introduction
Apache hive introductionApache hive introduction
Apache hive introduction
 
Activate Data Governance Using the Data Catalog
Activate Data Governance Using the Data CatalogActivate Data Governance Using the Data Catalog
Activate Data Governance Using the Data Catalog
 
Introduction to Big Data
Introduction to Big DataIntroduction to Big Data
Introduction to Big Data
 
Hive and HiveQL - Module6
Hive and HiveQL - Module6Hive and HiveQL - Module6
Hive and HiveQL - Module6
 
Diving into Delta Lake: Unpacking the Transaction Log
Diving into Delta Lake: Unpacking the Transaction LogDiving into Delta Lake: Unpacking the Transaction Log
Diving into Delta Lake: Unpacking the Transaction Log
 
Hive Training -- Motivations and Real World Use Cases
Hive Training -- Motivations and Real World Use CasesHive Training -- Motivations and Real World Use Cases
Hive Training -- Motivations and Real World Use Cases
 
Internal Hive
Internal HiveInternal Hive
Internal Hive
 
How to build a successful Data Lake
How to build a successful Data LakeHow to build a successful Data Lake
How to build a successful Data Lake
 
Hadoop Overview & Architecture
Hadoop Overview & Architecture  Hadoop Overview & Architecture
Hadoop Overview & Architecture
 

Viewers also liked

HIVE: Data Warehousing & Analytics on Hadoop
HIVE: Data Warehousing & Analytics on HadoopHIVE: Data Warehousing & Analytics on Hadoop
HIVE: Data Warehousing & Analytics on HadoopZheng Shao
 
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)Kevin Weil
 
Pig, Making Hadoop Easy
Pig, Making Hadoop EasyPig, Making Hadoop Easy
Pig, Making Hadoop EasyNick Dimiduk
 
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 PigRicardo Varela
 
Integration of Hive and HBase
Integration of Hive and HBaseIntegration of Hive and HBase
Integration of Hive and HBaseHortonworks
 
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 & PigMilind Bhandarkar
 
Introduction To Map Reduce
Introduction To Map ReduceIntroduction To Map Reduce
Introduction To Map Reducerantav
 
Hive Quick Start Tutorial
Hive Quick Start TutorialHive Quick Start Tutorial
Hive Quick Start TutorialCarl Steinbach
 
Big Data Analytics with Hadoop
Big Data Analytics with HadoopBig Data Analytics with Hadoop
Big Data Analytics with HadoopPhilippe Julio
 
Big Data & Hadoop Tutorial
Big Data & Hadoop TutorialBig Data & Hadoop Tutorial
Big Data & Hadoop TutorialEdureka!
 
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 ?sudhakara st
 
Seminar Presentation Hadoop
Seminar Presentation HadoopSeminar Presentation Hadoop
Seminar Presentation HadoopVarun Narang
 
Hadoop - Overview
Hadoop - OverviewHadoop - Overview
Hadoop - OverviewJay
 
Hadoop demo ppt
Hadoop demo pptHadoop demo ppt
Hadoop demo pptPhil Young
 
A beginners guide to Cloudera Hadoop
A beginners guide to Cloudera HadoopA beginners guide to Cloudera Hadoop
A beginners guide to Cloudera HadoopDavid Yahalom
 

Viewers also liked (16)

HIVE: Data Warehousing & Analytics on Hadoop
HIVE: Data Warehousing & Analytics on HadoopHIVE: Data Warehousing & Analytics on Hadoop
HIVE: Data Warehousing & Analytics on Hadoop
 
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
 
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

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 FacebookAmr Awadallah
 
Fb talk arch_summit
Fb talk arch_summitFb talk arch_summit
Fb talk arch_summitdrewz lin
 
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 2010Cloudera, Inc.
 
Data infrastructure at Facebook
Data infrastructure at Facebook Data infrastructure at Facebook
Data infrastructure at Facebook AhmedDoukh
 
Hadoop and Hive Development at Facebook
Hadoop and Hive Development at  FacebookHadoop and Hive Development at  Facebook
Hadoop and Hive Development at FacebookS S
 
Hadoop and Hive Development at Facebook
Hadoop and Hive Development at FacebookHadoop and Hive Development at Facebook
Hadoop and Hive Development at Facebookelliando dias
 
Big data or big deal
Big data or big dealBig data or big deal
Big data or big dealeduarderwee
 
Facebook hadoop-summit
Facebook hadoop-summitFacebook hadoop-summit
Facebook hadoop-summitS S
 
Hive @ Hadoop day seattle_2010
Hive @ Hadoop day seattle_2010Hive @ Hadoop day seattle_2010
Hive @ Hadoop day seattle_2010nzhang
 
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 NguyenThanh 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 - version1Thanh Nguyen
 
عصر کلان داده، چرا و چگونه؟
عصر کلان داده، چرا و چگونه؟عصر کلان داده، چرا و چگونه؟
عصر کلان داده، چرا و چگونه؟datastack
 
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 DemosLester Martin
 
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 Jim Dowling
 
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...StreamNative
 
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...Cloudera, Inc.
 
Big data hadoop ecosystem and nosql
Big data hadoop ecosystem and nosqlBig data hadoop ecosystem and nosql
Big data hadoop ecosystem and nosqlKhanderao Kand
 
Taylor bosc2010
Taylor bosc2010Taylor bosc2010
Taylor bosc2010BOSC 2010
 
Big Data in the Microsoft Platform
Big Data in the Microsoft PlatformBig Data in the Microsoft Platform
Big Data in the Microsoft PlatformJesus 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 processingroyans
 
Web20expo Filesystems
Web20expo FilesystemsWeb20expo Filesystems
Web20expo Filesystemsroyans
 
Flickr Services
Flickr ServicesFlickr Services
Flickr Servicesroyans
 
Web20expo Scalable Web Arch
Web20expo Scalable Web ArchWeb20expo Scalable Web Arch
Web20expo Scalable Web Archroyans
 
Flickr Php
Flickr PhpFlickr Php
Flickr Phproyans
 
Grid – Distributed Computing at Scale
Grid – Distributed Computing at ScaleGrid – Distributed Computing at Scale
Grid – Distributed Computing at Scaleroyans
 
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 serviceroyans
 
Dmk Bo2 K7 Web
Dmk Bo2 K7 WebDmk Bo2 K7 Web
Dmk Bo2 K7 Webroyans
 
21 Www Web Services
21 Www Web Services21 Www Web Services
21 Www Web Servicesroyans
 
Web20expo Filesystems
Web20expo FilesystemsWeb20expo Filesystems
Web20expo Filesystemsroyans
 
Web Design World Flickr
Web Design World FlickrWeb Design World Flickr
Web Design World Flickrroyans
 
Flickr Services
Flickr ServicesFlickr Services
Flickr Servicesroyans
 
Filesystems
FilesystemsFilesystems
Filesystemsroyans
 
Scalable Web Arch
Scalable Web ArchScalable Web Arch
Scalable Web Archroyans
 
Web 2.0 Summit Flickr
Web 2.0 Summit FlickrWeb 2.0 Summit Flickr
Web 2.0 Summit Flickrroyans
 
Web20expo Filesystems
Web20expo FilesystemsWeb20expo Filesystems
Web20expo Filesystemsroyans
 
Etech2005
Etech2005Etech2005
Etech2005royans
 

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

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
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
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
 
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DaySri Ambati
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
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
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
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
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 

Recently uploaded (20)

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
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 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
 
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
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
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
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
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 

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