Skip to content

peter-toth/hive

This branch is 3903 commits behind apache/hive:master.

Folders and files

NameName
Last commit message
Last commit date
Jul 15, 2019
Jun 10, 2019
Feb 13, 2019
Apr 30, 2018
Nov 20, 2018
May 22, 2018
Jul 15, 2019
Sep 4, 2019
Jan 20, 2017
Jul 15, 2019
Feb 13, 2018
Aug 19, 2019
Jun 20, 2019
Mar 30, 2017
Jul 15, 2019
Jun 10, 2012
Jul 15, 2019
Aug 22, 2019
Apr 3, 2019
Aug 21, 2019
May 4, 2019
Aug 26, 2019
Aug 21, 2019
Mar 9, 2019
Jul 26, 2019
Feb 25, 2012
Jul 29, 2019
Jul 19, 2019
Jun 17, 2019
Aug 16, 2019
Jul 18, 2019
Aug 29, 2019
Mar 9, 2019
Sep 3, 2019
Aug 9, 2019
Oct 4, 2018
Aug 29, 2019
Mar 21, 2019
May 4, 2019
Aug 27, 2019
Jul 19, 2019
Jul 25, 2019
Aug 14, 2019
Jul 12, 2019
Jul 31, 2018
Nov 17, 2011
Apr 17, 2012
May 9, 2014
Jun 27, 2019
May 10, 2016
Mar 29, 2018
Jun 19, 2019
Apr 9, 2018
May 15, 2018
Jul 18, 2018
Jul 16, 2019
Aug 29, 2019

Repository files navigation

Apache Hive (TM)

Master Build Status Maven Central

The Apache Hive (TM) data warehouse software facilitates reading, writing, and managing large datasets residing in distributed storage using SQL. Built on top of Apache Hadoop (TM), it provides:

  • Tools to enable easy access to data via SQL, thus enabling data warehousing tasks such as extract/transform/load (ETL), reporting, and data analysis

  • A mechanism to impose structure on a variety of data formats

  • Access to files stored either directly in Apache HDFS (TM) or in other data storage systems such as Apache HBase (TM)

  • Query execution using Apache Hadoop MapReduce, Apache Tez or Apache Spark frameworks.

Hive provides standard SQL functionality, including many of the later 2003 and 2011 features for analytics. These include OLAP functions, subqueries, common table expressions, and more. Hive's SQL can also be extended with user code via user defined functions (UDFs), user defined aggregates (UDAFs), and user defined table functions (UDTFs).

Hive users have a choice of 3 runtimes when executing SQL queries. Users can choose between Apache Hadoop MapReduce, Apache Tez or Apache Spark frameworks as their execution backend. MapReduce is a mature framework that is proven at large scales. However, MapReduce is a purely batch framework, and queries using it may experience higher latencies (tens of seconds), even over small datasets. Apache Tez is designed for interactive query, and has substantially reduced overheads versus MapReduce. Apache Spark is a cluster computing framework that's built outside of MapReduce, but on top of HDFS, with a notion of composable and transformable distributed collection of items called Resilient Distributed Dataset (RDD) which allows processing and analysis without traditional intermediate stages that MapReduce introduces.

Users are free to switch back and forth between these frameworks at any time. In each case, Hive is best suited for use cases where the amount of data processed is large enough to require a distributed system.

Hive is not designed for online transaction processing. It is best used for traditional data warehousing tasks. Hive is designed to maximize scalability (scale out with more machines added dynamically to the Hadoop cluster), performance, extensibility, fault-tolerance, and loose-coupling with its input formats.

General Info

For the latest information about Hive, please visit out website at:

http://hive.apache.org/

Getting Started

Requirements

  • Java 1.7 or 1.8

  • Hadoop 1.x, 2.x, 3.x (3.x required for Hive 3.x)

Upgrading from older versions of Hive

  • Hive includes changes to the MetaStore schema. If you are upgrading from an earlier version of Hive it is imperative that you upgrade the MetaStore schema by running the appropriate schema upgrade scripts located in the scripts/metastore/upgrade directory.

  • We have provided upgrade scripts for MySQL, PostgreSQL, Oracle, Microsoft SQL Server, and Derby databases. If you are using a different database for your MetaStore you will need to provide your own upgrade script.

Useful mailing lists

  1. user@hive.apache.org - To discuss and ask usage questions. Send an empty email to user-subscribe@hive.apache.org in order to subscribe to this mailing list.

  2. dev@hive.apache.org - For discussions about code, design and features. Send an empty email to dev-subscribe@hive.apache.org in order to subscribe to this mailing list.

  3. commits@hive.apache.org - In order to monitor commits to the source repository. Send an empty email to commits-subscribe@hive.apache.org in order to subscribe to this mailing list.

Packages

No packages published

Languages

  • Java 80.7%
  • HiveQL 11.1%
  • TSQL 4.0%
  • q 1.0%
  • Python 0.6%
  • Perl 0.5%
  • Other 2.1%