Hive Tutorial For Beginners: Learn With Examples in 3 Days
Hive Tutorial For Beginners: Learn With Examples in 3 Days
Examples in 3 Days
ByDavid TaylorUpdatedApril 16, 2022
Apache Hive helps with querying and managing large datasets real fast. It is an ETL
tool for the Hadoop ecosystem. In this Apache Hive tutorial for beginners, you will
learn Hive basics and important topics like HQL queries, data extractions,
partitions, buckets, and so on. This Hive tutorials series will help you learn Hive
concepts and basics.
To learn this Hive query tutorial, you need basic knowledge of SQL, Hadoop and
knowledge of other databases will be of an additional help.
👉 Lesson 2 Download & Install HIVE — How to Download & Install HIVE on Ubuntu
Advanced Stuff
👉 Lesson 1 Hive Create Table — Types and its Usage
Introduction to Hive
Hive evolved as a data warehousing solution built on top of Hadoop Map-Reduce
framework.
The size of data sets being collected and analyzed in the industry for business
intelligence is growing and in a way, it is making traditional data warehousing
solutions more expensive. Hadoop with MapReduce framework, is being used as an
alternative solution for analyzing data sets with huge size. Though, Hadoop has
proved useful for working on huge data sets, its MapReduce framework is very low
level and it requires programmers to write custom programs which are hard to
maintain and reuse. Hive comes here for rescue of programmers.
Hive query language is similar to SQL wherein it supports subqueries. With Hive
query language, it is possible to take a MapReduce joins across Hive tables. It has a
support for simple SQL like functions– CONCAT, SUBSTR, ROUND etc.,
and aggregation functions– SUM, COUNT, MAX etc. It also supports GROUP BY and
SORT BY clauses. It is also possible to write user defined functions in Hive query
language.
What is Hive?
Apache Hive is a data warehouse framework for querying and analysis of data
stored in HDFS. It is developed on top of Hadoop. Hive is an open-source software
to analyze large data sets on Hadoop. It provides SQL-like declarative language,
called HiveQL, to express queries. Using Hive-QL, users associated with SQL can
perform data analysis very easily.
While choosing between Hive and Map reduce following factors are taken in
consideration;
Type of Data
Amount of Data
Complexity of Code
Level of abstraction Higher level of Abstraction on top of HDFS Lower level of abstraction
Efficiency in Code Comparatively lesser than Map reduce Provides High efficiency
Type of Development
Less Development work required More development work needed
work required