Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 16 additions & 1 deletion docs/interpreter/elasticsearch.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,22 @@ limitations under the License.
<tr>
<td>elasticsearch.port</td>
<td>9300</td>
<td>Connection port <b>( Important: this is not the HTTP port, but the transport port )</b></td>
<td>Connection port <b>( Important: it depends on the client type, transport or http)</b></td>
</tr>
<tr>
<td>elasticsearch.client.type</td>
<td>transport</td>
<td>The type of client for Elasticsearch (transport or http)<b>( Important: the port depends on this value)</b></td>
</tr>
<tr>
<td>elasticsearch.basicauth.username</td>
<td></td>
<td>Username for a basic authentication (http)</b></td>
</tr>
<tr>
<td>elasticsearch.basicauth.password</td>
<td></td>
<td>Password for a basic authentication (http)</b></td>
</tr>
<tr>
<td>elasticsearch.result.size</td>
Expand Down
15 changes: 14 additions & 1 deletion elasticsearch/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,17 @@
<relativePath>..</relativePath>
</parent>

<groupId>org.apache.zeppelin</groupId>
<artifactId>zeppelin-elasticsearch</artifactId>
<packaging>jar</packaging>
<version>0.8.0-SNAPSHOT</version>
<name>Zeppelin: Elasticsearch interpreter</name>

<properties>
<elasticsearch.version>2.4.3</elasticsearch.version>
<httpasyncclient.version>4.0.2</httpasyncclient.version>
<guava.version>18.0</guava.version>
<json-flattener.version>0.1.6</json-flattener.version>
<unirest.version>1.4.9</unirest.version>
</properties>

<dependencies>
Expand All @@ -51,6 +52,12 @@
<artifactId>elasticsearch</artifactId>
<version>${elasticsearch.version}</version>
</dependency>

<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpasyncclient</artifactId>
<version>${httpasyncclient.version}</version>
</dependency>

<dependency>
<groupId>com.google.guava</groupId>
Expand All @@ -64,6 +71,12 @@
<version>${json-flattener.version}</version>
</dependency>

<dependency>
<groupId>com.mashape.unirest</groupId>
<artifactId>unirest-java</artifactId>
<version>${unirest.version}</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
Expand Down
Loading