Uses of Class
org.exoplatform.commons.search.index.impl.ElasticIndexingServiceConnector
-
Packages that use ElasticIndexingServiceConnector Package Description org.exoplatform.commons.search.es.client -
-
Uses of ElasticIndexingServiceConnector in org.exoplatform.commons.search.es.client
Methods in org.exoplatform.commons.search.es.client with parameters of type ElasticIndexingServiceConnector Modifier and Type Method Description StringElasticContentRequestBuilder. 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" }StringElasticContentRequestBuilder. getCreateIndexRequestContent(ElasticIndexingServiceConnector connector)Get an ES create Index request contentStringElasticContentRequestBuilder. 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" }StringElasticContentRequestBuilder. 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" } }StringElasticContentRequestBuilder. 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" }
-