Skip to content

Commit b3d793b

Browse files
authored
Merge pull request #50 from vinooganesh/vinooganesh/update-to-new-website
Update to new website
2 parents 032cbf7 + c8ee0d4 commit b3d793b

File tree

20 files changed

+169
-71
lines changed

20 files changed

+169
-71
lines changed

.asf.yaml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,26 @@
1+
github:
2+
description: "Apache Parquet"
3+
homepage: https://parquet.apache.org/
4+
labels:
5+
- parquet
6+
- apache
7+
- parquet-site
8+
9+
enabled_merge_buttons:
10+
merge: false
11+
squash: true
12+
rebase: false
13+
14+
features:
15+
wiki: false
16+
issues: true
17+
projects: false
18+
collaborators: # Note: the number of collaborators is limited to 10
19+
- vinooganesh
20+
121
staging:
222
profile: ~
323
whoami: asf-staging
424

525
publish:
6-
whoami: asf-site
26+
whoami: asf-site

.github/workflows/deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ on:
66

77
jobs:
88
Build_and_Deploy_Site:
9-
runs-on: ubuntu-20.04
9+
runs-on: ubuntu-22.04
1010
concurrency:
1111
group: ${{ github.workflow }}-${{ github.ref }}
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v4
1414
with:
1515
submodules: recursive
1616
fetch-depth: 0
@@ -21,12 +21,12 @@ jobs:
2121
hugo-version: 'latest'
2222
extended: true
2323

24-
- uses: actions/setup-node@v2
24+
- uses: actions/setup-node@v4
2525
with:
26-
node-version: '16'
26+
node-version: '20'
2727

2828
- name: Cache dependencies
29-
uses: actions/cache@v1
29+
uses: actions/cache@v4
3030
with:
3131
path: ~/.npm
3232
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

.gitmodules

Lines changed: 0 additions & 4 deletions
This file was deleted.

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ To create documentation for a new release of `parquet-mr` create a new <releaseN
3737
# Website development and deployment
3838

3939
## Staging
40-
4140
To make a change to the `staging` version of the website:
4241
1. Make a PR against the `staging` branch in the repository
4342
2. Once the PR is merged, the `Build and Deploy Parquet Site`

content/en/_index.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
title: Parquet
3+
---
4+
5+
{{< blocks/cover title="Apache Parquet" image_anchor="top" height="full" >}}
6+
<a class="btn btn-lg btn-primary me-3 mb-4" href="/docs/">
7+
Documentation <i class="fas fa-arrow-alt-circle-right ms-2"></i>
8+
</a>
9+
<a class="btn btn-lg btn-secondary me-3 mb-4" href="/blog/">
10+
Download <i class="fab fa-github ms-2 "></i>
11+
</a>
12+
<p class="lead mt-5">Apache Parquet is a columnar storage format available to any project in the Hadoop ecosystem, regardless of the choice of data processing framework, data model or programming language.</p>
13+
{{< blocks/link-down color="info" >}}
14+
{{< /blocks/cover >}}
15+
16+
17+
{{< blocks/section color="white" type="row">}}
18+
{{% blocks/feature icon="fab fa-jira" title="File an Issue" url="https://issues.apache.org/jira/projects/PARQUET/issues" %}}
19+
Or Search Open Issues
20+
{{% /blocks/feature %}}
21+
22+
{{% blocks/feature icon="fab fa-github" title="Contributions welcome!" url="https://github.com/apache/parquet-mr" %}}
23+
We do a [Pull Request](https://github.com/apache/parquet-mr/pulls) contributions workflow on **GitHub**. New users are always welcome!
24+
{{% /blocks/feature %}}
25+
26+
27+
{{% blocks/feature icon="fab fa-twitter" title="Follow us on Twitter!" url="https://twitter.com/ApacheParquet" %}}
28+
For announcement of latest features etc.
29+
{{% /blocks/feature %}}
30+
31+
{{% /blocks/section %}}

content/en/docs/Concepts/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ weight: 4
55
description: >
66
Glossary of relevant terminology.
77
---
8+
89
- *Block (HDFS block)*: This means a block in HDFS and the meaning is
910
unchanged for describing this file format. The file format is
1011
designed to work well on top of HDFS.

content/en/docs/File Format/Data Pages/compression.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ title: "Compression"
33
linkTitle: "Compression"
44
weight: 1
55
---
6-
76
## Overview
87

98
Parquet allows the data block inside dictionary pages and data pages to

content/en/docs/File Format/Data Pages/encryption.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ title: "Parquet Modular Encryption"
33
linkTitle: "Encryption"
44
weight: 1
55
---
6-
76
Parquet files containing sensitive information can be protected by the modular encryption
87
mechanism that encrypts and authenticates the file data and metadata - while allowing
98
for a regular Parquet functionality (columnar projection, predicate pushdown, encoding

content/en/docs/File Format/Types/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ linkTitle: "Types"
44
weight: 5
55
---
66

7+
78
The types supported by the file format are intended to be as minimal as possible,
89
with a focus on how the types effect on disk storage. For example, 16-bit ints
910
are not explicitly supported in the storage format since they are covered by

content/en/docs/File Format/Types/logicaltypes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ of primitive types to a minimum and reuses parquet's efficient encodings. For
1010
example, strings are stored as byte arrays (binary) with a UTF8 annotation.
1111
These annotations define how to further decode and interpret the data.
1212
Annotations are stored as `LogicalType` fields in the file metadata and are
13-
documented in LogicalTypes.md.
13+
documented in LogicalTypes.md.

0 commit comments

Comments
 (0)