You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by gm...@apache.org on 2022/01/21 20:09:46 UTC

[hive-site] branch gh-pages created (now 360d200)

This is an automated email from the ASF dual-hosted git repository.

gmcdonald pushed a change to branch gh-pages
in repository https://gitbox.apache.org/repos/asf/hive-site.git.


      at 360d200  Add all files from hive.git/docs to gh-pages branch of hive.git

This branch includes the following new commits:

     new 360d200  Add all files from hive.git/docs to gh-pages branch of hive.git

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[hive-site] 01/01: Add all files from hive.git/docs to gh-pages branch of hive.git

Posted by gm...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

gmcdonald pushed a commit to branch gh-pages
in repository https://gitbox.apache.org/repos/asf/hive-site.git

commit 360d200567c914d236de0f72777522f17f7b74e4
Author: gmcdonald <gm...@apache.org>
AuthorDate: Fri Jan 21 21:09:08 2022 +0100

    Add all files from hive.git/docs to gh-pages branch of hive.git
---
 Dockerfile                  |  51 +++++++
 Gemfile                     |   3 +
 README.md                   |  25 ++-
 _config.yml                 |  17 +++
 _includes/footer.html       |  14 ++
 _includes/header.html       |   5 +
 _includes/sidenav.html      |  50 ++++++
 _includes/top.html          |  21 +++
 _layouts/default.html       |  19 +++
 css/hive.css                | 365 ++++++++++++++++++++++++++++++++++++++++++++
 doap_Hive.rdf               |  58 +++++++
 downloads.md                | 211 +++++++++++++++++++++++++
 favicon.ico                 | Bin 0 -> 1150 bytes
 hcatalog_downloads.md       |  43 ++++++
 images/feather_small.gif    | Bin 0 -> 7500 bytes
 images/hive-logo.jpg        | Bin 0 -> 2498 bytes
 images/hive_logo_medium.jpg | Bin 0 -> 4372 bytes
 index.md                    |  62 ++++++++
 issue_tracking.md           |  31 ++++
 javadoc.md                  |  32 ++++
 mailing_lists.md            |  78 ++++++++++
 people.md                   | 156 +++++++++++++++++++
 privacy_policy.md           |  48 ++++++
 version_control.md          |  27 ++++
 24 files changed, 1315 insertions(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..1889955
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,51 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# Hive site builder
+#
+
+FROM ubuntu:18.04
+MAINTAINER Hive team <de...@hive.apache.org>
+
+RUN ln -fs /usr/share/zoneinfo/America/Los_Angeles /etc/localtime
+RUN apt-get update
+RUN apt-get install -y \
+  g++ \
+  gcc \
+  git \
+  libssl-dev \
+  libz-dev \
+  make \
+  ruby-dev \
+  rubygems \
+  tzdata
+RUN gem install \
+  bundler \
+  liquid \
+  listen \
+  rouge
+RUN gem install jekyll -v 3.8.6
+RUN gem install github-pages
+
+RUN useradd -ms /bin/bash hive
+COPY . /home/hive/site
+RUN chown -R hive:hive /home/hive
+USER hive
+WORKDIR /home/hive/site
+
+EXPOSE 4000
+CMD bundle exec jekyll serve -H 0.0.0.0
+
diff --git a/Gemfile b/Gemfile
new file mode 100644
index 0000000..1c529c9
--- /dev/null
+++ b/Gemfile
@@ -0,0 +1,3 @@
+source 'https://rubygems.org'
+gem 'rouge'
+gem 'jekyll', "~> 3.8.3"
diff --git a/README.md b/README.md
index b2edc0c..6100928 100644
--- a/README.md
+++ b/README.md
@@ -1 +1,24 @@
-# hive-site
+# Apache Hive docs site
+
+This directory contains the code for the Apache Hive web site,
+[hive.apache.org](https://hive.apache.org/). The easiest way to build
+the site is to use docker to use a standard environment.
+
+## Run the docker container with the preview of the site.
+
+1. `docker build -t hive-site .`
+2. `CONTAINER=$(docker run -d -p 4000:4000 hive-site)`
+
+## Browsing
+
+Look at the site by navigating to
+[http://0.0.0.0:4000/](http://0.0.0.0:4000/) .
+
+## Pushing to site
+
+Commit and push the changes to the main branch. The site is automatically deployed
+from the site directory.
+
+## Shutting down the docker container
+
+1. `docker stop $CONTAINER`
\ No newline at end of file
diff --git a/_config.yml b/_config.yml
new file mode 100644
index 0000000..68bc8f0
--- /dev/null
+++ b/_config.yml
@@ -0,0 +1,17 @@
+markdown: kramdown
+highlighter: rouge
+permalink: /news/:year/:month/:day/:title
+excerpt_separator: ""
+encoding: utf-8
+exclude: [README.md, Gemfile*, Dockerfile]
+
+repository: https://github.com/apache/hive
+jira: https://issues.apache.org/jira/browse
+dist: https://downloads.apache.org/hive
+dist_mirror: https://www.apache.org/dyn/closer.cgi/hive
+tag_url: https://github.com/apache/hive/releases/tag/rel
+dist_archive: https://archive.apache.org/dist/hive
+apache: https://www.apache.org/
+license: https://www.apache.org/licenses/LICENSE-2.0.html
+wiki: https://cwiki.apache.org/confluence/display/Hive/
+old_javadoc: https://svn.apache.org/repos/infra/websites/production/hive/content/javadocs
\ No newline at end of file
diff --git a/_includes/footer.html b/_includes/footer.html
new file mode 100644
index 0000000..fef9a4a
--- /dev/null
+++ b/_includes/footer.html
@@ -0,0 +1,14 @@
+<div id="footera">
+  <div id="poweredby">
+    <p><img src="{{ '/images/feather_small.gif' | relative_url }}"/></p>
+  </div>
+  <div id="copyrighta">
+    <p>
+Copyright &copy; 2011-2014 The Apache Software Foundation Licensed under the <a href="{{ site.license }}">Apache License, Version 2.0</a>
+    </p>
+    <p>
+Apache Hive, Hive, Apache, the Apache feather logo, and the Apache Hive project logo are trademarks of The Apache Software Foundation.
+Other names appearing on the site may be trademarks of their respective owners.
+    </p>
+  </div>
+</div>
diff --git a/_includes/header.html b/_includes/header.html
new file mode 100644
index 0000000..db767a9
--- /dev/null
+++ b/_includes/header.html
@@ -0,0 +1,5 @@
+<div id="banner">
+  <div id="bannerleft"><a alt="Apache Hive" href="{{ '/index.html' | relative_url }}">
+    <img id="logo" alt="Apache Hive" src="{{ '/images/hive_logo_medium.jpg' | relative_url }}"/></a>
+  </div>
+</div>
diff --git a/_includes/sidenav.html b/_includes/sidenav.html
new file mode 100644
index 0000000..9abe531
--- /dev/null
+++ b/_includes/sidenav.html
@@ -0,0 +1,50 @@
+<div id="sidenav">
+<h1>General</h1>
+<ul>
+<li><a href="{{ '/index.html' | relative_url }}">Home</a></li>
+<li><a href="{{ '/downloads.html' | relative_url }}">Downloads</a></li>
+<li><a href="{{ site.license }}">License</a></li>
+<li><a href="{{ '/privacy_policy.html' | relative_url }}">Privacy Policy</a></li>
+</ul>
+
+<h1>Documentation</h1>
+<ul>
+<li><a href="{{ site.wiki }}/LanguageManual">Language Manual</a></li>
+<li><a href="{{ '/javadoc.html' | relative_url }}">Javadoc</a></li>
+<li><a href="{{ site.wiki }}">Wiki</a></li>
+</ul>
+
+<h1>Community</h1>
+<ul>
+<li><a href="{{ site.wiki }}/BecomingACommitter">Becoming a Committer</a></li>
+<li><a href="{{ site.wiki }}/How+to+edit+the+website">Edit Website</a></li>
+<li><a href="{{ site.wiki }}/HowToContribute">How to Contribute</a></li>
+<li><a href="{{ site.wiki }}/Home#Home-ResourcesforContributors">Resources for contributors</a></li>
+<li><a href="{{ '/issue_tracking.html' | relative_url }}">Issue Tracking</a></li>
+<li><a href="{{ '/mailing_lists.html' | relative_url }}">Mailing Lists</a></li>
+<li><a href="{{ '/people.html' | relative_url }}">People</a></li>
+</ul>
+
+<h1>Development</h1>
+<ul>
+<li><a href="{{ site.wiki }}/DesignDocs">Design Docs</a></li>
+<li><a href="{{ site.wiki }}/HiveDeveloperFAQ">FAQ</a></li>
+<li><a href="{{ site.jira }}/HIVE">Hive JIRA</a></li>
+<li><a href="{{ site.wiki }}/Hive+PreCommit+Patch+Testing">Precommit Patch Testing</a></li>
+<li><a href="{{ '/version_control.html' | relative_url }}">Version Control</a></li>
+</ul>
+
+<h1>PMC</h1>
+<ul>
+<li><a href="{{ site.wiki }}/Bylaws">ByLaws</a></li>
+<li><a href="{{ site.wiki }}/HowToRelease">How to Release</a></li>
+</ul>
+
+<h1>ASF</h1>
+<ul>
+<li><a href="{{ site.apache }}/foundation/contributing.html">Donations</a></li>
+<li><a href="{{ site.apache }}/foundation/sponsorship.html">Sponsorship</a></li>
+<li><a href="{{ site.apache }}/foundation/thanks.html">Thanks</a></li>
+<li><a href="{{ site.apache }}">Website</a></li>
+</ul>
+</div>
diff --git a/_includes/top.html b/_includes/top.html
new file mode 100644
index 0000000..d6a0838
--- /dev/null
+++ b/_includes/top.html
@@ -0,0 +1,21 @@
+<head>
+  <meta charset="UTF-8"/>
+  <meta name="generator" content="Jekyll v{{ jekyll.version }}"/>
+  <title>{{ page.title }}</title>
+  <link href="{{ '/favicon.ico' | relative_url }}" rel="icon" type="image/x-icon"/>
+  <link href="{{ '/css/hive.css' | relative_url }}" rel="stylesheet" type="text/css" />
+  <script type="text/javascript">
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-7453027-1']);
+  _gaq.push(['_setDomainName', 'apache.org']);
+  _gaq.push(['_trackPageview']);
+
+  (function() {
+    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+  })();
+
+  </script>
+</head>
diff --git a/_layouts/default.html b/_layouts/default.html
new file mode 100644
index 0000000..a24577f
--- /dev/null
+++ b/_layouts/default.html
@@ -0,0 +1,19 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+
+  {% include top.html %}
+
+  <body>
+    {% include header.html %}
+
+    <div id="clear"/>
+    {% include sidenav.html %}
+
+    <div id="contenta">
+      <h1>{{ page.title }}</h1>
+      {{ content }}
+    </div>
+
+    {% include footer.html %}
+  </body>
+</html>
diff --git a/css/hive.css b/css/hive.css
new file mode 100644
index 0000000..7bcdcd7
--- /dev/null
+++ b/css/hive.css
@@ -0,0 +1,365 @@
+/*
+* Licensed to the Apache Software Foundation (ASF) under one or more
+* contributor license agreements.  See the NOTICE file distributed with
+* this work for additional information regarding copyright ownership.
+* The ASF licenses this file to You under the Apache License, Version 2.0
+* (the "License"); you may not use this file except in compliance with
+* the License.  You may obtain a copy of the License at
+*
+*     http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+body {
+  color: white;
+  font-family: Helvetica, Arial, 'Liberation Sans', FreeSans, sans-serif;
+  font-size: 12pt;
+  margin: 0;
+}
+
+#banner {
+  height: 100px;
+  padding: 0 0 0 0;
+  color: black;
+  font-family: Helvetica, Arial, 'Liberation Sans', FreeSans, sans-serif;
+  font-size:16pt;
+  vertical-align: middle;
+}
+
+#bannerright {
+  text-align: right;
+  float: right;
+  padding: 2pt 36pt 10pt 36pt;
+}
+
+#bannercenter {
+  padding: 12pt 2pt 34pt 2pt;
+  float: center;
+  color: #107EC0;
+}
+
+#bannerleft {
+  text-align: left;
+  float: left;
+}
+
+#bannerleft a:hover {
+ color: #107EC0;
+ background-color: white;
+}
+
+#logo {
+padding-left:20px;
+}
+
+a {
+  color: #107EC0;
+}
+
+a:visited {
+ color: #107EC0;
+}
+
+a:hover {
+ color: #107EC0;
+ text-decoration:underline;
+}
+
+a img { border: none; }
+
+h1,h2,h3,h4,h5,h6 {
+  color: #193240;
+  text-transform:uppercase;
+}
+
+#clear {
+  overflow: auto;
+  clear: both;
+}
+
+#content {
+  margin: 0 50px 20px 50px;
+  padding: 0 8px 40px;
+  color: #333;
+  overflow: auto;
+  clear: both;
+}
+
+#content h1,h2,h3,h4,h5,h6 {
+  font-weight: normal;
+  text-transform:none;
+  margin: 10px 0 15px;
+  padding: 5px 0;
+}
+
+#content h1 {
+  font-size: 1.4em;
+  padding: 15px;
+  border-top: 1px solid #a3afb6;
+}
+
+#content h2 {
+  font-size: 1.2em;
+  margin-top: 2em;
+}
+
+#content h3,h4,h5,h6 {
+  border-bottom: none;
+  font-size: 1em;
+  margin-bottom: 0;
+}
+
+#content li {
+  margin-bottom: 0.5em;
+}
+
+#contenta {
+  margin: 0 150px 20px 250px;
+  padding: 0 8px 40px;
+  color: #333;
+}
+
+#contenta h1,h2,h3,h4,h5,h6 {
+  font-weight: normal;
+  margin: 10px 0 15px;
+  padding: 5px 0;
+}
+
+#contenta h1 {
+  font-size: 1.4em;
+  padding: 15px;
+  border-top: 1px solid #a3afb6;
+}
+
+#contenta h2 {
+  font-size: 1.2em;
+  margin-top: 2em;
+  border-bottom: 1px solid #a3afb6;
+}
+
+#contenta h3,h4,h5,h6 {
+  border-bottom: none;
+  font-size: 1em;
+  margin-bottom: 0;
+}
+
+#contenta li {
+  margin-bottom: 0.5em;
+}
+
+#contenta a:hover {
+ color: #107EC0;
+ text-decoration:underline;
+ background-color: #e6ebed;
+}
+
+#people table {
+    width: 1005;
+}
+
+table {
+  border-collapse:collapse;
+  margin: auto;
+}
+
+th {
+  height: 40px;
+  background: #f5f8fa;
+  border: 1px solid #a3afb6;
+  vertical-align: middle;
+  font-size: 0.9em;
+}
+
+td {
+  vertical-align: top;
+  border: 1px solid #a3afb6;
+  padding: 0.4em 0.5em 0.4em 0.5em;
+  font-size: 0.9em;
+}
+
+.w140 {
+  width: 140px;
+}
+
+.w160 {
+  width: 160px;
+}
+
+.w180 {
+  width: 180px;
+}
+
+.w200 {
+  width: 200px;
+}
+
+.w220 {
+  width: 220px;
+}
+
+.codehilite {
+  background-color: #f3f3f3;
+  padding: 0.01em 1em;
+  border-radius: 10px;
+}
+
+#sidenav {
+  border: 1px solid #e6ebed;
+  border-left: none;
+  -moz-border-radius: 0 10px 10px 0;
+  border-radius: 0 10px 10px 0;
+  font-size: 0.9em;
+  color: #003;
+  float: left;
+  padding: 15px 15px 5px 25px;
+  width: 180px;
+  background: none repeat scroll 0 0 #f5f8fa;
+  margin: 0 0 20px 0;
+}
+
+#sidenav img {
+  padding-bottom: 15px;
+  margin-left: auto;
+  margin-right: auto;
+  display: block;
+}
+
+#sidenav h1 {
+  color: #000;
+  font-size: 1em;
+  padding: 0;
+  margin-top: 0.8em;
+  margin-bottom: 0;
+  border-bottom: 1px solid #a3afb6;
+}
+
+#sidenav ul {
+  margin: 0 0;
+  padding: 0;
+  list-style: none;
+}
+
+#sidenav li {
+  border-bottom: 1px solid #e6ebed;
+  margin: 0.2em 0;
+  padding: 0;
+}
+
+#sidenav li a {
+  margin: 0;
+  text-decoration:none;
+}
+
+#sidenav li a:hover {
+  color: #193240;
+  background: none;
+}
+
+#navigation {
+  border: 1px solid #e6ebed;
+  border-left: none;
+  -moz-border-radius: 0 10px 10px 0;
+  border-radius: 0 10px 10px 0;
+  font-size: 0.9em;
+  color: #003;
+  float: left;
+  padding: 15px 15px 5px 25px;
+  width: 180px;
+  background: none repeat scroll 0 0 #f5f8fa;
+  margin: 0 0 20px 0;
+}
+
+#navigation img {
+  padding-bottom: 15px;
+  margin-left: auto;
+  margin-right: auto;
+  display: block;
+}
+
+#navigation h1 {
+  color: #000;
+  font-size: 1em;
+  padding: 0;
+  margin-top: 0.8em;
+  margin-bottom: 0;
+  border-bottom: 1px solid #a3afb6;
+}
+
+#navigation ul {
+  margin: 0 0;
+  padding: 0;
+  list-style: none;
+}
+
+#navigation li {
+  border-bottom: 1px solid #e6ebed;
+  margin: 0.2em 0;
+  padding: 0;
+}
+
+#navigation li a {
+  margin: 0;
+  text-decoration:none;
+}
+
+#navigation li a:hover {
+ color: #107EC0;
+ background-color: #e6ebed;
+}
+
+#footera {
+  margin: 20px 0px 0px 0px;
+  padding: 8px 0px 12px 0px;
+  border-top: 2px solid #ccc;
+  color:#666;
+  font-size: 8pt;
+  padding: 0 8px;
+  text-align: left;
+  overflow: auto;
+  clear: both;
+  line-height: 10pt;
+}
+
+#copyrighta {
+}
+
+#copyrighta p {
+  padding-left: 20px;
+  line-height: 10pt;
+  padding-bottom: 5px;
+}
+
+#copyrighta a {
+ color: #107EC0;
+ text-decoration:underline;
+}
+
+#copyrighta a:hover {
+ background-color: #e6ebed;
+}
+
+#poweredby {
+  float: right;
+  text-align: right;
+  width: 210px;
+  height: 100px;
+}
+
+#asf-logo {
+  width: 180px;
+  padding-top: 20px;
+}
+
+
+
+/* definition lists */
+dd {}
+dl {}
+dt {
+  display: inline;
+  float: left;
+}
diff --git a/doap_Hive.rdf b/doap_Hive.rdf
new file mode 100644
index 0000000..c66b5ed
--- /dev/null
+++ b/doap_Hive.rdf
@@ -0,0 +1,58 @@
+<?xml version="1.0"?>
+<?xml-stylesheet type="text/xsl"?>
+<rdf:RDF xml:lang="en"
+         xmlns="http://usefulinc.com/ns/doap#"
+         xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+         xmlns:asfext="http://projects.apache.org/ns/asfext#"
+         xmlns:foaf="http://xmlns.com/foaf/0.1/">
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+-->
+  <Project rdf:about="http://hive.apache.org">
+    <created>2011-11-09</created>
+    <license rdf:resource="http://usefulinc.com/doap/licenses/asl20" />
+    <name>Apache Hive</name>
+    <homepage rdf:resource="http://hive.apache.org" />
+    <asfext:pmc rdf:resource="http://hive.apache.org" />
+    <shortdesc>The Apache Hive (TM) data warehouse software facilitates querying and managing large datasets residing in distributed storage.</shortdesc>
+    <description>The Apache Hive (TM) data warehouse software facilitates querying and managing large datasets residing in distributed storage. Built on top of Apache Hadoop (TM), it provides
+
+* tools to enable easy data extract/transform/load (ETL)
+* 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 via MapReduce
+
+Hive defines a simple SQL-like query language, called HiveQL, that enables users familiar with SQL to query the data. At the same time, this language also allows programmers who are familiar with the MapReduce framework to be able to plug in their custom mappers and reducers to perform more sophisticated analysis that may not be supported by the built-in capabilities of the language. HiveQL can also be extended with custom scalar functions (UDF's), aggregations (UDAF's), and table functi [...]
+</description>
+    <bug-database rdf:resource="https://issues.apache.org/jira/browse/HIVE" />
+    <mailing-list rdf:resource="http://hive.apache.org/mailing_lists.html" />
+    <download-page rdf:resource="http://hive.apache.org/releases.html" />
+    <programming-language>Java</programming-language>
+    <category rdf:resource="http://projects.apache.org/category/database" />
+    <repository>
+      <SVNRepository>
+        <location rdf:resource="http://svn.apache.org/repos/asf/hive/"/>
+        <browse rdf:resource="http://svn.apache.org/viewcvs.cgi/hive/"/>
+      </SVNRepository>
+    </repository>
+    <maintainer>
+      <foaf:Person>
+        <foaf:name>John Sichi</foaf:name>
+          <foaf:mbox rdf:resource="mailto:jvs@apache.org"/>
+      </foaf:Person>
+    </maintainer>
+  </Project>
+</rdf:RDF>
diff --git a/downloads.md b/downloads.md
new file mode 100644
index 0000000..891dbad
--- /dev/null
+++ b/downloads.md
@@ -0,0 +1,211 @@
+---
+title: Downloads
+layout: default
+---
+
+<!---
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License. -->
+
+Releases may be downloaded from Apache mirrors:
+
+__[Download a release now!][HIVE_DL]__
+
+
+On the mirror, all recent releases are available, but are not
+guaranteed to be stable. For stable releases, look in the stable
+directory.
+
+
+## News
+### 18 April 2020: release 2.3.7 available
+This release works with Hadoop 2.x.y
+You can look at the complete [JIRA change log for this release][HIVE_2_3_7_CL].
+
+### 26 August 2019: release 3.1.2 available
+This release works with Hadoop 3.x.y.
+You can look at the complete [JIRA change log for this release][HIVE_3_1_2_CL].
+
+### 23 August 2019: release 2.3.6 available
+This release works with Hadoop 2.x.y.
+You can look at the complete [JIRA change log for this release][HIVE_2_3_6_CL].
+
+### 14 May 2019: release 2.3.5 available
+This release works with Hadoop 2.x.y.
+You can look at the complete [JIRA change log for this release][HIVE_2_3_5_CL].
+
+### 7 November 2018: release 2.3.4 available
+This release works with Hadoop 2.x.y.
+You can look at the complete [JIRA change log for this release][HIVE_2_3_4_CL].
+
+### 1 November 2018: release 3.1.1 available
+This release works with Hadoop 3.x.y.
+You can look at the complete [JIRA change log for this release][HIVE_3_1_1_CL].
+
+### 30 July 2018: release 3.1.0 available
+This release works with Hadoop 3.x.y.
+You can look at the complete [JIRA change log for this release][HIVE_3_1_0_CL].
+
+### 21 May 2018 : release 3.0.0 available
+This release works with Hadoop 3.x.y.
+The on-disk layout of Acid tables has changed with this release. Any Acid table partition that had Update/Delete/Merge statement executed since the last Major compaction must execute Major compaction before upgrading to 3.0.  No more Update/Delete/Merge may be executed against these tables since the start of Major compaction.  Not following this may lead to data corruption.  Tables/partitions that only contain results of Insert statements are fully compatible and don't need to be compacted.
+You can look at the complete [JIRA change log for this release][HIVE_3_0_0_CL].
+
+### 3 April 2018 : release 2.3.3 available
+This release works with Hadoop 2.x.y
+You can look at the complete [JIRA change log for this release][HIVE_2_3_3_CL].
+
+### 18 November 2017 : release 2.3.2 available
+This release works with Hadoop 2.x.y
+You can look at the complete [JIRA change log for this release][HIVE_2_3_2_CL].
+
+### 24 October 2017 : release 2.3.1 available
+This release works with Hadoop 2.x.y
+You can look at the complete [JIRA change log for this release][HIVE_2_3_1_CL].
+
+### 25 July 2017 : release 2.2.0 available
+This release works with Hadoop 2.x.y
+You can look at the complete [JIRA change log for this release][HIVE_2_2_0_CL].
+
+### 17 July 2017 : release 2.3.0 available
+This release works with Hadoop 2.x.y
+You can look at the complete [JIRA change log for this release][HIVE_2_3_0_CL].
+
+### 07 April 2017 : release 1.2.2 available
+This release works with Hadoop 1.x.y, 2.x.y
+You can look at the complete [JIRA change log for this release][HIVE_1_2_2_CL].
+
+### 8 December 2016 : release 2.1.1 available
+This release works with Hadoop 2.x.y.
+Hive 1.x line will continue to be maintained with Hadoop 1.x.y support.
+You can look at the complete [JIRA change log for this release][HIVE_2_1_1_CL].
+
+### 20 June 2016 : release 2.1.0 available
+This release works with Hadoop 2.x.y.
+Hive 1.x line will continue to be maintained with Hadoop 1.x.y support.
+You can look at the complete [JIRA change log for this release][HIVE_2_1_0_CL].
+
+### 25 May 2016 : release 2.0.1 available
+This release works with Hadoop 2.x.y.
+Hive 1.x line will continue to be maintained with Hadoop 1.x.y support.
+You can look at the complete [JIRA change log for this release][HIVE_2_0_1_CL].
+
+### 15 February 2016 : release 2.0.0 available
+This release works with Hadoop 2.x.y.
+Hive 1.x line will continue to be maintained with Hadoop 1.x.y support.
+You can look at the complete [JIRA change log for this release][HIVE_2_0_0_CL].
+
+### 28 Jan 2016 : hive-parent-auth-hook made available
+This is a hook usable with hive to fix an authorization issue. Users
+of Hive 1.0.x,1.1.x and 1.2.x are encouraged to use this hook. More
+details can be found in the README inside the tar.gz file.
+
+### 27 June 2015 : release 1.2.1 available
+This release works with Hadoop 1.x.y, 2.x.y
+
+You can look at the complete [JIRA change log for this release][HIVE_1_2_1_CL].
+
+### 21 May 2015 : release 1.0.1, 1.1.1, and ldap-fix are available
+These two releases works with Hadoop 1.x.y, 2.x.y. They are based on
+Hive 1.0.0 and 1.1.0 respectively, plus a fix for a LDAP vulnerability issue.
+Hive users for these two versions are encouraged to upgrade. Users
+of previous versions can download and use the ldap-fix.
+More details can be found in the README attached to the tar.gz file.
+
+You can look at the complete JIRA change log for [release 1.0.1][HIVE_1_0_1_CL]
+and [release 1.1.1][HIVE_1_1_1_CL]
+
+### 18 May 2015 : release 1.2.0 available
+This release works with Hadoop 1.x.y, 2.x.y
+
+You can look at the complete [JIRA change log for this release][HIVE_1_2_0_CL].
+
+### 8 March 2015: release 1.1.0 available
+This release works with Hadoop 1.x.y, 2.x.y
+
+You can look at the complete [JIRA change log for this release][HIVE_1_1_0_CL].
+
+### 4 February 2015: release 1.0.0 available
+This release works with Hadoop 1.x.y, 2.x.y
+
+You can look at the complete [JIRA change log for this release][HIVE_1_0_0_CL].
+
+### 12 November, 2014: release 0.14.0 available
+This release works with Hadoop 1.x.y, 2.x.y
+
+You can look at the complete [JIRA change log for this release][HIVE_14_CL].
+
+### 6 June, 2014: release 0.13.1 available
+This release works with Hadoop 0.20.x, 0.23.x.y, 1.x.y, 2.x.y
+
+You can look at the complete [JIRA change log for this release][HIVE_13_1_CL].
+
+### 21 April, 2014: release 0.13.0 available
+This release  works with Hadoop 0.20.x, 0.23.x.y, 1.x.y, 2.x.y
+
+You can look at the complete [JIRA change log for this release][HIVE_13_CL].
+
+### 15 October, 2013: release 0.12.0 available
+This release  works with Hadoop 0.20.x, 0.23.x.y, 1.x.y, 2.x.y
+
+You can look at the complete [JIRA change log for this release][HIVE_12_CL].
+
+### 15 May, 2013: release 0.11.0 available
+This release  works with Hadoop 0.20.x, 0.23.x.y, 1.x.y, 2.x.y
+
+You can look at the complete [JIRA change log for this release][HIVE_11_CL].
+
+### March, 2013: HCatalog merges into Hive
+Old HCatalog releases may still be [downloaded][HCAT_DL].
+
+### 11 January, 2013: release 0.10.0 available
+This release  works with Hadoop 0.20.x, 0.23.x.y, 1.x.y, 2.x.y
+
+You can look at the complete [JIRA change log for this release][HIVE_10_CL].
+
+[HIVE_DL]: http://www.apache.org/dyn/closer.cgi/hive/
+[HIVE_3_1_2_CL]: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12344397&styleName=Html&projectId=12310843
+[HIVE_2_3_7_CL]: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12346056&styleName=Text&projectId=12310843
+[HIVE_2_3_6_CL]: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12345603&styleName=Text&projectId=12310843
+[HIVE_2_3_5_CL]: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12345394&styleName=Text&projectId=12310843
+[HIVE_2_3_4_CL]: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12344319&styleName=Text&projectId=12310843
+[HIVE_3_1_1_CL]: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12344240&styleName=Text&projectId=12310843
+[HIVE_3_1_0_CL]: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12343014&styleName=Text&projectId=12310843
+[HIVE_3_0_0_CL]: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12340268&styleName=Text&projectId=12310843
+[HIVE_2_3_3_CL]: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12342162&styleName=Text&projectId=12310843
+[HIVE_2_3_2_CL]: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12342053&styleName=Text&projectId=12310843
+[HIVE_2_3_1_CL]: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12341418&styleName=Text&projectId=12310843
+[HIVE_2_2_0_CL]: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12335837&styleName=Text&projectId=12310843
+[HIVE_2_3_0_CL]: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12340269&styleName=Text&projectId=12310843
+[HIVE_2_1_1_CL]: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12335838&styleName=Text&projectId=12310843
+[HIVE_2_1_0_CL]: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12334255&styleName=Text&projectId=12310843
+[HIVE_2_0_1_CL]: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12334886&styleName=Text&projectId=12310843
+[HIVE_2_0_0_CL]: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12332641&styleName=Text&projectId=12310843
+[HIVE_1_2_1_CL]: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12332384&styleName=Text&projectId=12310843
+[HIVE_1_2_2_CL]:https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12332952&styleName=Text&projectId=12310843
+[HIVE_1_1_1_CL]: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12329557&styleName=Text&projectId=12310843
+[HIVE_1_0_1_CL]: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12329444&styleName=Text&projectId=12310843
+[HIVE_1_2_0_CL]: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12329345&styleName=Text&projectId=12310843
+[HIVE_1_1_0_CL]: https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310843&styleName=Text&version=12329363
+[HIVE_1_0_0_CL]: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12329278&styleName=Text&projectId=12310843
+[HIVE_14_CL]: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12326450&styleName=Text&projectId=12310843
+[HIVE_13_1_CL]: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12326829&styleName=Text&projectId=12310843
+[HIVE_13_CL]: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12324986&styleName=Text&projectId=12310843
+[HIVE_12_CL]: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12324312&styleName=Text&projectId=12310843
+[HIVE_11_CL]: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12323587&styleName=Text&projectId=12310843
+[HCAT_DL]: /hcatalog_downloads.html
+[HIVE_10_CL]: https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12320745&styleName=Text&projectId=12310843
diff --git a/favicon.ico b/favicon.ico
new file mode 100644
index 0000000..6640ede
Binary files /dev/null and b/favicon.ico differ
diff --git a/hcatalog_downloads.md b/hcatalog_downloads.md
new file mode 100644
index 0000000..9e1b130
--- /dev/null
+++ b/hcatalog_downloads.md
@@ -0,0 +1,43 @@
+---
+title: HCatalog Downloads
+layout: default
+---
+
+<!---
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License. -->
+
+## HCatalog Merged With Hive
+
+Following HCatalog's merge with Hive (in March of 2013) HCatalog is now released as part of Hive. Older versions of HCatalog can still be separately downloaded.
+
+Old releases may be downloaded from Apache mirrors:
+
+__[Download an old release now!][HCAT_DL]__
+
+## News
+
+### 14 Feb, 2013: release 0.5.0 available
+This release introduces webhcat (a web services API to HCatalog), artifacts published in the maven central repository, and many improvements and bug fixes. Release Notes are available at the download site.
+
+### 16 May, 2012: release 0.4.0 available
+This release adds support for reading and writing from Hive, switches HCatalog to use Hive's SerDe interface instead of HCatalog specific StorageDescriptors, and adds experimental support for HBase. Release Notes are available at the download site
+
+### O2 Oct, 2011: release 0.2.0 available
+This is a first release of Apache HCatalog. Release Notes are available at the download site
+
+[HCAT_DL]: http://www.apache.org/dyn/closer.cgi/incubator/hcatalog/
diff --git a/images/feather_small.gif b/images/feather_small.gif
new file mode 100644
index 0000000..94f1892
Binary files /dev/null and b/images/feather_small.gif differ
diff --git a/images/hive-logo.jpg b/images/hive-logo.jpg
new file mode 100644
index 0000000..0f75cf1
Binary files /dev/null and b/images/hive-logo.jpg differ
diff --git a/images/hive_logo_medium.jpg b/images/hive_logo_medium.jpg
new file mode 100644
index 0000000..faa6182
Binary files /dev/null and b/images/hive_logo_medium.jpg differ
diff --git a/index.md b/index.md
new file mode 100644
index 0000000..c03c87f
--- /dev/null
+++ b/index.md
@@ -0,0 +1,62 @@
+---
+title: Apache Hive
+layout: default
+---
+
+<!---
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License. -->
+
+The Apache Hive &trade; data warehouse software facilitates reading,
+writing, and managing large datasets residing in distributed storage
+using SQL.  Structure can be projected onto data already in storage.
+A command line tool and JDBC driver are provided to connect users to
+Hive.
+
+## Getting Started With Apache Hive Software
+
+ * Check out the [Getting Started Guide][GETTING_STARTED].
+ * Learn more [About Hive's Functionality][HIVE_DETAILS].
+ * Read the [Getting Started Guide][GETTING_STARTED] to learn how to install Hive
+ * The [User and Hive SQL documentation][HIVE_QL] shows how to program Hive
+
+## Getting Involved With The Apache Hive Community
+
+Apache Hive is an open source project run by volunteers at the Apache
+Software Foundation. Previously it was a subproject of [Apache&reg;
+Hadoop&reg;][APACHE_HADOOP], but has now graduated to become a
+top-level project of its own. We encourage you to learn about the
+project and contribute your expertise.
+
+ * Give us [feedback or submit bug reports][ISSUE_TRACKING]: What can we do better?
+ * Join the [mailing list][MAILING_LISTS] and meet our [community][COMMUNITY]
+ * Read through our [Contributor's Guides][CONTRIBUTOR] about where to find the source or submit patches
+ * Become a [Hive Fan on Facebook][HIVE_FACEBOOK]
+ * Follow [@ApacheHive on Twitter][HIVE_TWITTER]
+
+[GETTING_STARTED]: {{ site.wiki }}/GettingStarted
+[APACHE_HADOOP]: http://hadoop.apache.org
+[ISSUE_TRACKING]: {{ '/issue_tracking.html' | relative_url }}
+[MAILING_LISTS]: {{ '/mailing_lists.html' | relative_url }}
+[HIVE_FACEBOOK]: http://www.facebook.com/pages/Hive/43928506208
+[HIVE_DETAILS]: {{ site.wiki }}/Home
+[HIVE_QL]: {{ site.wiki }}/Home#Home-UserDocumentation
+[COMMUNITY]: {{ '/people.html' | relative_url }}
+[CONTRIBUTOR]: {{ site.wiki }}/Home#Home-ResourcesforContributors
+[HIVE_TWITTER]: https://twitter.com/apachehive
+
+
diff --git a/issue_tracking.md b/issue_tracking.md
new file mode 100644
index 0000000..9ba3471
--- /dev/null
+++ b/issue_tracking.md
@@ -0,0 +1,31 @@
+---
+title: Issue Tracking
+layout: default
+---
+
+<!---
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License. -->
+
+Hive tracks both bugs and enhancementrequests using [Apache
+JIRA]({{ site.jira }}/HIVE). We welcome input,
+however, before filing a request, please make sure you do the
+following:
+
+  * Search the JIRA database.
+  * Check the [user mailing list](/mailing_lists.html), both by searching the archives and by asking questions.
+
diff --git a/javadoc.md b/javadoc.md
new file mode 100644
index 0000000..341c529
--- /dev/null
+++ b/javadoc.md
@@ -0,0 +1,32 @@
+---
+title: Javadoc
+layout: default
+---
+<!---
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License. -->
+
+## Recent versions:
+
+  * [Hive 3.1.2 Javadocs]({{ site.old_javadoc }}/r3.1.2/api/index.html)
+  * [Hive 3.0.0 Javadocs]({{ site.old_javadoc }}/r3.0.0/api/index.html)
+  * [Hive 2.3.7 Javadocs]({{ site.old_javadoc }}/r2.3.7/api/index.html)
+  * [Hive 2.2.0 Javadocs]({{ site.old_javadoc }}/r2.2.0/api/index.html)
+  * [Hive 2.1.1 Javadocs]({{ site.old_javadoc }}/r2.1.1/api/index.html)
+  * [Hive 1.2.2 Javadocs]({{ site.old_javadoc }}/r1.2.2/api/index.html)
+
+## javadoc and sources jars for use in an IDE are also available via [Nexus](https://repository.apache.org/index.html#nexus-search;gav~org.apache.hive~~~~)
diff --git a/mailing_lists.md b/mailing_lists.md
new file mode 100644
index 0000000..ccc7b31
--- /dev/null
+++ b/mailing_lists.md
@@ -0,0 +1,78 @@
+---
+title: Mailing Lists
+layout: default
+---
+<!---
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License. -->
+
+We welcome you to join our mailing lists and let us know about your thoughts or
+ideas about Hive.
+
+## User Mailing List
+
+The user list is for general discussion or questions on using Hive. Hive
+developers monitor this list and provide assistance when needed.
+
+  * Subscribe: <us...@hive.apache.org>
+  * Post: <us...@hive.apache.org>
+  * Unsubscribe: <us...@hive.apache.org>
+  * Archives:
+    * [Apache][user_apache]
+    * [Markmail][user_markmail]
+
+## Developer Mailing List
+
+The developer list is for Hive developers to discuss ongoing work, make
+decisions, and vote on technical issues.
+
+  * Subscribe: <de...@hive.apache.org>
+  * Post: <de...@hive.apache.org>
+  * Unsubscribe: <de...@hive.apache.org>
+  * Archives:
+    * [Apache][dev_apache]
+    * [Markmail][dev_markmail]
+
+## Commits Mailing List
+
+The commits list receives notifications with diffs when changes are committed
+to the Hive source tree.
+
+  * Subscribe: <co...@hive.apache.org>
+  * Unsubscribe: <co...@hive.apache.org>
+  * Archives:
+    * [Apache][commits_apache]
+    * [Markmail][commits_markmail]
+
+## Security Mailing List
+
+The security mailing list is a private list for discussion of potential security vulnerabilities issues. Please post potential security vulnerabilities to this list so that they may be investigated and fixed before the vulnerabilities is published.
+
+__Note: This mailing list is NOT for end-user questions and discussion on security. Please use the user mailing list for such issues.__
+
+The Hive security mailing list is : <se...@hive.apache.org>.
+
+In order to post to the list, it is __NOT__ necessary to first subscribe to it.
+
+[user_apache]: http://mail-archives.apache.org/mod_mbox/hive-user
+[user_markmail]: http://markmail.org/search/+list:org.apache.incubator.hive-user
+
+[dev_apache]: http://mail-archives.apache.org/mod_mbox/hive-dev
+[dev_markmail]: http://markmail.org/search/+list:org.apache.incubator.hive-dev
+
+[commits_apache]: http://mail-archives.apache.org/mod_mbox/hive-commits
+[commits_markmail]: http://markmail.org/search/+list:org.apache.incubator.hive-commits
diff --git a/people.md b/people.md
new file mode 100644
index 0000000..20424e2
--- /dev/null
+++ b/people.md
@@ -0,0 +1,156 @@
+---
+title: People
+layout: default
+---
+<!---
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License. -->
+
+<style type="text/css">
+  table {
+    width:100%;
+  }
+  table, td {
+    border-collapse: collapse;
+    border-top: 1px solid #ccc;
+    border-bottom: 1px solid #ccc;
+    padding: 5px;
+  }
+  th {
+    style: font-weight:bold;
+    text-align: left;
+    background: #FFFFFF;
+  }
+  tr:nth-child(2n){
+    background: #FFF68F;
+  }
+  tr:nth-child(2n+1) {
+    background: #FFFFFF;
+  }
+</style>
+
+Apache Hive is a community developed project. The list below is a partial
+list of contributors to the project, for a complete list you would have to look
+at all contributors to our issue tracker, mailing list and version control.
+
+## Hive PMC
+
+| Apache username | name                     | organization                                      | role |
+| --------------- + ------------------------ + ------------------------------------------------- + ---- |
+| aihuaxu         | Aihua Xu                 | <a href="http://cloudera.com/">Cloudera</a>       |      |
+| athusoo         | Ashish Thusoo            | <a href="http://qubole.com/">Qubole</a>           |      |
+| brock           | Brock Noland             | <a href="http://streamsets.com/">StreamSets</a>   |      |
+| ctang           | Chaoyu Tang              | <a href="http://cloudera.com/">Cloudera</a>       |      |
+| cws             | Carl Steinbach           | <a href="http://linkedin.com">LinkedIn</a>        |      |
+| daijy           | Daniel Dai               | <a href="http://hortonworks.com/">Hortonworks</a> |      |
+| ecapriolo       | Edward Capriolo          | <a href="http://hortonworks.com/">Hortonworks</a> |      |
+| gates           | Alan Gates               | <a href="http://hortonworks.com/">Hortonworks</a> |      |
+| gopalv          | Gopal Vijayaraghavan     | <a href="http://hortonworks.com/">Hortonworks</a> |      |
+| gunther         | Gunther Hagleitner       | <a href="http://hortonworks.com/">Hortonworks</a> |      |
+| hashutosh       | Ashutosh Chauhan         | <a href="http://hortonworks.com/">Hortonworks</a> |  VP  |
+| heyongqiang     | Yongqiang He             | <a href="http://dropbox.com/">Dropbox</a>         |      |
+| jcamacho        | Jesus Camacho Rodriguez  | <a href="http://hortonworks.com/">Hortonworks</a> |      |
+| jdere           | Jason Dere               | <a href="http://hortonworks.com/">Hortonworks</a> |      |
+| jpullokk        | Laljo John Pullokkaran   | <a href="http://hortonworks.com/">Hortonworks</a> |      |
+| jssarma         | Joydeep Sensarma         | <a href="http://qubole.com/">Qubole</a>           |      |
+| jxiang          | Jimmy Xiang              | <a href="http://cloudera.com/">Cloudera</a>       |      |
+| kevinwilfong    | Kevin Wilfong            | <a href="http://facebook.com/">Facebook</a>       |      |
+| leftyl          | Lefty Leverenz           | <a href="https://www.ibm.com/">IBM</a>            |      |
+| namit           | Namit Jain               | <a href="http://www.nutanix.com/">Nutanix</a>     |      |
+| navis           | Navis Ryu                | <a href="http://nexr.com/">NexR</a>               |      |
+| nzhang          | Ning Zhang               | <a href="http://facebook.com/">Facebook</a>       |      |
+| omalley         | Owen O'Malley            | <a href="http://linkedin.com/">LinkedIn</a>       |      |
+| prasadm         | Prasad Mujumdar          | <a href="http://cloudera.com/">Cloudera</a>       |      |
+| prasanth_j      | Prasanth Jayachandran    | <a href="http://hortonworks.com/">Hortonworks</a> |      |
+| pvary           | Peter Vary               | <a href="http://cloudera.com/">Cloudera</a>       |      |
+| pxiong          | Pengcheng Xiong          | <a href="http://hortonworks.com/">Hortonworks</a> |      |
+| rhbutani        | Harish Butani            | <a href="http://hortonworks.com/">Hortonworks</a> |      |
+| rmurthy         | Raghotham Murthy         | <a href="http://facebook.com/">Facebook</a>       |      |
+| sershe          | Sergey Shelukhin         | <a href="http://hortonworks.com/">Hortonworks</a> |      |
+| spena           | Sergio Peña              | <a href="http://cloudera.com/">Cloudera</a>       |      |
+| sunchao         | Chao Sun                 | <a href="http://cloudera.com/">Cloudera</a>       |      |
+| szehon          | Szehon Ho                | <a href="http://cloudera.com/">Cloudera</a>       |      |
+| thejas          | Thejas Nair              | <a href="http://hortonworks.com/">Hortonworks</a> |      |
+| vgumashta       | Vaibhav Gumashta         | <a href="http://hortonworks.com/">Hortonworks</a> |      |
+| vikram          | Vikram Dixit             | <a href="http://hortonworks.com/">Hortonworks</a> |      |
+| xuefu           | Xuefu Zhang              | <a href="https://www.alibaba.com/">Alibaba Inc</a> |     |
+| ychena          | Yongzhi Chen             | <a href="http://cloudera.com/">Cloudera</a>       |      |
+
+## Hive Committers
+
+| Apache username | name                     | organization                           |
+| --------------- + ------------------------ + -------------------------------------- |
+| amareshwari     | Amareshwari Sriramadasu  | <a href="http://www.inmobi.com/">InMobi</a> |
+| apivovarov      | Alexander Pivovarov      | <a href="http://fostercitylab.crabdance.com/">Foster City Hadoop Lab LLC</a> |
+| asherman        | Andrew Sherman           | <a href="http://cloudera.com/">Cloudera</a> |
+| bharos92        | Bharath Krishna          | <a href="http://cloudera.com/">Cloudera</a> |
+| chengxiang      | Chengxiang Li            | <a href="http://intel.com/">Intel</a> |
+| chinnaraol      | Chinna Rao Lalam         | <a href="http://intel.com/">Intel</a> |
+| cdrome          | Chris Drome              | <a href="https://www.oath.com/">Oath</a> |
+| djaiswal        | Deepak Jaiswal           | <a href="http://hortonworks.com/">Hortonworks</a> |
+| dmtolpeko       | Dmitry Tolpeko           | <a href="http://www.epam.com/">EPAM</a> |
+| dongc           | Dong Chen                | <a href="http://intel.com/">Intel</a> |
+| ehans           | Eric Hanson              | <a href="http://microsoft.com">Microsoft</a> |
+| gangtimliu      | Gang Tim Liu             | <a href="http://facebook.com/">Facebook</a> |
+| harisankar      | Hari Sankar Sivarama Subramaniyan | <a href="http://hortonworks.com/">Hortonworks</a> |
+| janaki          | Janaki Lahorani          | <a href="http://cloudera.com/">Cloudera</a> |
+| jitendra        | Jitendra Pandey          | <a href="http://hortonworks.com/">Hortonworks</a> |
+| kgyrtkirk       | Zoltan Haindrich         | <a href="http://hortonworks.com/">Hortonworks</a> |
+| kuczoram        | Marta Kuczora            | <a href="http://cloudera.com/">Cloudera</a> |
+| larsfrancke     | Lars Francke             | <a href="http://lars-francke.de/en/">Freelancer</a> |
+| mithun          | Mithun Radhakrishnan     | <a href="https://www.oath.com/">Oath</a> |
+| mmccline        | Matt McCline             | <a href="http://hortonworks.com/">Hortonworks</a> |
+| mohits          | Mohit Sabharwal          | <a href="http://cloudera.com/">Cloudera</a> |
+| ngangam         | Naveen Gangam            | <a href="http://cloudera.com/">Cloudera</a> |
+| rbalamohan      | Rajesh Balamohan         | <a href="http://hortonworks.com/">Hortonworks</a> |
+| remusr          | Remus Rusanu             | <a href="http://hortonworks.com/">Hortonworks</a> |
+| sankarh         | Sankar Hariappan         | <a href="http://hortonworks.com/">Hortonworks</a> |
+| sdong           | Siying Dong              | <a href="http://facebook.com/">Facebook</a> |
+| sseth           | Siddharth Seth           | <a href="http://hortonworks.com/">Hortonworks</a> |
+| szita           | Adam Szita               | <a href="http://cloudera.com/">Cloudera</a> |
+| tchoi           | Teddy Choi               | <a href="http://hortonworks.com/">Hortonworks</a> |
+| vgarg           | Vineet Garg              | <a href="http://hortonworks.com/">Hortonworks</a> |
+| weiz            | Wei Zheng                | <a href="http://hortonworks.com/">Hortonworks</a> |
+| xuf             | Ferdinand Xu             | <a href="http://intel.com/">Intel</a> |
+| yhuai           | Yin Huai                 | <a href="http://databricks.com/">Databricks</a> |
+
+PMC members are also Hive committers.
+
+## Catalog Committers
+
+| Apache username | name                     | organization                           |
+| --------------- + ------------------------ + -------------------------------------- |
+| toffer          | Francis Christopher Liu  | <a href="http://yahoo.com/">Yahoo!</a> |
+| avandana        | Vandana Ayyalasomayajula | <a href="http://yahoo.com/">Yahoo!</a> |
+| travis          | Travis Crawford          | <a href="http://twitter.com">Twitter</a> |
+| mithun          | Mithun Radhakrishnan     | <a href="https://www.oath.com/">Oath</a> |
+
+## Contributors
+
+A list of Hive contributors and their contributions is available from
+<a href="https://issues.apache.org/jira/secure/ConfigureReport.jspa?projectOrFilterId=project-12310843&amp;statistictype=assignees&amp;selectedProjectId=12310843&amp;reportKey=com.atlassian.jira.plugin.system.reports%3Apie-report&amp;Next=Next">Jira</a>.
+
+## Emeritus Hive PMC Members
+
+ * Dhruba Borthakur
+ * Prasad Chakka
+ * Johan Oskarsson
+ * Zheng Shao
+ * John Sichi
+ * Sushanth Sowmyan
+ * Paul Yang
+
diff --git a/privacy_policy.md b/privacy_policy.md
new file mode 100644
index 0000000..cb857ce
--- /dev/null
+++ b/privacy_policy.md
@@ -0,0 +1,48 @@
+---
+title: Privacy Policy
+layout: default
+---
+
+<!---
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License. -->
+
+Information about your use of this website is collected using server
+access logs and a tracking cookie. The collected information consists of
+the following:
+
+  1. The IP address from which you access the website;
+  2. The type of browser and operating system you use to access our site;
+  3. The date and time you access our site;
+  4. The pages you visit; and
+  5. The addresses of pages from where you followed a link to our site.
+
+Part of this information is gathered using a tracking cookie set by the
+<a href="http://www.google.com/analytics/">Google Analytics</a>
+service and handled by Google as
+described in their <a href="http://www.google.com/privacy.html">privacy policy</a>.
+See your browser documentation for instructions on how to disable the
+cookie if you prefer not to share this data with Google.
+
+We use the gathered information to help us make our site more useful to
+visitors and to better understand how and when our site is used. We do not
+track or collect personally identifiable information or associate gathered
+data with any personally identifying information from other sources.
+
+By using this website, you consent to the collection of this data in
+the manner and for the purpose described above.
+
diff --git a/version_control.md b/version_control.md
new file mode 100644
index 0000000..f4da704
--- /dev/null
+++ b/version_control.md
@@ -0,0 +1,27 @@
+---
+title: Version Control
+layout: default
+---
+<!---
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License. -->
+
+The Hive source code resides in Apache's [Hive GitHub]({{ site.repository }})
+
+  * Anonymous clone via http - <https://github.com/apache/hive.git>
+  * Authenticated clone via ssh - git@github.com:apache/hive.git
+  * Instructions: [Apache committer git instructions](https://git.apache.org/)