Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ themes/.DS_Store
themes/hive/.DS_Store
themes/hive/static/.DS_Store
.hugo_build.lock
target
51 changes: 27 additions & 24 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
<!---
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. -->
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. -->

# Apache Hive Documentation Site

This repository contains the code for generating the Apache Hive web site.
Expand All @@ -25,13 +26,14 @@ It's built with Hugo and hosted at https://hive.apache.org.
* Clone this repository.
* Install [hugo] on macOS:

```brew install hugo```
* For other OS please refer: [hugo-install]
```brew install hugo```
* For other OS please refer: [hugo-install]
* To verify your new install:

```hugo version```

* To build and start the Hugo server run:

```
>>> hugo server -D

Expand All @@ -55,19 +57,20 @@ Running in Fast Render Mode. For full rebuilds on change: hugo server --disableF
Web Server is available at http://localhost:1313/ (bind address 127.0.0.1)
Press Ctrl+C to stop
```
* Navigate to `http://localhost:1313/` to view the site locally.

* Navigate to `http://localhost:1313/` to view the site locally.

### To Add New Content
### To Add New Content

* To add new markdown file :
`hugo new general/Downloads.md`
* To add new markdown file :
`hugo new general/Downloads.md`

* Update `themes/hive/layouts/partials/menu.html` and `config.toml` to add navigation link to the markdown page as needed.

### Pushing to site
Commit and push the changes to the main branch. The site is automatically deployed from the site directory.

Commit and push the changes to the main branch. The site is automatically deployed from the site directory.

[hugo]: https://gohugo.io/getting-started/quick-start/
[hugo-install]: https://gohugo.io/installation/
[hugo-install]: https://gohugo.io/installation/

3 changes: 2 additions & 1 deletion archetypes/default.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---

title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
---
-----------

40 changes: 22 additions & 18 deletions content/Development/gettingStarted.md
Original file line number Diff line number Diff line change
@@ -1,48 +1,53 @@
---

title: "Getting Started"
date: 2023-01-10T12:35:11+05:30
draft: false
---
------------

<!---
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
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

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

## Quick start with Docker

---

Checkout the quickstart with Docker here: [DOCKER_QUICKSTART]

# 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
Expand All @@ -67,4 +72,3 @@ project and contribute your expertise.
[HIVE_TWITTER]: https://twitter.com/apachehive
[DOCKER_QUICKSTART]: /development/quickstart/


Loading