What is Hive?
Hive Limitations:
Hive Components:
Hadoop Data Types :
- Data warehousing package built on top of Hadoop
- Used for data analytics
- Targeted towards users comfortable with SQL
- It is similar to SQL and called HiveQL
- For managing and querying structured data
- Abstracts complexity of Hadoop
- No need learn java and Hadoop APIs
- Developed by Facebook and contributed to community
- Facebook analyzed several Terabytes of data everyday using Hive
Where to use Hive:
- When you have structured data
- Data Mining
- Document Indexing
- Predictive Modelling, Hypothesis Testing
- Customer Facing Business Intelligence
- Log Processing
Hive Limitations:
- Not designed for online transaction processing (OLTP)
- Does not offer real time queiries and row level updates
- Provides acceptable latency for interactive data browsing
- Latency for hive queries is generally very high(Minutes)
- Hive Advantages:
- Ability to filter rows from a table using “where” clause.
- Ability to do equi-joins between two tables
- Ability to store the results of a query in Hadoop DFS directory
- Ability to manage tables and partitions (create, drop & alter)
- Ability to store the result of query into another table
Hive Architecture:
Hive Components:
- User Interface : Hive is a data warehouse infrastructure software that can create interaction between user and HDFS. The user interfaces that Hive supports are Hive Web UI, Hive command line, and Hive HD Insight (In Windows server).
- Meta Store : Hive chooses respective database servers to store the schema or Metadata of tables, databases, columns in a table, their data types, and HDFS mapping.
- HiveQL Process Engine : HiveQL is similar to SQL for querying on schema info on the Metastore. It is one of the replacements of traditional approach for MapReduce program. Instead of writing MapReduce program in Java, we can write a query for MapReduce job and process it.
- Execution Engine : The conjunction part of HiveQL process Engine and MapReduce is Hive Execution Engine. Execution engine processes the query and generates results as same as MapReduce results. It uses the flavor of MapReduce.
- HDFS or HBASE : Hadoop distributed file system or HBASE are the data storage techniques to store data into file system.
Hive Background:
'
- Execute Query : The Hive interface such as Command Line or Web UI sends query to Driver (any database driver such as JDBC, ODBC, etc.) to execute.
- Get Plan : The driver takes the help of query compiler that parses the query to check the syntax and query plan or the requirement of query.
- Get Metadata : The compiler sends metadata request to Metastore (any database).
- Send Metadata : Metastore sends metadata as a response to the compiler.
- Send Plan : The compiler checks the requirement and resends the plan to the driver. Up to here, the parsing and compiling of a query is complete.
- Execute Plan : The driver sends the execute plan to the execution engine.
- Execute Job : Internally, the process of execution job is a MapReduce job. The execution engine sends the job to JobTracker, which is in Name node and it assigns this job to TaskTracker, which is in Data node. Here, the query executes MapReduce job.
- Metadata Ops : Meanwhile in execution, the execution engine can execute metadata operations with Metastore.
- Fetch Result : The execution engine receives the results from Data nodes.
- Send Results : The execution engine sends those resultant values to the driver.
- Send Results : The driver sends the results to Hive Interfaces.
- Struct
- Map
- Array
Hive Limitations:
- Not designed for online transaction processing (OLTP)
- Does not offer real time queiries and row level updates
- Provides acceptable latency for interactive data browsing
- Latency for hive queries is generally very high(Minutes)
Hive Advantages:
- Ability to filter rows from a table using “where” clause.
- Ability to do equi-joins between two tables
- Ability to store the results of a query in Hadoop DFS directory
- Ability to manage tables and partitions (create, drop & alter)
- Ability to store the result of query into another table
No comments:
Post a Comment