Interface | Description |
---|---|
ElasticsearchConstants |
Class | Description |
---|---|
ElasticsearchComponent |
Represents the component that manages
ElasticsearchEndpoint . |
ElasticsearchConfiguration | |
ElasticsearchEndpoint |
The elasticsearch component is used for interfacing with ElasticSearch server using 5.x API.
|
ElasticsearchProducer |
Represents an Elasticsearch producer.
|
Enum | Description |
---|---|
ElasticsearchOperation |
The ElasticSearch server operations list which are implemented
INDEX - Index a document associated with a given index and type
UPDATE - Updates a document based on a script
BULK - Executes a bulk of index / delete operations
BULK_INDEX - Executes a bulk of index / delete operations
GET_BY_ID - Gets the document that was indexed from an index with a type and id
MULTIGET - Multiple get documents
DELETE - Deletes a document from the index based on the index, type and id
DELETE_INDEX - Deletes an index based on the index name
SEARCH - Search across one or more indices and one or more types with a query
MULTISEARCH - Performs multiple search requests
EXISTS - Checks the index exists or not (using search with size=0 and terminate_after=1 parameters)
|
Apache Camel