2013-08-28 19:24:34 -04:00
|
|
|
[[java-api]]
|
|
|
|
= Java API
|
2015-07-02 01:53:59 -04:00
|
|
|
:ref: http://www.elastic.co/guide/en/elasticsearch/reference/master
|
2013-08-28 19:24:34 -04:00
|
|
|
|
|
|
|
[preface]
|
|
|
|
== Preface
|
|
|
|
This section describes the Java API that elasticsearch provides. All
|
|
|
|
elasticsearch operations are executed using a
|
|
|
|
<<client,Client>> object. All
|
|
|
|
operations are completely asynchronous in nature (either accepts a
|
2014-05-12 22:07:46 -04:00
|
|
|
listener, or returns a future).
|
2013-08-28 19:24:34 -04:00
|
|
|
|
|
|
|
Additionally, operations on a client may be accumulated and executed in
|
2015-06-24 17:27:19 -04:00
|
|
|
<<java-docs-bulk,Bulk>>.
|
2013-08-28 19:24:34 -04:00
|
|
|
|
|
|
|
Note, all the APIs are exposed through the
|
|
|
|
Java API (actually, the Java API is used internally to execute them).
|
|
|
|
|
2013-09-03 10:15:07 -04:00
|
|
|
|
2013-08-28 19:24:34 -04:00
|
|
|
== Maven Repository
|
|
|
|
|
|
|
|
Elasticsearch is hosted on
|
|
|
|
http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22elasticsearch%22[Maven
|
|
|
|
Central].
|
|
|
|
|
|
|
|
For example, you can define the latest version in your `pom.xml` file:
|
|
|
|
|
|
|
|
[source,xml]
|
|
|
|
--------------------------------------------------
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.elasticsearch</groupId>
|
|
|
|
<artifactId>elasticsearch</artifactId>
|
|
|
|
<version>${es.version}</version>
|
|
|
|
</dependency>
|
|
|
|
--------------------------------------------------
|
|
|
|
|
2014-12-03 11:02:02 -05:00
|
|
|
== Deploying in JBoss EAP6 module
|
|
|
|
|
|
|
|
Elasticsearch and Lucene classes need to be in the same JBoss module.
|
|
|
|
|
|
|
|
You should define a `module.xml` file like this:
|
|
|
|
|
|
|
|
[source,xml]
|
|
|
|
--------------------------------------------------
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<module xmlns="urn:jboss:module:1.1" name="org.elasticsearch">
|
|
|
|
<resources>
|
|
|
|
<!-- Elasticsearch -->
|
2015-03-18 11:52:12 -04:00
|
|
|
<resource-root path="elasticsearch-2.0.0.jar"/>
|
2014-12-03 11:02:02 -05:00
|
|
|
<!-- Lucene -->
|
2015-03-18 11:52:12 -04:00
|
|
|
<resource-root path="lucene-core-5.1.0.jar"/>
|
|
|
|
<resource-root path="lucene-analyzers-common-5.1.0.jar"/>
|
|
|
|
<resource-root path="lucene-queries-5.1.0.jar"/>
|
|
|
|
<resource-root path="lucene-memory-5.1.0.jar"/>
|
|
|
|
<resource-root path="lucene-highlighter-5.1.0.jar"/>
|
|
|
|
<resource-root path="lucene-queryparser-5.1.0.jar"/>
|
|
|
|
<resource-root path="lucene-sandbox-5.1.0.jar"/>
|
|
|
|
<resource-root path="lucene-suggest-5.1.0.jar"/>
|
|
|
|
<resource-root path="lucene-misc-5.1.0.jar"/>
|
|
|
|
<resource-root path="lucene-join-5.1.0.jar"/>
|
|
|
|
<resource-root path="lucene-grouping-5.1.0.jar"/>
|
|
|
|
<resource-root path="lucene-spatial-5.1.0.jar"/>
|
|
|
|
<resource-root path="lucene-expressions-5.1.0.jar"/>
|
2014-12-03 11:02:02 -05:00
|
|
|
<!-- Insert other resources here -->
|
|
|
|
</resources>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<module name="sun.jdk" export="true" >
|
|
|
|
<imports>
|
|
|
|
<include path="sun/misc/Unsafe" />
|
|
|
|
</imports>
|
|
|
|
</module>
|
|
|
|
<module name="org.apache.log4j"/>
|
|
|
|
<module name="org.apache.commons.logging"/>
|
|
|
|
<module name="javax.api"/>
|
|
|
|
</dependencies>
|
|
|
|
</module>
|
|
|
|
--------------------------------------------------
|
|
|
|
|
2013-08-28 19:24:34 -04:00
|
|
|
|
|
|
|
include::client.asciidoc[]
|
|
|
|
|
2015-06-24 17:27:19 -04:00
|
|
|
include::docs.asciidoc[]
|
2013-08-28 19:24:34 -04:00
|
|
|
|
|
|
|
include::search.asciidoc[]
|
|
|
|
|
|
|
|
include::count.asciidoc[]
|
|
|
|
|
2014-05-15 06:36:05 -04:00
|
|
|
include::aggs.asciidoc[]
|
|
|
|
|
2013-08-28 19:24:34 -04:00
|
|
|
include::percolate.asciidoc[]
|
|
|
|
|
2015-06-24 17:27:19 -04:00
|
|
|
include::query-dsl.asciidoc[]
|
2013-08-28 19:24:34 -04:00
|
|
|
|
2015-06-24 17:27:19 -04:00
|
|
|
include::indexed-scripts.asciidoc[]
|