Skip to content

Commit

Permalink
Add Kafka connector
Browse files Browse the repository at this point in the history
  • Loading branch information
Henning Schmiedehausen authored and electrum committed Sep 16, 2014
1 parent 30b2dcf commit a478f98
Show file tree
Hide file tree
Showing 83 changed files with 9,265 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
language: java
env:
global:
- MAVEN_OPTS="-XX:MaxPermSize=512m -Xmx2g"
45 changes: 45 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@

<modules>
<module>presto-spi</module>
<module>presto-kafka</module>
<module>presto-cassandra</module>
<module>presto-hive</module>
<module>presto-hive-hadoop1</module>
Expand Down Expand Up @@ -519,6 +520,50 @@
<artifactId>testing-postgresql-server</artifactId>
<version>0.1</version>
</dependency>

<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka_2.10</artifactId>
<version>0.8.1.1</version>
<exclusions>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
<version>3.3.6</version>
<exclusions>
<exclusion>
<artifactId>junit</artifactId>
<groupId>junit</groupId>
</exclusion>
<exclusion>
<artifactId>log4j</artifactId>
<groupId>log4j</groupId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>com.101tec</groupId>
<artifactId>zkclient</artifactId>
<version>0.4</version>
<exclusions>
<exclusion>
<artifactId>log4j</artifactId>
<groupId>log4j</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down
5 changes: 5 additions & 0 deletions presto-docs/src/main/sphinx/connector.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,17 @@
Connectors
**********

This chapter describes the connectors available in Presto to access data
from different data sources.

.. toctree::
:maxdepth: 1

connector/cassandra
connector/hive
connector/jmx
connector/kafka
connector/kafka-tutorial
connector/mysql
connector/postgresql
connector/sys
Expand Down
613 changes: 613 additions & 0 deletions presto-docs/src/main/sphinx/connector/kafka-tutorial.rst

Large diffs are not rendered by default.

Loading

0 comments on commit a478f98

Please sign in to comment.