This is an automated email from the ASF dual-hosted git repository.
blue pushed a commit to branch parquet-1.10.x
in repository https://gitbox.apache.org/repos/asf/parquet-mr.git
The following commit(s) were added to refs/heads/parquet-1.10.x by this push:
new 3717abf PARQUET-1520: 1.10.x branch: Update README to use correct
build and version info (#610)
3717abf is described below
commit 3717abfe2cd3af2c71ecc5114fbb10ddd3961e87
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Thu Jan 31 09:00:41 2019 -0800
PARQUET-1520: 1.10.x branch: Update README to use correct build and version
info (#610)
---
README.md | 24 ++++++++++++------------
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/README.md b/README.md
index f084f50..e65e1a9 100644
--- a/README.md
+++ b/README.md
@@ -35,9 +35,10 @@ Parquet-MR uses Maven to build and depends on both the
thrift and protoc compile
To build and install the protobuf compiler, run:
```
-wget
https://github.com/google/protobuf/releases/download/v2.5.0/protobuf-2.5.0.tar.gz
-tar xzf protobuf-2.5.0.tar.gz
-cd protobuf-2.5.0
+wget https://github.com/google/protobuf/archive/v3.5.1.tar.gz -O
protobuf-3.5.1.tar.gz
+tar xzf protobuf-3.5.1.tar.gz
+cd protobuf-3.5.1
+./autogen.sh
./configure
make
sudo make install
@@ -49,11 +50,11 @@ sudo ldconfig
To build and install the thrift compiler, run:
```
-wget -nv http://archive.apache.org/dist/thrift/0.7.0/thrift-0.7.0.tar.gz
-tar xzf thrift-0.7.0.tar.gz
-cd thrift-0.7.0
+wget -nv http://archive.apache.org/dist/thrift/0.9.3/thrift-0.9.3.tar.gz
+tar xzf thrift-0.9.3.tar.gz
+cd thrift-0.9.3
chmod +x ./configure
-./configure --disable-gen-erl --disable-gen-hs --without-ruby
--without-haskell --without-erlang
+./configure --disable-gen-erl --disable-gen-hs --without-ruby
--without-haskell --without-erlang --without-php --without-nodejs
sudo make install
```
@@ -148,29 +149,28 @@ The build runs in [Travis
CI](http://travis-ci.org/apache/parquet-mr):
[](http://travis-ci.org/apache/parquet-mr)
## Add Parquet as a dependency in Maven
-The current release is version `1.8.1`
```xml
<dependencies>
<dependency>
<groupId>org.apache.parquet</groupId>
<artifactId>parquet-common</artifactId>
- <version>1.8.1</version>
+ <version>1.10.1</version>
</dependency>
<dependency>
<groupId>org.apache.parquet</groupId>
<artifactId>parquet-encoding</artifactId>
- <version>1.8.1</version>
+ <version>1.10.1</version>
</dependency>
<dependency>
<groupId>org.apache.parquet</groupId>
<artifactId>parquet-column</artifactId>
- <version>1.8.1</version>
+ <version>1.10.1</version>
</dependency>
<dependency>
<groupId>org.apache.parquet</groupId>
<artifactId>parquet-hadoop</artifactId>
- <version>1.8.1</version>
+ <version>1.10.1</version>
</dependency>
</dependencies>
```