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

shangxinli 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 ef35a5c  PARQUET-2128: Upgrade Thrift to 0.16.0 (#948)
ef35a5c is described below

commit ef35a5cf6aece9978034e7f704bf460d3cd68b10
Author: Vinoo Ganesh <[email protected]>
AuthorDate: Tue Feb 22 12:06:43 2022 -0500

    PARQUET-2128: Upgrade Thrift to 0.16.0 (#948)
---
 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 ab8bd7b..d897125 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.15.0/thrift-0.15.0.tar.gz
-tar xzf thrift-0.15.0.tar.gz
-cd thrift-0.15.0
+wget -nv http://archive.apache.org/dist/thrift/0.16.0/thrift-0.16.0.tar.gz
+tar xzf thrift-0.16.0.tar.gz
+cd thrift-0.16.0
 chmod +x ./configure
 ./configure --disable-libs
 sudo make install
 ```
 
-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`.
+If you're on OSX and use homebrew, you can instead install Thrift 0.16.0 with 
`brew` and ensure that it comes first in your `PATH`.
 
 ```
 brew install thrift
-export PATH="/usr/local/opt/[email protected]/bin:$PATH"
+export PATH="/usr/local/opt/[email protected]/bin:$PATH"
 ```
 
 ### Build Parquet with Maven
diff --git a/dev/ci-before_install.sh b/dev/ci-before_install.sh
index f99062a..82b7a06 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.15.0
+export THRIFT_VERSION=0.16.0
 
 set -e
 date
diff --git a/pom.xml b/pom.xml
index 8c3cf66..d2be611 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.15.0</thrift.version>
+    <thrift.version>0.16.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>

Reply via email to