Timeline Service with Incremental View Syncing support
This commit is contained in:
committed by
vinoth chandar
parent
446f99aa0f
commit
64fec64097
28
pom.xml
28
pom.xml
@@ -30,12 +30,13 @@
|
||||
|
||||
<modules>
|
||||
<module>hoodie-common</module>
|
||||
<module>hoodie-client</module>
|
||||
<module>hoodie-cli</module>
|
||||
<module>hoodie-client</module>
|
||||
<module>hoodie-hadoop-mr</module>
|
||||
<module>hoodie-hive</module>
|
||||
<module>hoodie-utilities</module>
|
||||
<module>hoodie-spark</module>
|
||||
<module>hoodie-timeline-service</module>
|
||||
<module>hoodie-utilities</module>
|
||||
<module>packaging/hoodie-hadoop-mr-bundle</module>
|
||||
<module>packaging/hoodie-hive-bundle</module>
|
||||
<module>packaging/hoodie-spark-bundle</module>
|
||||
@@ -132,7 +133,7 @@
|
||||
<hadoop.version>2.7.3</hadoop.version>
|
||||
<hive.groupid>org.apache.hive</hive.groupid>
|
||||
<hive.version>1.2.1</hive.version>
|
||||
<metrics.version>3.1.1</metrics.version>
|
||||
<metrics.version>4.0.2</metrics.version>
|
||||
<spark.version>2.1.0</spark.version>
|
||||
<avro.version>1.7.7</avro.version>
|
||||
<scala.version>2.11.8</scala.version>
|
||||
@@ -479,6 +480,16 @@
|
||||
<version>${hadoop.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.rocksdb</groupId>
|
||||
<artifactId>rocksdbjni</artifactId>
|
||||
<version>5.17.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-codec</groupId>
|
||||
<artifactId>commons-codec</artifactId>
|
||||
<version>1.4</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-logging</groupId>
|
||||
<artifactId>commons-logging</artifactId>
|
||||
@@ -489,7 +500,6 @@
|
||||
<artifactId>commons-io</artifactId>
|
||||
<version>2.6</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Storage formats -->
|
||||
<!-- Spark parquet version 1.7.0 does not play well with the hive 1.1.0 installed in cluster (which requires twitter parquet 1.5.0) -->
|
||||
<dependency>
|
||||
@@ -594,6 +604,11 @@
|
||||
<artifactId>commons-pool</artifactId>
|
||||
<version>1.4</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.httpcomponents</groupId>
|
||||
<artifactId>fluent-hc</artifactId>
|
||||
<version>4.3.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.httpcomponents</groupId>
|
||||
<artifactId>httpcore</artifactId>
|
||||
@@ -698,6 +713,11 @@
|
||||
<version>${hive.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.rocksdb</groupId>
|
||||
<artifactId>rocksdbjni</artifactId>
|
||||
<version>5.5.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.hadoop</groupId>
|
||||
<artifactId>hadoop-hdfs</artifactId>
|
||||
|
||||
Reference in New Issue
Block a user