Hive 3.1.3 release.
Hive 3.1.3-rc3 release.
HIVE-25665: Checkstyle LGPL files must not be in the release sources/binaries (Peter Vary reviewed by Zoltan Haindrich) (#3063)

3 files changed
tree: 91f65d1c2ed5bae5860a9bd38e3efe9935e77892
  1. accumulo-handler/
  2. beeline/
  3. bin/
  4. binary-package-licenses/
  5. checkstyle/
  6. classification/
  7. cli/
  8. common/
  9. conf/
  10. contrib/
  11. core/
  12. data/
  13. dev-support/
  14. docs/
  15. druid-handler/
  16. findbugs/
  17. hbase-handler/
  18. hcatalog/
  19. hplsql/
  20. itests/
  21. jdbc/
  22. jdbc-handler/
  23. kryo-registrator/
  24. lib/
  25. llap-client/
  26. llap-common/
  27. llap-ext-client/
  28. llap-server/
  29. llap-tez/
  30. metastore/
  31. packaging/
  32. ql/
  33. serde/
  34. service/
  35. service-rpc/
  36. shims/
  37. spark-client/
  38. standalone-metastore/
  39. storage-api/
  40. streaming/
  41. testutils/
  42. upgrade-acid/
  43. vector-code-gen/
  44. .arcconfig
  45. .checkstyle
  46. .gitattributes
  47. .gitignore
  48. .reviewboardrc
  49. .travis.yml
  50. errata.txt
  51. Jenkinsfile
  52. LICENSE
  53. NOTICE
  54. pom.xml
  55. README.md
  56. RELEASE_NOTES.txt
README.md

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.8

  • Hadoop 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.