public class ElasticSearchIndexingImpl extends Object implements ElasticSearchIndexing
| Constructor and Description |
|---|
ElasticSearchIndexingImpl(ElasticSearchAdminImpl esa) |
ElasticSearchIndexingImpl(ElasticSearchAdminImpl esa,
JsonESDocumentWriter jsonESDocumentWriter) |
| Modifier and Type | Method and Description |
|---|---|
void |
indexNonRecursive(IndexingCommand cmd)
Process the
IndexingCommand. |
void |
indexNonRecursive(List<IndexingCommand> cmds)
Same as
ElasticSearchIndexing.indexNonRecursive(org.nuxeo.elasticsearch.commands.IndexingCommand) but
process the list command using a bulk request. |
protected void |
refreshIfNeeded(List<IndexingCommand> cmds) |
void |
runIndexingWorker(List<IndexingCommand> cmds)
Run a worker to process the
IndexingCommand. |
void |
runReindexingWorker(String repositoryName,
String nxql)
Reindex documents matching the NXQL query, This is done in an asynchronous job.
|
public ElasticSearchIndexingImpl(ElasticSearchAdminImpl esa)
public ElasticSearchIndexingImpl(ElasticSearchAdminImpl esa, JsonESDocumentWriter jsonESDocumentWriter)
public void runIndexingWorker(List<IndexingCommand> cmds)
ElasticSearchIndexingIndexingCommand.
Asynchronous command schedules an indexing job and return.
Synchronous command execute an indexing job using a new Tx then refresh the index so the document is searchable immediately. if the command is also recursive the children are processed asynchronously.
If there is more than one cmd the elasticsearch request is done in bulk mode.
runIndexingWorker in interface ElasticSearchIndexingpublic void runReindexingWorker(String repositoryName, String nxql)
ElasticSearchIndexingrunReindexingWorker in interface ElasticSearchIndexingpublic void indexNonRecursive(List<IndexingCommand> cmds)
ElasticSearchIndexingElasticSearchIndexing.indexNonRecursive(org.nuxeo.elasticsearch.commands.IndexingCommand) but
process the list command using a bulk request.indexNonRecursive in interface ElasticSearchIndexingprotected void refreshIfNeeded(List<IndexingCommand> cmds)
public void indexNonRecursive(IndexingCommand cmd)
ElasticSearchIndexingIndexingCommand.
Send indexing command to Elasticsearch, if the command is synchronous the index is refreshed so the document is searchable immediately. Recursive indexing is not taken in account except for deletion. This is not a transactional operation, a rollback will not discard the executed commands.
indexNonRecursive in interface ElasticSearchIndexingCopyright © 2015 Nuxeo SA. All rights reserved.