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 (20)

Big data architecture
Big data architectureBig data architecture
Big data architecture
 
Hadoop YARN
Hadoop YARNHadoop YARN
Hadoop YARN
 
Hadoop Distributed File System
Hadoop Distributed File SystemHadoop Distributed File System
Hadoop Distributed File System
 
Mastering AIOps with Deep Learning
Mastering AIOps with Deep LearningMastering AIOps with Deep Learning
Mastering AIOps with Deep Learning
 
Hadoop distributed file system
Hadoop distributed file systemHadoop distributed file system
Hadoop distributed file system
 
Big Data Technology Stack : Nutshell
Big Data Technology Stack : NutshellBig Data Technology Stack : Nutshell
Big Data Technology Stack : Nutshell
 
Hadoop: An Industry Perspective
Hadoop: An Industry PerspectiveHadoop: An Industry Perspective
Hadoop: An Industry Perspective
 
Big Data and Hadoop
Big Data and HadoopBig Data and Hadoop
Big Data and Hadoop
 
Hadoop
HadoopHadoop
Hadoop
 
Hadoop
HadoopHadoop
Hadoop
 
Big data
Big dataBig data
Big data
 
Big data
Big dataBig data
Big data
 
Big Data Analytics
Big Data AnalyticsBig Data Analytics
Big Data Analytics
 
Big data analytics - hadoop
Big data analytics - hadoopBig data analytics - hadoop
Big data analytics - hadoop
 
Hadoop And Their Ecosystem ppt
 Hadoop And Their Ecosystem ppt Hadoop And Their Ecosystem ppt
Hadoop And Their Ecosystem ppt
 
Big Data in Azure
Big Data in AzureBig Data in Azure
Big Data in Azure
 
Introduction to Apache Hadoop Eco-System
Introduction to Apache Hadoop Eco-SystemIntroduction to Apache Hadoop Eco-System
Introduction to Apache Hadoop Eco-System
 
Big Data Analytics with Hadoop
Big Data Analytics with HadoopBig Data Analytics with Hadoop
Big Data Analytics with Hadoop
 
Data weekender4.2 azure purview erwin de kreuk
Data weekender4.2  azure purview erwin de kreukData weekender4.2  azure purview erwin de kreuk
Data weekender4.2 azure purview erwin de kreuk
 
Une Introduction à Hadoop
Une Introduction à HadoopUne Introduction à Hadoop
Une Introduction à Hadoop
 

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 & 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
 
Hadoop Overview & Architecture
Hadoop Overview & Architecture  Hadoop Overview & Architecture
Hadoop Overview & Architecture EMC
 

Viewers also liked (15)

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 & 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 Overview & Architecture
Hadoop Overview & Architecture  Hadoop Overview & Architecture
Hadoop Overview & Architecture
 

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

From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
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 WorkerThousandEyes
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 

Recently uploaded (20)

From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
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
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 

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