Skip to content

Commit

Permalink
Updating refereces from parquet-mr -> parquet-java (#60)
Browse files Browse the repository at this point in the history
* Updating referencs from parquet-mr -> parquet-java

* add note about parquet-java rename
  • Loading branch information
vinooganesh authored May 22, 2024
1 parent 5f690a3 commit da1d9a8
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ You can now preview the site locally on http://localhost:1313/

To create documentation for a new release of `parquet-format` create a new <releaseNumber>.md file under `content/en/blog/parquet-format`. Please see existing files in that directory as an example.

To create documentation for a new release of `parquet-mr` create a new <releaseNumber>.md file under `content/en/blog/parquet-mr`. Please see existing files in that directory as an example.
To create documentation for a new release of `parquet-java` create a new <releaseNumber>.md file under `content/en/blog/parquet-java`. Please see existing files in that directory as an example.

# Website development and deployment

Expand Down
4 changes: 2 additions & 2 deletions content/en/_index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
{{% /blocks/feature %}}


{{% blocks/feature icon="fab fa-github" title="Contributions welcome!" url="https://github.com/apache/parquet-mr" %}}
We do a [Pull Request](https://github.com/apache/parquet-mr/pulls) contributions workflow on **GitHub**. New users are always welcome!
{{% blocks/feature icon="fab fa-github" title="Contributions welcome!" url="https://github.com/apache/parquet-java" %}}
We do a [Pull Request](https://github.com/apache/parquet-java/pulls) contributions workflow on **GitHub**. New users are always welcome!
{{% /blocks/feature %}}


Expand Down
4 changes: 2 additions & 2 deletions content/en/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ It provides high performance compression and encoding schemes to handle complex
Or Search Open Issues
{{% /blocks/feature %}}

{{% blocks/feature icon="fab fa-github" title="Contributions welcome!" url="https://github.com/apache/parquet-mr" %}}
We do a [Pull Request](https://github.com/apache/parquet-mr/pulls) contributions workflow on **GitHub**. New users are always welcome!
{{% blocks/feature icon="fab fa-github" title="Contributions welcome!" url="https://github.com/apache/parquet-java" %}}
We do a [Pull Request](https://github.com/apache/parquet-java/pulls) contributions workflow on **GitHub**. New users are always welcome!
{{% /blocks/feature %}}


Expand Down
14 changes: 7 additions & 7 deletions content/en/docs/Overview/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description: >
Apache Parquet is an open source, column-oriented data file format designed for efficient data storage and retrieval.
It provides high performance compression and encoding schemes to handle complex data in bulk and is supported in many programming language and analytics tools.

This documentation contains information about both the [parquet-mr](https://github.com/apache/parquet-mr) and [parquet-format](https://github.com/apache/parquet-format) repositories.
This documentation contains information about both the [parquet-java](https://github.com/apache/parquet-java) and [parquet-format](https://github.com/apache/parquet-format) repositories.

### parquet-format

Expand All @@ -18,14 +18,14 @@ The parquet-format repository hosts the official specification of the Apache Par
As a repository focused on specification, the parquet-format repository does not contain source code.


### parquet-mr
### parquet-java

The parquet-mr repository is part of the Apache Parquet project and specifically focuses on providing Java tools for handling the Parquet file format within the Hadoop ecosystem. The "mr" stands for MapReduce. Essentially, this repository includes all the necessary Java libraries and modules that allow developers to read and write Apache Parquet files.
The parquet-java (formerly named 'parquet-mr') repository is part of the Apache Parquet project and specifically focuses on providing Java tools for handling the Parquet file format. Essentially, this repository includes all the necessary Java libraries and modules that allow developers to read and write Apache Parquet files.

The parquet-mr repository contains an implementation of the Apache Parquet format. There are a number of other Parquet format implementations, which are listed below.
The parquet-java repository contains an implementation of the Apache Parquet format. There are a number of other Parquet format implementations, which are listed below.

Included in parquet-mr:
* Java Implementation: It contains the core Java implementation of the Apache Parquet format, making it possible to use Parquet files in Java applications, particularly those based on Hadoop.
Included in parquet-java:
* Java Implementation: It contains the core Java implementation of the Apache Parquet format, making it possible to use Parquet files in Java applications.

* Utilities and APIs: It provides various utilities and APIs for working with Apache Parquet files, including tools for data import/export, schema management, and data conversion.

Expand All @@ -36,7 +36,7 @@ The Parquet ecosystem is rich and varied, encompassing a wide array of tools, li

Here is a non-exhaustive list of Parquet implementations:

* [Parquet-mr](https://github.com/apache/parquet-mr)
* [Parquet-java](https://github.com/apache/parquet-java)
* [Parquet C++, a subproject of Arrow C++](https://github.com/apache/arrow/tree/main/cpp/src/parquet) ([documentation](https://arrow.apache.org/docs/cpp/parquet.html))
* [Parquet Go, a subproject for Arrow Go](https://github.com/apache/arrow/tree/main/go/parquet) ([documentation](https://github.com/apache/arrow/tree/main/go))
* [Parquet Rust](https://github.com/apache/arrow-rs/blob/master/parquet/README.md)
Expand Down
4 changes: 2 additions & 2 deletions hugo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ enableGitInfo = true
[[menu.main]]
name = "GitHub"
weight = 50
url = "https://github.com/apache/parquet-mr/"
url = "https://github.com/apache/parquet-java/"
pre = "<i class='fab fa-github'></i>"

# Configure how URLs look like per section.
Expand Down Expand Up @@ -163,7 +163,7 @@ enable = false
# Developer relevant links. These will show up on right side of footer and in the community page if you have one.
[[params.links.developer]]
name = "GitHub"
url = "https://github.com/apache/parquet-mr"
url = "https://github.com/apache/parquet-java"
icon = "fab fa-github"
desc = "Development takes place here!"
[[params.links.developer]]
Expand Down
4 changes: 2 additions & 2 deletions static/doap_Parquet.rdf
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
</release>
<repository>
<GitRepository>
<location rdf:resource="https://git.apache.org/repos/asf?p=parquet-mr.git"/>
<browse rdf:resource="https://github.com/apache/parquet-mr"/>
<location rdf:resource="https://git.apache.org/repos/asf?p=parquet-java.git"/>
<browse rdf:resource="https://github.com/apache/parquet-java"/>
</GitRepository>
</repository>
</Project>
Expand Down

0 comments on commit da1d9a8

Please sign in to comment.