Uses of Class
org.exoplatform.commons.search.index.impl.ElasticIndexingServiceConnector
Packages that use ElasticIndexingServiceConnector
Package
Description
-
Uses of ElasticIndexingServiceConnector in org.exoplatform.commons.search.es.client
Methods in org.exoplatform.commons.search.es.client with parameters of type ElasticIndexingServiceConnectorModifier and TypeMethodDescriptionElasticContentRequestBuilder.getCreateDocumentRequestContent(ElasticIndexingServiceConnector connector, String id) Get an ES create document content to insert in a bulk request For instance: { "create" : { "_index" : "blog", "_type" : "post", "_id" : "blog_post_1" } } { "field1" : "value3" }ElasticContentRequestBuilder.getCreateIndexRequestContent(ElasticIndexingServiceConnector connector) Get an ES create Index request contentElasticContentRequestBuilder.getCreatePipelineDocumentRequestContent(ElasticIndexingServiceConnector connector, String id) Get an ES create/update document content to put into a pipeline The content of the request will update the full document (and not partially) For instance: { "field1" : "value3" }ElasticContentRequestBuilder.getDeleteDocumentRequestContent(ElasticIndexingServiceConnector connector, String id) Get an ES delete document content to insert in a bulk request For instance: { "delete" : { "_index" : "blog", "_type" : "post", "_id" : "blog_post_1" } }ElasticContentRequestBuilder.getUpdateDocumentRequestContent(ElasticIndexingServiceConnector connector, String id) Get an ES update document content to insert in a bulk request We use the create api to reindex the full document (and not partially) For instance: { "create" : { "_index" : "blog", "_type" : "post", "_id" : "blog_post_1" } } { "field1" : "value3" } -
Uses of ElasticIndexingServiceConnector in org.exoplatform.commons.search.index.impl
Constructors in org.exoplatform.commons.search.index.impl with parameters of type ElasticIndexingServiceConnectorModifierConstructorDescriptionReindexESType(org.exoplatform.container.ExoContainer exoContainer, ElasticIndexingServiceConnector connector)