SlideShare a Scribd company logo
1 of 14
HCatalog
Table Management for Hadoop
Alan F. Gates
Motivation: Data Sharing is Hard
                                                                   This is analyst Joe, he uses
This is programmer Bob, he                                         Hive to build reports and
uses Pig to crunch data.                                           answer ad-hoc queries.

                                                    Joe, I need
                                                    today’s data


                                                          Ok

Photo Credit: totalAldo via Flickr



                            Hmm, is it done yet? Where is it? What format did
                            you use to store it today? Is it compressed? And
                            can you help me load it into Hive, I can never
                            remember all the parameters I have to pass that
                            alter table command.

                                     Dude, we need HCatalog
More Motivation: Each tool requires its own
Translator

         Pig                           Hive                     Map Reduce

  Hive HCatLoader                    HCatSerDe                RCFile    Custom
                                                               HCatInputFormat
              Custom            Columnar    Custom
  Columnar                                                    Input     Input
              Loader            SerDe       SerDe
  Loader                                                      Format Format


                                     HCatalog

                        RCFile            Custom
                        StorageDriver     StorageDriver



                                                     Custom
                       RCFile
                                                     Format
End User Example
raw     = load „/rawevents/20100819/data‟ using MyLoader()
          as (ts:long, user:chararray, url:chararray);
botless = filter raw by NotABot(user);
…
store output into „/processedevents/20100819/data‟;

Processedevents consumers must be manually informed by producer that data is
available, or poll on HDFS (= bad for the NameNode)


raw     = load „rawevents‟ using HCatLoader();
botless = filter raw by date = „20100819‟ and NotABot(user);
…
store output into „processedevents‟
          using HCatStorage(“date=20100819”);

Processedevents consumers will be notified by HCatalog data is available and can
then start their jobs
Command Line for DDL
• Uses Hive SQL
• Create, drop, alter table
• CREATE TABLE employee (
    emp_id         INT,
    emp_name       STRING,
    emp_start_date STRING,
    emp_gender     STRING)
  PARTITIONED BY (
    emp_country STRING,
    emp_state STRING)
  STORED AS RCFILE
  tblproperties(
  'hcat.isd'='RCFileInputDriver',
  'hcat.osd'='RCFileOutputDriver');
Manages Data Format and Schema Changes

• Allows columns to be appended to tables in new partitions
  − no need to change existing data
  − fields not present in old data will be read as null
  − must do „alter table add column‟ first
• Allows storage format changes
  − no need to change existing data, HCatalog will handle reading each
    partition in the appropriate format
  − all new partitions will be written in current format
Security
• Uses underlying storage permissions to determine
  authorization
  − Currently only works with HDFS based storage
  − If user can read from the HDFS directory, then he can read the table
  − If user can write to the HDFS directory, then he can write to the table
  − If the user can write to the database level directory, he can create and
    drop tables
  − Allows users to define which group to create table as so table access
    can be controlled by Unix group
• Authentication done via kerberos
Metadata Architecture

           HCatLoader             HCatStorage     HTTP
      HCatInputFormat     HCatOutputFormat        CLI    Notification
                        Hive metadata interface




                              Thrift
                              server                RDBMS


                         = Current HCatalog

                         = Hive

                         = Future HCatalog
Storage Architecture

               HCatLoader        HCatStorage
          HCatInputFormat   HCatOutputFormat
               Input             Output
           StorageDriver      StorageDriver




                HDFS             HBase
Project Status
• HCatalog was accepted to the Apache Incubator last March
• 0.2 released in October, includes:
  − Read/write from Pig
  − Read/write from MapReduce
  − Read/write from Hive
  − StorageDrivers for RCFile
  − Notification via JMS when data is available
  − Store to multiple partitions simultaneously
  − Import/Export tools
HCatalog 0.3
• Plan to release mid-December
• Adds a Binary type (to Hive and HCatalog)
• Storage drivers for JSON and text
• Improved integration with Hive for custom storage formats
• Web services interface
Future Plans
• Support for HBase and other data sources for storage
• RCFile compression improvements
• High Availability for Thrift server
• Data management interfaces for archivers, cleaners, etc.
• Additional metadata storage:
  − statistics
  − lineage/provenance
  − user tags
Get Involved
• incubator.apache.org/hcatalog
• Join the mailing lists
  − User list: hcatalog-user@incubator.apache.org
  − Dev list: hcatalog-dev@incubator.apache.org
Questions?

More Related Content

What's hot

Apache Hadoop India Summit 2011 talk "Pig - Making Hadoop Easy" by Alan Gate
Apache Hadoop India Summit 2011 talk "Pig - Making Hadoop Easy" by Alan GateApache Hadoop India Summit 2011 talk "Pig - Making Hadoop Easy" by Alan Gate
Apache Hadoop India Summit 2011 talk "Pig - Making Hadoop Easy" by Alan Gate
Yahoo Developer Network
 
Apache pig power_tools_by_viswanath_gangavaram_r&d_dsg_i_labs
Apache pig power_tools_by_viswanath_gangavaram_r&d_dsg_i_labsApache pig power_tools_by_viswanath_gangavaram_r&d_dsg_i_labs
Apache pig power_tools_by_viswanath_gangavaram_r&d_dsg_i_labs
Viswanath Gangavaram
 
Hadoop Performance Optimization at Scale, Lessons Learned at Twitter
Hadoop Performance Optimization at Scale, Lessons Learned at TwitterHadoop Performance Optimization at Scale, Lessons Learned at Twitter
Hadoop Performance Optimization at Scale, Lessons Learned at Twitter
DataWorks Summit
 
Hadoop - Stock Analysis
Hadoop - Stock AnalysisHadoop - Stock Analysis
Hadoop - Stock Analysis
Vaibhav Jain
 

What's hot (20)

PXF HAWQ Unmanaged Data
PXF HAWQ Unmanaged DataPXF HAWQ Unmanaged Data
PXF HAWQ Unmanaged Data
 
Introduction to Apache Pig
Introduction to Apache PigIntroduction to Apache Pig
Introduction to Apache Pig
 
Apache Hadoop India Summit 2011 talk "Pig - Making Hadoop Easy" by Alan Gate
Apache Hadoop India Summit 2011 talk "Pig - Making Hadoop Easy" by Alan GateApache Hadoop India Summit 2011 talk "Pig - Making Hadoop Easy" by Alan Gate
Apache Hadoop India Summit 2011 talk "Pig - Making Hadoop Easy" by Alan Gate
 
Apache Hive
Apache HiveApache Hive
Apache Hive
 
Practical pig
Practical pigPractical pig
Practical pig
 
PXF BDAM 2016
PXF BDAM 2016PXF BDAM 2016
PXF BDAM 2016
 
Apache pig power_tools_by_viswanath_gangavaram_r&d_dsg_i_labs
Apache pig power_tools_by_viswanath_gangavaram_r&d_dsg_i_labsApache pig power_tools_by_viswanath_gangavaram_r&d_dsg_i_labs
Apache pig power_tools_by_viswanath_gangavaram_r&d_dsg_i_labs
 
AWS Hadoop and PIG and overview
AWS Hadoop and PIG and overviewAWS Hadoop and PIG and overview
AWS Hadoop and PIG and overview
 
03 pig intro
03 pig intro03 pig intro
03 pig intro
 
Introduction to Hadoop Ecosystem
Introduction to Hadoop Ecosystem Introduction to Hadoop Ecosystem
Introduction to Hadoop Ecosystem
 
Introducción a hadoop
Introducción a hadoopIntroducción a hadoop
Introducción a hadoop
 
Hive data migration (export/import)
Hive data migration (export/import)Hive data migration (export/import)
Hive data migration (export/import)
 
Hadoop Cluster Configuration and Data Loading - Module 2
Hadoop Cluster Configuration and Data Loading - Module 2Hadoop Cluster Configuration and Data Loading - Module 2
Hadoop Cluster Configuration and Data Loading - Module 2
 
Pig
PigPig
Pig
 
Pig workshop
Pig workshopPig workshop
Pig workshop
 
Hive User Meeting August 2009 Facebook
Hive User Meeting August 2009 FacebookHive User Meeting August 2009 Facebook
Hive User Meeting August 2009 Facebook
 
Commands documentaion
Commands documentaionCommands documentaion
Commands documentaion
 
Hadoop Performance Optimization at Scale, Lessons Learned at Twitter
Hadoop Performance Optimization at Scale, Lessons Learned at TwitterHadoop Performance Optimization at Scale, Lessons Learned at Twitter
Hadoop Performance Optimization at Scale, Lessons Learned at Twitter
 
Hadoop - Stock Analysis
Hadoop - Stock AnalysisHadoop - Stock Analysis
Hadoop - Stock Analysis
 
Hadoop pig
Hadoop pigHadoop pig
Hadoop pig
 

Similar to TriHUG November HCatalog Talk by Alan Gates

Web Services Hadoop Summit 2012
Web Services Hadoop Summit 2012Web Services Hadoop Summit 2012
Web Services Hadoop Summit 2012
Hortonworks
 
Sql saturday pig session (wes floyd) v2
Sql saturday   pig session (wes floyd) v2Sql saturday   pig session (wes floyd) v2
Sql saturday pig session (wes floyd) v2
Wes Floyd
 
Yahoo! Hadoop User Group - May Meetup - HBase and Pig: The Hadoop ecosystem a...
Yahoo! Hadoop User Group - May Meetup - HBase and Pig: The Hadoop ecosystem a...Yahoo! Hadoop User Group - May Meetup - HBase and Pig: The Hadoop ecosystem a...
Yahoo! Hadoop User Group - May Meetup - HBase and Pig: The Hadoop ecosystem a...
Hadoop User Group
 
Future of HCatalog - Hadoop Summit 2012
Future of HCatalog - Hadoop Summit 2012Future of HCatalog - Hadoop Summit 2012
Future of HCatalog - Hadoop Summit 2012
Hortonworks
 
HCatalog: Table Management for Hadoop - CHUG - 20120917
HCatalog: Table Management for Hadoop - CHUG - 20120917HCatalog: Table Management for Hadoop - CHUG - 20120917
HCatalog: Table Management for Hadoop - CHUG - 20120917
Chicago Hadoop Users Group
 
Hive @ Hadoop day seattle_2010
Hive @ Hadoop day seattle_2010Hive @ Hadoop day seattle_2010
Hive @ Hadoop day seattle_2010
nzhang
 
hadoop&zing
hadoop&zinghadoop&zing
hadoop&zing
zingopen
 

Similar to TriHUG November HCatalog Talk by Alan Gates (20)

HCatalog Hadoop Summit 2011
HCatalog Hadoop Summit 2011HCatalog Hadoop Summit 2011
HCatalog Hadoop Summit 2011
 
HCatalog
HCatalogHCatalog
HCatalog
 
HUG Meetup 2013: HCatalog / Hive Data Out
HUG Meetup 2013: HCatalog / Hive Data Out HUG Meetup 2013: HCatalog / Hive Data Out
HUG Meetup 2013: HCatalog / Hive Data Out
 
May 2013 HUG: HCatalog/Hive Data Out
May 2013 HUG: HCatalog/Hive Data OutMay 2013 HUG: HCatalog/Hive Data Out
May 2013 HUG: HCatalog/Hive Data Out
 
Web Services Hadoop Summit 2012
Web Services Hadoop Summit 2012Web Services Hadoop Summit 2012
Web Services Hadoop Summit 2012
 
Future of HCatalog
Future of HCatalogFuture of HCatalog
Future of HCatalog
 
Sql saturday pig session (wes floyd) v2
Sql saturday   pig session (wes floyd) v2Sql saturday   pig session (wes floyd) v2
Sql saturday pig session (wes floyd) v2
 
Yahoo! Hadoop User Group - May Meetup - HBase and Pig: The Hadoop ecosystem a...
Yahoo! Hadoop User Group - May Meetup - HBase and Pig: The Hadoop ecosystem a...Yahoo! Hadoop User Group - May Meetup - HBase and Pig: The Hadoop ecosystem a...
Yahoo! Hadoop User Group - May Meetup - HBase and Pig: The Hadoop ecosystem a...
 
Future of HCatalog - Hadoop Summit 2012
Future of HCatalog - Hadoop Summit 2012Future of HCatalog - Hadoop Summit 2012
Future of HCatalog - Hadoop Summit 2012
 
Hadoop data access layer v4.0
Hadoop data access layer v4.0Hadoop data access layer v4.0
Hadoop data access layer v4.0
 
HCatalog: Table Management for Hadoop - CHUG - 20120917
HCatalog: Table Management for Hadoop - CHUG - 20120917HCatalog: Table Management for Hadoop - CHUG - 20120917
HCatalog: Table Management for Hadoop - CHUG - 20120917
 
6.hive
6.hive6.hive
6.hive
 
HDF5 Advanced Topics - Object's Properties, Storage Methods, Filters, Datatypes
HDF5 Advanced Topics - Object's Properties, Storage Methods, Filters, DatatypesHDF5 Advanced Topics - Object's Properties, Storage Methods, Filters, Datatypes
HDF5 Advanced Topics - Object's Properties, Storage Methods, Filters, Datatypes
 
Big data, just an introduction to Hadoop and Scripting Languages
Big data, just an introduction to Hadoop and Scripting LanguagesBig data, just an introduction to Hadoop and Scripting Languages
Big data, just an introduction to Hadoop and Scripting Languages
 
Hive @ Hadoop day seattle_2010
Hive @ Hadoop day seattle_2010Hive @ Hadoop day seattle_2010
Hive @ Hadoop day seattle_2010
 
hadoop&zing
hadoop&zinghadoop&zing
hadoop&zing
 
HugeTable:Application-Oriented Structure Data Storage System
HugeTable:Application-Oriented Structure Data Storage SystemHugeTable:Application-Oriented Structure Data Storage System
HugeTable:Application-Oriented Structure Data Storage System
 
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
 
מיכאל
מיכאלמיכאל
מיכאל
 
2011 06-30-hadoop-summit v5
2011 06-30-hadoop-summit v52011 06-30-hadoop-summit v5
2011 06-30-hadoop-summit v5
 

More from trihug

TriHUG November Pig Talk by Alan Gates
TriHUG November Pig Talk by Alan GatesTriHUG November Pig Talk by Alan Gates
TriHUG November Pig Talk by Alan Gates
trihug
 

More from trihug (10)

TriHUG October: Apache Ranger
TriHUG October: Apache RangerTriHUG October: Apache Ranger
TriHUG October: Apache Ranger
 
TriHUG Feb: Hive on spark
TriHUG Feb: Hive on sparkTriHUG Feb: Hive on spark
TriHUG Feb: Hive on spark
 
TriHUG 3/14: HBase in Production
TriHUG 3/14: HBase in ProductionTriHUG 3/14: HBase in Production
TriHUG 3/14: HBase in Production
 
TriHUG 2/14: Apache Sentry
TriHUG 2/14: Apache SentryTriHUG 2/14: Apache Sentry
TriHUG 2/14: Apache Sentry
 
TriHUG talk on Spark and Shark
TriHUG talk on Spark and SharkTriHUG talk on Spark and Shark
TriHUG talk on Spark and Shark
 
Impala presentation
Impala presentationImpala presentation
Impala presentation
 
Financial services trihug
Financial services trihugFinancial services trihug
Financial services trihug
 
TriHUG January 2012 Talk by Chris Shain
TriHUG January 2012 Talk by Chris ShainTriHUG January 2012 Talk by Chris Shain
TriHUG January 2012 Talk by Chris Shain
 
TriHUG November Pig Talk by Alan Gates
TriHUG November Pig Talk by Alan GatesTriHUG November Pig Talk by Alan Gates
TriHUG November Pig Talk by Alan Gates
 
MapR, Implications for Integration
MapR, Implications for IntegrationMapR, Implications for Integration
MapR, Implications for Integration
 

Recently uploaded

Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 

Recently uploaded (20)

A Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusA Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source Milvus
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
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
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
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...
 
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelNavi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
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...
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 

TriHUG November HCatalog Talk by Alan Gates

  • 1. HCatalog Table Management for Hadoop Alan F. Gates
  • 2. Motivation: Data Sharing is Hard This is analyst Joe, he uses This is programmer Bob, he Hive to build reports and uses Pig to crunch data. answer ad-hoc queries. Joe, I need today’s data Ok Photo Credit: totalAldo via Flickr Hmm, is it done yet? Where is it? What format did you use to store it today? Is it compressed? And can you help me load it into Hive, I can never remember all the parameters I have to pass that alter table command. Dude, we need HCatalog
  • 3. More Motivation: Each tool requires its own Translator Pig Hive Map Reduce Hive HCatLoader HCatSerDe RCFile Custom HCatInputFormat Custom Columnar Custom Columnar Input Input Loader SerDe SerDe Loader Format Format HCatalog RCFile Custom StorageDriver StorageDriver Custom RCFile Format
  • 4. End User Example raw = load „/rawevents/20100819/data‟ using MyLoader() as (ts:long, user:chararray, url:chararray); botless = filter raw by NotABot(user); … store output into „/processedevents/20100819/data‟; Processedevents consumers must be manually informed by producer that data is available, or poll on HDFS (= bad for the NameNode) raw = load „rawevents‟ using HCatLoader(); botless = filter raw by date = „20100819‟ and NotABot(user); … store output into „processedevents‟ using HCatStorage(“date=20100819”); Processedevents consumers will be notified by HCatalog data is available and can then start their jobs
  • 5. Command Line for DDL • Uses Hive SQL • Create, drop, alter table • CREATE TABLE employee ( emp_id INT, emp_name STRING, emp_start_date STRING, emp_gender STRING) PARTITIONED BY ( emp_country STRING, emp_state STRING) STORED AS RCFILE tblproperties( 'hcat.isd'='RCFileInputDriver', 'hcat.osd'='RCFileOutputDriver');
  • 6. Manages Data Format and Schema Changes • Allows columns to be appended to tables in new partitions − no need to change existing data − fields not present in old data will be read as null − must do „alter table add column‟ first • Allows storage format changes − no need to change existing data, HCatalog will handle reading each partition in the appropriate format − all new partitions will be written in current format
  • 7. Security • Uses underlying storage permissions to determine authorization − Currently only works with HDFS based storage − If user can read from the HDFS directory, then he can read the table − If user can write to the HDFS directory, then he can write to the table − If the user can write to the database level directory, he can create and drop tables − Allows users to define which group to create table as so table access can be controlled by Unix group • Authentication done via kerberos
  • 8. Metadata Architecture HCatLoader HCatStorage HTTP HCatInputFormat HCatOutputFormat CLI Notification Hive metadata interface Thrift server RDBMS = Current HCatalog = Hive = Future HCatalog
  • 9. Storage Architecture HCatLoader HCatStorage HCatInputFormat HCatOutputFormat Input Output StorageDriver StorageDriver HDFS HBase
  • 10. Project Status • HCatalog was accepted to the Apache Incubator last March • 0.2 released in October, includes: − Read/write from Pig − Read/write from MapReduce − Read/write from Hive − StorageDrivers for RCFile − Notification via JMS when data is available − Store to multiple partitions simultaneously − Import/Export tools
  • 11. HCatalog 0.3 • Plan to release mid-December • Adds a Binary type (to Hive and HCatalog) • Storage drivers for JSON and text • Improved integration with Hive for custom storage formats • Web services interface
  • 12. Future Plans • Support for HBase and other data sources for storage • RCFile compression improvements • High Availability for Thrift server • Data management interfaces for archivers, cleaners, etc. • Additional metadata storage: − statistics − lineage/provenance − user tags
  • 13. Get Involved • incubator.apache.org/hcatalog • Join the mailing lists − User list: hcatalog-user@incubator.apache.org − Dev list: hcatalog-dev@incubator.apache.org

Editor's Notes

  1. Current situation:Different data type models and notions of schemaIf you’re using all three tools must write or obtain IF/OF, Load/Store, and SerDe for any new formatFor Pig and MR must understand where file is located, what its schema is, how it is compressed, what storage format was usedVision:Shared data type model and schemaWrite/obtain one storage driver, works with all toolsNo need to know where data is located, what its schema is, how it is compressed, what format was used
  2. Would look the same for MRInput changes from file to tablePartitioning of data moves from load to the filter clauseSchema is now provided to PigIf the data creator changes file format tomorrow, or the admin switches the files from one path to another, the first script has to be rewritten and retested while there are no changes in the second