2013-08-28 19:24:34 -04:00
|
|
|
[[java-api]]
|
|
|
|
= Java API
|
2013-09-13 05:23:37 -04:00
|
|
|
:ref: http://www.elasticsearch.org/guide/en/elasticsearch/reference/current
|
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
|
|
|
|
<<bulk,Bulk>>.
|
|
|
|
|
|
|
|
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>
|
|
|
|
--------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
include::client.asciidoc[]
|
|
|
|
|
|
|
|
include::index_.asciidoc[]
|
|
|
|
|
|
|
|
include::get.asciidoc[]
|
|
|
|
|
|
|
|
include::delete.asciidoc[]
|
|
|
|
|
|
|
|
include::bulk.asciidoc[]
|
|
|
|
|
|
|
|
include::search.asciidoc[]
|
|
|
|
|
|
|
|
include::count.asciidoc[]
|
|
|
|
|
|
|
|
include::delete-by-query.asciidoc[]
|
|
|
|
|
|
|
|
include::facets.asciidoc[]
|
|
|
|
|
2014-05-15 06:36:05 -04:00
|
|
|
include::aggs.asciidoc[]
|
|
|
|
|
2013-08-28 19:24:34 -04:00
|
|
|
include::percolate.asciidoc[]
|
|
|
|
|
|
|
|
include::query-dsl-queries.asciidoc[]
|
|
|
|
|
|
|
|
include::query-dsl-filters.asciidoc[]
|
|
|
|
|