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 d1190ab PARQUET-1691: Build fails due to missing hadoop-lzo (#698)
d1190ab is described below
commit d1190abee3ff1f1183757f7e400d7b9b4025d95b
Author: Gabor Szadovszky <[email protected]>
AuthorDate: Tue Nov 12 15:43:32 2019 +0100
PARQUET-1691: Build fails due to missing hadoop-lzo (#698)
See details about the root cause at
https://github.com/twitter/hadoop-lzo/issues/140
---
parquet-protobuf/pom.xml | 7 +++++++
parquet-thrift/pom.xml | 7 +++++++
2 files changed, 14 insertions(+)
diff --git a/parquet-protobuf/pom.xml b/parquet-protobuf/pom.xml
index a25a3b3..6870762 100644
--- a/parquet-protobuf/pom.xml
+++ b/parquet-protobuf/pom.xml
@@ -69,6 +69,13 @@
<groupId>com.twitter.elephantbird</groupId>
<artifactId>elephant-bird-core</artifactId>
<version>${elephant-bird.version}</version>
+ <exclusions>
+ <!-- hadoop-lzo is not required for parquet build/tests and there are
issues downloading it -->
+ <exclusion>
+ <groupId>com.hadoop.gplcompression</groupId>
+ <artifactId>hadoop-lzo</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
diff --git a/parquet-thrift/pom.xml b/parquet-thrift/pom.xml
index 7518c62..ba843ed 100644
--- a/parquet-thrift/pom.xml
+++ b/parquet-thrift/pom.xml
@@ -63,6 +63,13 @@
<groupId>com.twitter.elephantbird</groupId>
<artifactId>elephant-bird-core</artifactId>
<version>${elephant-bird.version}</version>
+ <exclusions>
+ <!-- hadoop-lzo is not required for parquet build/tests and there are
issues downloading it -->
+ <exclusion>
+ <groupId>com.hadoop.gplcompression</groupId>
+ <artifactId>hadoop-lzo</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>com.twitter.elephantbird</groupId>