You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@parquet.apache.org by ga...@apache.org on 2021/09/28 14:46:13 UTC

[parquet-mr] branch master updated: PARQUET-2096: Upgrade Thrift to 0.15.0 (#934)

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

gabor pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/parquet-mr.git


The following commit(s) were added to refs/heads/master by this push:
     new 455ebe4  PARQUET-2096: Upgrade Thrift to 0.15.0 (#934)
455ebe4 is described below

commit 455ebe40090af65294c12aa3ef3b3be9f6d143ef
Author: Vinoo Ganesh <vi...@users.noreply.github.com>
AuthorDate: Tue Sep 28 10:46:04 2021 -0400

    PARQUET-2096: Upgrade Thrift to 0.15.0 (#934)
---
 README.md                | 10 +++++-----
 dev/ci-before_install.sh |  2 +-
 pom.xml                  |  2 +-
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/README.md b/README.md
index 58d2366..ab8bd7b 100644
--- a/README.md
+++ b/README.md
@@ -35,19 +35,19 @@ Parquet-MR uses Maven to build and depends on the thrift compiler (protoc is now
 To build and install the thrift compiler, run:
 
 ```
-wget -nv http://archive.apache.org/dist/thrift/0.14.2/thrift-0.14.2.tar.gz
-tar xzf thrift-0.14.2.tar.gz
-cd thrift-0.14.2
+wget -nv http://archive.apache.org/dist/thrift/0.15.0/thrift-0.15.0.tar.gz
+tar xzf thrift-0.15.0.tar.gz
+cd thrift-0.15.0
 chmod +x ./configure
 ./configure --disable-libs
 sudo make install
 ```
 
-If you're on OSX and use homebrew, you can instead install Thrift 0.14.2 with `brew` and ensure that it comes first in your `PATH`.
+If you're on OSX and use homebrew, you can instead install Thrift 0.15.0 with `brew` and ensure that it comes first in your `PATH`.
 
 ```
 brew install thrift
-export PATH="/usr/local/opt/thrift@0.14.2/bin:$PATH"
+export PATH="/usr/local/opt/thrift@0.15.0/bin:$PATH"
 ```
 
 ### Build Parquet with Maven
diff --git a/dev/ci-before_install.sh b/dev/ci-before_install.sh
index 2d3d525..f99062a 100755
--- a/dev/ci-before_install.sh
+++ b/dev/ci-before_install.sh
@@ -20,7 +20,7 @@
 # This script gets invoked by the CI system in a "before install" step
 ################################################################################
 
-export THRIFT_VERSION=0.14.2
+export THRIFT_VERSION=0.15.0
 
 set -e
 date
diff --git a/pom.xml b/pom.xml
index fa5fd22..8c3cf66 100644
--- a/pom.xml
+++ b/pom.xml
@@ -90,7 +90,7 @@
     <pig.version>0.16.0</pig.version>
     <pig.classifier>h2</pig.classifier>
     <thrift-maven-plugin.version>0.10.0</thrift-maven-plugin.version>
-    <thrift.version>0.14.2</thrift.version>
+    <thrift.version>0.15.0</thrift.version>
     <format.thrift.version>${thrift.version}</format.thrift.version>
     <fastutil.version>8.4.2</fastutil.version>
     <semver.api.version>0.9.33</semver.api.version>