Skip to content

Commit

Permalink
Update to Kudu client 1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinWeindel authored and kokosing committed Dec 20, 2018
1 parent 73862a6 commit 6c58f69
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 4 deletions.
2 changes: 1 addition & 1 deletion presto-docs/src/main/sphinx/connector/kudu.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Compatibility
Connector is compatible with all Apache Kudu versions starting from 1.0.

If the connector uses features that are not available on the target server, an error will be returned.
Apache Kudu 1.7.0 is currently used for testing.
Apache Kudu 1.8.0 is currently used for testing.


Configuration
Expand Down
2 changes: 1 addition & 1 deletion presto-kudu/conf/docker-compose-single-node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '2'
services:
kudu:
hostname: kudu
image: 'usuresearch/kudu-docker-slim:release-v1.7.0-2'
image: 'usuresearch/kudu-docker-slim:release-v1.8.0-1'
ports:
- '18050:8050'
- '18051:8051'
Expand Down
2 changes: 1 addition & 1 deletion presto-kudu/conf/docker-compose-three-nodes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '2'
services:
kudu1:
hostname: kudu1
image: 'usuresearch/kudu-docker-slim:release-v1.7.0-2'
image: 'usuresearch/kudu-docker-slim:release-v1.8.0-1'
ports:
- '18050:8050'
- '18051:8051'
Expand Down
21 changes: 20 additions & 1 deletion presto-kudu/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<properties>
<air.main.basedir>${project.parent.basedir}</air.main.basedir>
<kudu.version>1.7.0</kudu.version>
<kudu.version>1.8.0</kudu.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -179,4 +179,23 @@
</build>
</profile>
</profiles>

<build>
<plugins>
<!-- optional dependency of kudu-client needed only for javadoc build -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<additionalDependencies>
<additionalDependency>
<groupId>org.apache.yetus</groupId>
<artifactId>audience-annotations</artifactId>
<version>0.8.0</version>
</additionalDependency>
</additionalDependencies>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 6c58f69

Please sign in to comment.