You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@parquet.apache.org by fo...@apache.org on 2020/10/22 16:36:42 UTC

[parquet-mr] branch master updated: [PARQUET-1930] Bump Apache Thrift to 0.13.0 (#834)

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

fokko 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 a2c6ff0  [PARQUET-1930] Bump Apache Thrift to 0.13.0 (#834)
a2c6ff0 is described below

commit a2c6ff0775fe9862fad197faa5aee7e80af52827
Author: Fokko Driesprong <fo...@apache.org>
AuthorDate: Thu Oct 22 18:36:35 2020 +0200

    [PARQUET-1930] Bump Apache Thrift to 0.13.0 (#834)
---
 README.md                    | 12 ++++++------
 dev/travis-before_install.sh |  4 ++--
 pom.xml                      |  4 ++--
 3 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/README.md b/README.md
index eacb7ff..365d263 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.12.0/thrift-0.12.0.tar.gz
-tar xzf thrift-0.12.0.tar.gz
-cd thrift-0.12.0
+wget -nv http://archive.apache.org/dist/thrift/0.13.0/thrift-0.13.0.tar.gz
+tar xzf thrift-0.13.0.tar.gz
+cd thrift-0.13.0
 chmod +x ./configure
 ./configure --disable-libs
 sudo make install
 ```
 
-If you're on OSX and use homebrew, you can instead install Thrift 0.12.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.13.0 with `brew` and ensure that it comes first in your `PATH`.
 
 ```
-brew install thrift@0.12
-export PATH="/usr/local/opt/thrift@0.12.0/bin:$PATH"
+brew install thrift@0.13
+export PATH="/usr/local/opt/thrift@0.13.0/bin:$PATH"
 ```
 
 ### Build Parquet with Maven
diff --git a/dev/travis-before_install.sh b/dev/travis-before_install.sh
index 14b8ca2..b4efa38 100755
--- a/dev/travis-before_install.sh
+++ b/dev/travis-before_install.sh
@@ -20,7 +20,7 @@
 # This script gets invoked by .travis.yml in the before_install step
 ################################################################################
 
-export THIFT_VERSION=0.12.0
+export THIFT_VERSION=0.13.0
 
 set -e
 date
@@ -30,7 +30,7 @@ sudo apt-get install -qq --no-install-recommends build-essential pv autoconf aut
    libevent-dev automake libtool flex bison pkg-config g++ libssl-dev xmlstarlet
 date
 pwd
-wget -qO- https://archive.apache.org/dist/thrift/0.12.0/thrift-0.12.0.tar.gz | tar zxf -
+wget -qO- https://archive.apache.org/dist/thrift/0.13.0/thrift-0.13.0.tar.gz | tar zxf -
 cd thrift-${THIFT_VERSION}
 chmod +x ./configure
 ./configure --disable-libs
diff --git a/pom.xml b/pom.xml
index 6bd1df5..6b1f3fa 100644
--- a/pom.xml
+++ b/pom.xml
@@ -94,8 +94,8 @@
     <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.12.0</thrift.version>
-    <format.thrift.version>0.12.0</format.thrift.version>
+    <thrift.version>0.13.0</thrift.version>
+    <format.thrift.version>0.13.0</format.thrift.version>
     <fastutil.version>8.2.3</fastutil.version>
     <semver.api.version>0.9.33</semver.api.version>
     <slf4j.version>1.7.22</slf4j.version>