SlideShare ist ein Scribd-Unternehmen logo
1 von 46
http://tripadvisor.com/careers 1
Stephen R. Scaffidi
sscaffidi@tripadvisor.com
Hadoop Summit
San Jose 2013
Simplifying the use of Hive
with the Hive Query Tool
http://tripadvisor.com/careers 2
• Introduction
• What is the Hive Query Tool (HQT)?
• Why did we build it?
• How it’s being used today
• Design & system requirements
• HQT Query Templates
• Getting the source, building, and running
• Future plans & possibilities
Talk Outline
Introduction
http://tripadvisor.com/careers 3
Introduction Section Title
Introduction
4http://tripadvisor.com/careers
About Me
• Sr. Software Engineer at TripAdvisor
• Data Warehouse Engineering Group
• Mildly obsessed with making things “Just Work”
• OK, more than mildly...
• Varied background, from PC Tech to Email
Admin to Telco NMS to Lisp Hacker, etc...
• Thrives on making computers do the work
• No Hadoop experience before joining
Introduction
http://tripadvisor.com/careers
About my team
• Data Warehouse Engineering
• Small, focused, tenacious group
• Varied skills and backgrounds
• We keep the elephants fed and healthy
• We help others in the company make use of
the facilities provided on the clusters
• DevOps in every sense of the term
5
Introduction
6http://tripadvisor.com/careers
About TripAdvisor
• Awesome place to work
• It really feels like we’re one big team
• Always new challenges and things to learn
• Smart, driven and genuinely *nice* people
• Offices around the world
• Great benefits
• We’re hiring!
What is the Hive Query Tool?
http://tripadvisor.com/careers 7
Simplifying the use of Hive with The Hive Query Tool
What is the Hive Query Tool?
8http://tripadvisor.com/careers
A simple web interface for running reports on Hive
• Our Specific Goals/Needs:
• Easy to use for non-technical people
• More flexible query customization than simple
variable interpolation
• Relatively easy installation and administration
• Allow jobs to run with different scheduler queues
and users
• Performance equal-to or better-than plain Hive
What is the Hive Query Tool?
9http://tripadvisor.com/careers
Easy for non-technical end-users
• Intended for use by non-technical people:
• Sales, Marketing, Customer-Relations, etc.
• People who don’t know anything about Hadoop
or Hive (or need to)
• People who don’t live in a *nix shell
• No need to even know anything about SQL!
What is the Hive Query Tool?
10http://tripadvisor.com/careers
Flexible Query Customization
• Other solutions we looked at were too limited
• We needed to give the users something more
powerful than simple variable substitution.
• HQT’s template system can generate and
insert arbitrary HQL clauses into a query based
on a user’s input to a simple web interface.
What is the Hive Query Tool?
11http://tripadvisor.com/careers
Easy Install and Administration
• If we were going to build our own, we didn’t
want maintenance to be *another* full-time job
• Internal adoption by other engineers was
important
• Java hackers don’t want to deal with a 23.5-step
install and configure process
• Especially if it’s not written in Java
• Check-out the source, run the setup script, edit
a single config file and run the startup scripts.
What is the Hive Query Tool?
12http://tripadvisor.com/careers
Run jobs with different Users and Queues
• Face it, the Hive Thrift Server is horrible
• Most other user-friendly Hive front-ends use it
• So they have all its limitations
• And its bugs 
• The HQT simply spawns a Hive CLI for each
job, using sudo to change users when
necessary.
What is the Hive Query Tool?
13http://tripadvisor.com/careers
Performance?
• Some options we looked at before building the
HQT did a whole lot more
• Some claimed to be faster than Hive.
• Some of these options had so much overhead
that they were slower than using Hive directly!
• The HQT simply runs HQL code thru the
standard Hive CLI. No overhead, no difference
in performance over plain-vanilla Hive.
Why did we need this?
http://tripadvisor.com/careers 14
Simplifying the use of Hive with The Hive Query Tool
Why did we need the HQT?
15http://tripadvisor.com/careers
Making the data accessible
• The data we pump into our Hadoop clusters is
full of valuable information to our business
• And more is fed into our Hive tables every day
• And more people need access to that data
every day
• But not all of those people are 733t h4(k3r
engineers 😉
Why did we need the HQT?
16http://tripadvisor.com/careers
Making the data accessible
• The target users may not know Linux and Java
and SQL...
• But they do know how they want the data
filtered and correlated and aggregated.
• We needed a way to let them run queries
where they could choose these parameters
with a high degree of flexibility...
• But without having to teach them all HQL
Why did we need the HQT?
17http://tripadvisor.com/careers
Looked at what was available...
• Nothing else we looked at seemed to satisfy all
our requirements.
• Some that looked interesting, unfortunately
had terrible performance, as they did not use
Hive directly.
• Not that everything we looked at was terrible –
some solutions were really quite impressive.
• But it came down to a classic question in tech-
oriented businesses...
Why did we need the HQT?
18http://tripadvisor.com/careers
The bottom line
• We knew what we wanted
• We knew what we wanted wasn’t particularly
complex
• We asked ourselves if we could just build
something that gives us exactly what we need
• And would that effort cost less than trying to
make something else work the way we
wanted?
• A “Eureka!” moment and a rough prototype
answered the question 😉
HQT Use at TripAdvisor
http://tripadvisor.com/careers 19
HQT Use at TripAdvisor
20http://tripadvisor.com/careers
A surprise hit
• Some interested people tried the prototype
• Liked how it worked, requested more features
• Other groups became interested
• Even committed engineering resources to help
get it to “beta”
• It’s now being used across the company
• New report templates constantly being added
• (sorry, those aren’t available publicly)
HQT Use at TripAdvisor
21http://tripadvisor.com/careers
Company-wide adoption
• End users find it easy to use and relatively
convenient.
• Template authors have found it easy to create
and modify report templates.
• Users include people in Sales, Marketing,
Commerce, and even Legal!
• Weekly peak usage at over 40 simultaneous
Hive jobs – on a single server.
(we’ve actually had to add throttling to keep HQT
jobs from using too many mapred slots)
HQT Design
http://tripadvisor.com/careers 22
HQT Design
23http://tripadvisor.com/careers
Architecture: Front-End
• Web interface
• Handles user authentication
• Processes HQT Templates to determine...
• What options/input elements to present the user
• How to process and validate input from the user
• What HQL to send to the back-end
• Gets job progress and status info from the
back-end
• Doesn’t do much else
HQT Design
24http://tripadvisor.com/careers
Architecture: Back-End
• Presents a “json/rest-like” interface over HTTP
to receive requests from the front-end
• Uses an event-loop instead of threads
• Spawns Hive CLI instances to run submitted
HQL
• Tracks and parses output from each instance
• Watches CLI instances for progress and errors
• Processes results for retrieval by users
• Sends email notifications
HQT Design
25http://tripadvisor.com/careers
Template System
• The “special sauce” of the HQT
• The template “language” is designed so that
“directives” concisely express a whole lot:
• What input to gather (and optionally what kind)
• How to validate that input
• What output to generate and how to format it
• It’s a little tricky to explain
• But extremely flexible
• More details shortly...
HQT Design
26http://tripadvisor.com/careers
Language & Frameworks
• Written in Perl
• Uses lots of components from the CPAN
• Front-end web framework is Mojolicious
• Template System uses Text::Template
• Back-end uses AnyEvent
• Most classes built using Moo
• Decent example of “Modern Perl”, but is still a
work-in-progress.
HQT Design
27http://tripadvisor.com/careers
System Requirements
• Requires Perl 5.10.1 or newer
• Hadoop & Hive clients & libs should already be
installed and configured
• Does *not* require root or root access
• LDAP & sudo should be configured if you want
to run jobs as different users.
• Web-server is built-in, but can run under just
about any setup you want
HQT Design
28http://tripadvisor.com/careers
Current State
• The front-end code is rather nice
• MVC-style web app code
• Uses Mojolicious .epl templates for web content,
which is very similar to .erb
• Back-end code is kind of hairy
• AnyEvent is fairly low-level
• REST/json stuff too mixed with the code that
wraps the Hive CLI processes.
• It shouldn’t be responsible for sending email!
HQT Design
29http://tripadvisor.com/careers
Current State, contd.
• Template-system code:
• Fairly simple code, but allows for a lot of
interesting functionality.
• Other engineers seem to think it’s fine...
• But I think it needs refactoring
∙ Too much “action at a distance”
∙ Template evaluation is a big security risk
∙ Should use OO instead of ad-hoc data structures
∙ Etc...
The HQL Template System
http://tripadvisor.com/careers 30
Template System
31http://tripadvisor.com/careers
• Template code blocks are embedded into
otherwise normal HQL:
{{ begin_main_select }}
SELECT foo, bar FROM baz
WHERE ds={{
insert_var
date => { type => ‘date’, default => days_ago_ymd(3) }
}}
{{
append_where {
columns => { wibble => ‘string’, wobble => ‘int’ }
}
}}
Template System
32http://tripadvisor.com/careers
• Template functions/”directives” simultaneously
define...
• What input options to present the user
• Input validation
• What to insert into the HQL based on the input
Template System
33http://tripadvisor.com/careers
So, this...
{{ begin_main_select }}
SELECT foo, bar FROM baz
WHERE ds={{
insert_var
date => { type => ‘date’, default => days_ago_ymd(3) }
}}
{{
append_where {
columns => { wibble => ‘string’, wobble => ‘int’ }
}
}}
Template System
34http://tripadvisor.com/careers
Renders this:
Template System
35http://tripadvisor.com/careers
Which when filled out like this:
Template System
36http://tripadvisor.com/careers
Generates HQL like this:
Template System
37http://tripadvisor.com/careers
Template Engine
• Didn’t build anything new, just used the
existing Text::Template module in a clever
way
• Template blocks are just Perl code, evaluated
in a specified package/namespace.
• Used some trickery to make it look a little less
like Perl, but nothing fancy.
• The things that look like “directives” are just
functions.
• Lots of functions defined in that namespace...
Template System
38http://tripadvisor.com/careers
Template Functions
• Functions available for:
• Simple value insertion/substitution
• Adding & extending WHERE clauses
• Adding & extending GROUP BY clauses
• Setting defaults
• Manipulating and comparing dates
• Parameter validation
• Plus a lot of misc utils and support functions that
probably should be in a different module.
Template System
39http://tripadvisor.com/careers
Template Files
• Simple format – a YAML header followed by
templatized HQL code like you saw earlier:
id: pageviews_uniques
name: Daily Pageviews and Unique Visitors
description: >
Any description which will appear on the page.
<i>May include HTML</i>
author: optional
...
{{ begin_main_select() }}
SELECT foo, bar FROM baz
WHERE ds={{ insert_var date => {type => ‘date’} }}
Template System
40http://tripadvisor.com/careers
Issues
• Code in the web-app depends on the structure
of data internal to the template module.
• Would take a lot of work to fix, but worth it.
• Template evaluation is a potential security
nightmare.
• Perl does have a sandbox module for this sort of
things, though. I just need RTFM and use it.
• The APIs of the various functions isn’t entirely
consistent, but not too bad
• Will definitely fix for next release.
Try it for yourself
http://tripadvisor.com/careers 41
Try for Yourself
42http://tripadvisor.com/careers
Availability
• Source code available on GitHub now:
• https://github.com/tripadvisor/hive-query-tool
• Apache 2.0 Licensed
• Modest system prerequisites
• Automated download and installation of all
dependencies
• Works on a variety of platforms
• Bug Reports, Feature Requests and Pull
Requests all *very welcome*
The future?
http://tripadvisor.com/careers 43
Future Plans
44http://tripadvisor.com/careers
• Complete rewrite of the back-end for cleaner
and more flexible code.
• Implement sandboxing for template security
• More user-oriented features, like
• Ability to save pre-filled query reports
• Better management of past and running jobs
• Better status info from the backend
• Column-headers in report output
• An administrator dashboard/console
• Bug-fixes, feature enhancements, lots more
Future Possibilities
45http://tripadvisor.com/careers
• Workflow & Scheduling functionality
• Separate template system for stand-alone use
• Make the back-end good enough to be a viable
replacement for the Hive Thrift Server.
• Add template functions for joins, sub-selects,
and lots of other HQL constructs that aren’t yet
customizable.
• Add ability for a single template to define
multiple queries delivering in multiple result-
sets.
• Rewrite in Perl 6 😉
Questions?
?
Any Questions?

Weitere ähnliche Inhalte

Kürzlich hochgeladen

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 

Kürzlich hochgeladen (20)

Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
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
 
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
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
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
 
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
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
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...
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
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...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
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
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 

Empfohlen

How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
ThinkNow
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
Kurio // The Social Media Age(ncy)
 

Empfohlen (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

Simplifying the Use of Hive with The Hive Query Tool

  • 1. http://tripadvisor.com/careers 1 Stephen R. Scaffidi sscaffidi@tripadvisor.com Hadoop Summit San Jose 2013 Simplifying the use of Hive with the Hive Query Tool
  • 2. http://tripadvisor.com/careers 2 • Introduction • What is the Hive Query Tool (HQT)? • Why did we build it? • How it’s being used today • Design & system requirements • HQT Query Templates • Getting the source, building, and running • Future plans & possibilities Talk Outline
  • 4. Introduction 4http://tripadvisor.com/careers About Me • Sr. Software Engineer at TripAdvisor • Data Warehouse Engineering Group • Mildly obsessed with making things “Just Work” • OK, more than mildly... • Varied background, from PC Tech to Email Admin to Telco NMS to Lisp Hacker, etc... • Thrives on making computers do the work • No Hadoop experience before joining
  • 5. Introduction http://tripadvisor.com/careers About my team • Data Warehouse Engineering • Small, focused, tenacious group • Varied skills and backgrounds • We keep the elephants fed and healthy • We help others in the company make use of the facilities provided on the clusters • DevOps in every sense of the term 5
  • 6. Introduction 6http://tripadvisor.com/careers About TripAdvisor • Awesome place to work • It really feels like we’re one big team • Always new challenges and things to learn • Smart, driven and genuinely *nice* people • Offices around the world • Great benefits • We’re hiring!
  • 7. What is the Hive Query Tool? http://tripadvisor.com/careers 7 Simplifying the use of Hive with The Hive Query Tool
  • 8. What is the Hive Query Tool? 8http://tripadvisor.com/careers A simple web interface for running reports on Hive • Our Specific Goals/Needs: • Easy to use for non-technical people • More flexible query customization than simple variable interpolation • Relatively easy installation and administration • Allow jobs to run with different scheduler queues and users • Performance equal-to or better-than plain Hive
  • 9. What is the Hive Query Tool? 9http://tripadvisor.com/careers Easy for non-technical end-users • Intended for use by non-technical people: • Sales, Marketing, Customer-Relations, etc. • People who don’t know anything about Hadoop or Hive (or need to) • People who don’t live in a *nix shell • No need to even know anything about SQL!
  • 10. What is the Hive Query Tool? 10http://tripadvisor.com/careers Flexible Query Customization • Other solutions we looked at were too limited • We needed to give the users something more powerful than simple variable substitution. • HQT’s template system can generate and insert arbitrary HQL clauses into a query based on a user’s input to a simple web interface.
  • 11. What is the Hive Query Tool? 11http://tripadvisor.com/careers Easy Install and Administration • If we were going to build our own, we didn’t want maintenance to be *another* full-time job • Internal adoption by other engineers was important • Java hackers don’t want to deal with a 23.5-step install and configure process • Especially if it’s not written in Java • Check-out the source, run the setup script, edit a single config file and run the startup scripts.
  • 12. What is the Hive Query Tool? 12http://tripadvisor.com/careers Run jobs with different Users and Queues • Face it, the Hive Thrift Server is horrible • Most other user-friendly Hive front-ends use it • So they have all its limitations • And its bugs  • The HQT simply spawns a Hive CLI for each job, using sudo to change users when necessary.
  • 13. What is the Hive Query Tool? 13http://tripadvisor.com/careers Performance? • Some options we looked at before building the HQT did a whole lot more • Some claimed to be faster than Hive. • Some of these options had so much overhead that they were slower than using Hive directly! • The HQT simply runs HQL code thru the standard Hive CLI. No overhead, no difference in performance over plain-vanilla Hive.
  • 14. Why did we need this? http://tripadvisor.com/careers 14 Simplifying the use of Hive with The Hive Query Tool
  • 15. Why did we need the HQT? 15http://tripadvisor.com/careers Making the data accessible • The data we pump into our Hadoop clusters is full of valuable information to our business • And more is fed into our Hive tables every day • And more people need access to that data every day • But not all of those people are 733t h4(k3r engineers 😉
  • 16. Why did we need the HQT? 16http://tripadvisor.com/careers Making the data accessible • The target users may not know Linux and Java and SQL... • But they do know how they want the data filtered and correlated and aggregated. • We needed a way to let them run queries where they could choose these parameters with a high degree of flexibility... • But without having to teach them all HQL
  • 17. Why did we need the HQT? 17http://tripadvisor.com/careers Looked at what was available... • Nothing else we looked at seemed to satisfy all our requirements. • Some that looked interesting, unfortunately had terrible performance, as they did not use Hive directly. • Not that everything we looked at was terrible – some solutions were really quite impressive. • But it came down to a classic question in tech- oriented businesses...
  • 18. Why did we need the HQT? 18http://tripadvisor.com/careers The bottom line • We knew what we wanted • We knew what we wanted wasn’t particularly complex • We asked ourselves if we could just build something that gives us exactly what we need • And would that effort cost less than trying to make something else work the way we wanted? • A “Eureka!” moment and a rough prototype answered the question 😉
  • 19. HQT Use at TripAdvisor http://tripadvisor.com/careers 19
  • 20. HQT Use at TripAdvisor 20http://tripadvisor.com/careers A surprise hit • Some interested people tried the prototype • Liked how it worked, requested more features • Other groups became interested • Even committed engineering resources to help get it to “beta” • It’s now being used across the company • New report templates constantly being added • (sorry, those aren’t available publicly)
  • 21. HQT Use at TripAdvisor 21http://tripadvisor.com/careers Company-wide adoption • End users find it easy to use and relatively convenient. • Template authors have found it easy to create and modify report templates. • Users include people in Sales, Marketing, Commerce, and even Legal! • Weekly peak usage at over 40 simultaneous Hive jobs – on a single server. (we’ve actually had to add throttling to keep HQT jobs from using too many mapred slots)
  • 23. HQT Design 23http://tripadvisor.com/careers Architecture: Front-End • Web interface • Handles user authentication • Processes HQT Templates to determine... • What options/input elements to present the user • How to process and validate input from the user • What HQL to send to the back-end • Gets job progress and status info from the back-end • Doesn’t do much else
  • 24. HQT Design 24http://tripadvisor.com/careers Architecture: Back-End • Presents a “json/rest-like” interface over HTTP to receive requests from the front-end • Uses an event-loop instead of threads • Spawns Hive CLI instances to run submitted HQL • Tracks and parses output from each instance • Watches CLI instances for progress and errors • Processes results for retrieval by users • Sends email notifications
  • 25. HQT Design 25http://tripadvisor.com/careers Template System • The “special sauce” of the HQT • The template “language” is designed so that “directives” concisely express a whole lot: • What input to gather (and optionally what kind) • How to validate that input • What output to generate and how to format it • It’s a little tricky to explain • But extremely flexible • More details shortly...
  • 26. HQT Design 26http://tripadvisor.com/careers Language & Frameworks • Written in Perl • Uses lots of components from the CPAN • Front-end web framework is Mojolicious • Template System uses Text::Template • Back-end uses AnyEvent • Most classes built using Moo • Decent example of “Modern Perl”, but is still a work-in-progress.
  • 27. HQT Design 27http://tripadvisor.com/careers System Requirements • Requires Perl 5.10.1 or newer • Hadoop & Hive clients & libs should already be installed and configured • Does *not* require root or root access • LDAP & sudo should be configured if you want to run jobs as different users. • Web-server is built-in, but can run under just about any setup you want
  • 28. HQT Design 28http://tripadvisor.com/careers Current State • The front-end code is rather nice • MVC-style web app code • Uses Mojolicious .epl templates for web content, which is very similar to .erb • Back-end code is kind of hairy • AnyEvent is fairly low-level • REST/json stuff too mixed with the code that wraps the Hive CLI processes. • It shouldn’t be responsible for sending email!
  • 29. HQT Design 29http://tripadvisor.com/careers Current State, contd. • Template-system code: • Fairly simple code, but allows for a lot of interesting functionality. • Other engineers seem to think it’s fine... • But I think it needs refactoring ∙ Too much “action at a distance” ∙ Template evaluation is a big security risk ∙ Should use OO instead of ad-hoc data structures ∙ Etc...
  • 30. The HQL Template System http://tripadvisor.com/careers 30
  • 31. Template System 31http://tripadvisor.com/careers • Template code blocks are embedded into otherwise normal HQL: {{ begin_main_select }} SELECT foo, bar FROM baz WHERE ds={{ insert_var date => { type => ‘date’, default => days_ago_ymd(3) } }} {{ append_where { columns => { wibble => ‘string’, wobble => ‘int’ } } }}
  • 32. Template System 32http://tripadvisor.com/careers • Template functions/”directives” simultaneously define... • What input options to present the user • Input validation • What to insert into the HQL based on the input
  • 33. Template System 33http://tripadvisor.com/careers So, this... {{ begin_main_select }} SELECT foo, bar FROM baz WHERE ds={{ insert_var date => { type => ‘date’, default => days_ago_ymd(3) } }} {{ append_where { columns => { wibble => ‘string’, wobble => ‘int’ } } }}
  • 37. Template System 37http://tripadvisor.com/careers Template Engine • Didn’t build anything new, just used the existing Text::Template module in a clever way • Template blocks are just Perl code, evaluated in a specified package/namespace. • Used some trickery to make it look a little less like Perl, but nothing fancy. • The things that look like “directives” are just functions. • Lots of functions defined in that namespace...
  • 38. Template System 38http://tripadvisor.com/careers Template Functions • Functions available for: • Simple value insertion/substitution • Adding & extending WHERE clauses • Adding & extending GROUP BY clauses • Setting defaults • Manipulating and comparing dates • Parameter validation • Plus a lot of misc utils and support functions that probably should be in a different module.
  • 39. Template System 39http://tripadvisor.com/careers Template Files • Simple format – a YAML header followed by templatized HQL code like you saw earlier: id: pageviews_uniques name: Daily Pageviews and Unique Visitors description: > Any description which will appear on the page. <i>May include HTML</i> author: optional ... {{ begin_main_select() }} SELECT foo, bar FROM baz WHERE ds={{ insert_var date => {type => ‘date’} }}
  • 40. Template System 40http://tripadvisor.com/careers Issues • Code in the web-app depends on the structure of data internal to the template module. • Would take a lot of work to fix, but worth it. • Template evaluation is a potential security nightmare. • Perl does have a sandbox module for this sort of things, though. I just need RTFM and use it. • The APIs of the various functions isn’t entirely consistent, but not too bad • Will definitely fix for next release.
  • 41. Try it for yourself http://tripadvisor.com/careers 41
  • 42. Try for Yourself 42http://tripadvisor.com/careers Availability • Source code available on GitHub now: • https://github.com/tripadvisor/hive-query-tool • Apache 2.0 Licensed • Modest system prerequisites • Automated download and installation of all dependencies • Works on a variety of platforms • Bug Reports, Feature Requests and Pull Requests all *very welcome*
  • 44. Future Plans 44http://tripadvisor.com/careers • Complete rewrite of the back-end for cleaner and more flexible code. • Implement sandboxing for template security • More user-oriented features, like • Ability to save pre-filled query reports • Better management of past and running jobs • Better status info from the backend • Column-headers in report output • An administrator dashboard/console • Bug-fixes, feature enhancements, lots more
  • 45. Future Possibilities 45http://tripadvisor.com/careers • Workflow & Scheduling functionality • Separate template system for stand-alone use • Make the back-end good enough to be a viable replacement for the Hive Thrift Server. • Add template functions for joins, sub-selects, and lots of other HQL constructs that aren’t yet customizable. • Add ability for a single template to define multiple queries delivering in multiple result- sets. • Rewrite in Perl 6 😉