Exclude hadoop-lzo from thrift-extensions build (#7151)

This commit is contained in:
Jonathan Wei 2019-02-27 19:57:53 -08:00 committed by Gian Merlino
parent 3d247498ef
commit 0b4f771062
2 changed files with 8 additions and 0 deletions

View File

@ -30,6 +30,10 @@ This extension enables Druid to ingest thrift compact data online (`ByteBuffer`)
You may want to use another version of thrift, change the dependency in pom and compile yourself.
## LZO Support
If you plan to read LZO-compressed Thrift files, you will need to download version 0.4.19 of the [hadoop-lzo JAR](https://mvnrepository.com/artifact/com.hadoop.gplcompression/hadoop-lzo/0.4.19) and place it in your `extensions/druid-thrift-extensions` directory.
## Thrift Parser

View File

@ -80,6 +80,10 @@
<groupId>org.apache.thrift</groupId>
<artifactId>libthrift</artifactId>
</exclusion>
<exclusion>
<artifactId>hadoop-lzo</artifactId>
<groupId>com.hadoop.gplcompression</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>