Repository: spark Updated Branches: refs/heads/branch-1.0 2a878dab6 -> a61b71cad
[SQL] Upgrade parquet library. I think we are hitting this issue in some perf tests: https://github.com/Parquet/parquet-mr/commit/6aed5288fd4a1398063a5a219b2ae4a9f71b02cf Credit to @aarondav ! Author: Michael Armbrust <[email protected]> Closes #684 from marmbrus/upgradeParquet and squashes the following commits: e10a619 [Michael Armbrust] Upgrade parquet library. (cherry picked from commit 4d6055329846f5e09472e5f844127a5ab5880e15) Signed-off-by: Patrick Wendell <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/a61b71ca Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/a61b71ca Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/a61b71ca Branch: refs/heads/branch-1.0 Commit: a61b71cad03b944bcb3821699ea1230fbfc2a1e0 Parents: 2a878da Author: Michael Armbrust <[email protected]> Authored: Sat May 10 11:48:01 2014 -0700 Committer: Patrick Wendell <[email protected]> Committed: Sat May 10 11:48:14 2014 -0700 ---------------------------------------------------------------------- pom.xml | 2 +- project/SparkBuild.scala | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/a61b71ca/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 513a0d0..17817a9 100644 --- a/pom.xml +++ b/pom.xml @@ -123,7 +123,7 @@ <yarn.version>${hadoop.version}</yarn.version> <hbase.version>0.94.6</hbase.version> <hive.version>0.12.0</hive.version> - <parquet.version>1.3.2</parquet.version> + <parquet.version>1.4.3</parquet.version> <jblas.version>1.2.3</jblas.version> <jetty.version>8.1.14.v20131031</jetty.version> <chill.version>0.3.6</chill.version> http://git-wip-us.apache.org/repos/asf/spark/blob/a61b71ca/project/SparkBuild.scala ---------------------------------------------------------------------- diff --git a/project/SparkBuild.scala b/project/SparkBuild.scala index d0b5409..eba9e97 100644 --- a/project/SparkBuild.scala +++ b/project/SparkBuild.scala @@ -300,7 +300,7 @@ object SparkBuild extends Build { val jets3tVersion = if ("^2\\.[3-9]+".r.findFirstIn(hadoopVersion).isDefined) "0.9.0" else "0.7.1" val jettyVersion = "8.1.14.v20131031" val hiveVersion = "0.12.0" - val parquetVersion = "1.3.2" + val parquetVersion = "1.4.3" val slf4jVersion = "1.7.5" val excludeNetty = ExclusionRule(organization = "org.jboss.netty")
