Package org.elasticsearch.client
Interface IndicesAdminClient
- All Superinterfaces:
ElasticsearchClient
public interface IndicesAdminClient extends ElasticsearchClient
Administrative actions/operations against indices.
- See Also:
AdminClient.indices()
-
Method Summary
Modifier and Type Method Description voidaddBlock(AddIndexBlockRequest request, ActionListener<AddIndexBlockResponse> listener)Adds a block to an indexActionFuture<AcknowledgedResponse>aliases(IndicesAliasesRequest request)Allows to add/remove aliases from indices.voidaliases(IndicesAliasesRequest request, ActionListener<AcknowledgedResponse> listener)Allows to add/remove aliases from indices.ActionFuture<AliasesExistResponse>aliasesExist(GetAliasesRequest request)Check to existence of index aliases.voidaliasesExist(GetAliasesRequest request, ActionListener<AliasesExistResponse> listener)Check the existence of specified index aliases.ActionFuture<AnalyzeAction.Response>analyze(AnalyzeAction.Request request)Analyze text under the provided index.voidanalyze(AnalyzeAction.Request request, ActionListener<AnalyzeAction.Response> listener)Analyze text under the provided index.ActionFuture<ClearIndicesCacheResponse>clearCache(ClearIndicesCacheRequest request)Clear indices cache.voidclearCache(ClearIndicesCacheRequest request, ActionListener<ClearIndicesCacheResponse> listener)Clear indices cache.ActionFuture<CloseIndexResponse>close(CloseIndexRequest request)Closes an index based on the index name.voidclose(CloseIndexRequest request, ActionListener<CloseIndexResponse> listener)Closes an index based on the index name.ActionFuture<CreateIndexResponse>create(CreateIndexRequest request)Creates an index using an explicit request allowing to specify the settings of the index.voidcreate(CreateIndexRequest request, ActionListener<CreateIndexResponse> listener)Creates an index using an explicit request allowing to specify the settings of the index.ActionFuture<AcknowledgedResponse>delete(DeleteIndexRequest request)Deletes an index based on the index name.voiddelete(DeleteIndexRequest request, ActionListener<AcknowledgedResponse> listener)Deletes an index based on the index name.ActionFuture<AcknowledgedResponse>deleteTemplate(DeleteIndexTemplateRequest request)Deletes index template.voiddeleteTemplate(DeleteIndexTemplateRequest request, ActionListener<AcknowledgedResponse> listener)Deletes an index template.ActionFuture<IndicesExistsResponse>exists(IndicesExistsRequest request)Indices Exists.voidexists(IndicesExistsRequest request, ActionListener<IndicesExistsResponse> listener)The status of one or more indices.ActionFuture<FlushResponse>flush(FlushRequest request)Explicitly flush one or more indices (releasing memory from the node).voidflush(FlushRequest request, ActionListener<FlushResponse> listener)Explicitly flush one or more indices (releasing memory from the node).ActionFuture<ForceMergeResponse>forceMerge(ForceMergeRequest request)Explicitly force merge one or more indices into a the number of segments.voidforceMerge(ForceMergeRequest request, ActionListener<ForceMergeResponse> listener)Explicitly force merge one or more indices into a the number of segments.ActionFuture<GetAliasesResponse>getAliases(GetAliasesRequest request)Get specific index aliases that exists in particular indices and / or by name.voidgetAliases(GetAliasesRequest request, ActionListener<GetAliasesResponse> listener)Get specific index aliases that exists in particular indices and / or by name.ActionFuture<GetFieldMappingsResponse>getFieldMappings(GetFieldMappingsRequest request)Get the mappings of specific fieldsvoidgetFieldMappings(GetFieldMappingsRequest request, ActionListener<GetFieldMappingsResponse> listener)Get the mappings of specific fieldsActionFuture<GetIndexResponse>getIndex(GetIndexRequest request)Get index metadata for particular indices.voidgetIndex(GetIndexRequest request, ActionListener<GetIndexResponse> listener)Get index metadata for particular indices.ActionFuture<GetMappingsResponse>getMappings(GetMappingsRequest request)Get the complete mappings of one or more typesvoidgetMappings(GetMappingsRequest request, ActionListener<GetMappingsResponse> listener)Get the complete mappings of one or more typesActionFuture<GetSettingsResponse>getSettings(GetSettingsRequest request)Executed a per index settings get request.voidgetSettings(GetSettingsRequest request, ActionListener<GetSettingsResponse> listener)Executed a per index settings get request and returns the settings for the indices specified.ActionFuture<GetIndexTemplatesResponse>getTemplates(GetIndexTemplatesRequest request)Gets index template.voidgetTemplates(GetIndexTemplatesRequest request, ActionListener<GetIndexTemplatesResponse> listener)Gets an index template.ActionFuture<OpenIndexResponse>open(OpenIndexRequest request)Open an index based on the index name.voidopen(OpenIndexRequest request, ActionListener<OpenIndexResponse> listener)Open an index based on the index name.AddIndexBlockRequestBuilderprepareAddBlock(IndexMetadata.APIBlock block, java.lang.String... indices)Adds a block to an indexIndicesAliasesRequestBuilderprepareAliases()Allows to add/remove aliases from indices.AliasesExistRequestBuilderprepareAliasesExist(java.lang.String... aliases)Allows to check to existence of aliases from indices.AnalyzeRequestBuilderprepareAnalyze()Analyze text/texts.AnalyzeRequestBuilderprepareAnalyze(java.lang.String text)Analyze text.AnalyzeRequestBuilderprepareAnalyze(java.lang.String index, java.lang.String text)Analyze text under the provided index.ClearIndicesCacheRequestBuilderprepareClearCache(java.lang.String... indices)Clear indices cache.CloseIndexRequestBuilderprepareClose(java.lang.String... indices)Closes one or more indices based on their index name.CreateIndexRequestBuilderprepareCreate(java.lang.String index)Creates an index using an explicit request allowing to specify the settings of the index.DeleteIndexRequestBuilderprepareDelete(java.lang.String... indices)Deletes an index based on the index name.DeleteIndexTemplateRequestBuilderprepareDeleteTemplate(java.lang.String name)Deletes an index template.IndicesExistsRequestBuilderprepareExists(java.lang.String... indices)Indices exists.FlushRequestBuilderprepareFlush(java.lang.String... indices)Explicitly flush one or more indices (releasing memory from the node).ForceMergeRequestBuilderprepareForceMerge(java.lang.String... indices)Explicitly force merge one or more indices into a the number of segments.GetAliasesRequestBuilderprepareGetAliases(java.lang.String... aliases)Get specific index aliases that exists in particular indices and / or by name.GetFieldMappingsRequestBuilderprepareGetFieldMappings(java.lang.String... indices)Get the mappings of specific fieldsGetIndexRequestBuilderprepareGetIndex()Get index metadata for particular indices.GetMappingsRequestBuilderprepareGetMappings(java.lang.String... indices)Get the complete mappings of one or more typesGetSettingsRequestBuilderprepareGetSettings(java.lang.String... indices)Returns a builder for a per index settings get request.GetIndexTemplatesRequestBuilderprepareGetTemplates(java.lang.String... name)Gets an index template (optional).OpenIndexRequestBuilderprepareOpen(java.lang.String... indices)Opens one or more indices based on their index name.PutMappingRequestBuilderpreparePutMapping(java.lang.String... indices)Add mapping definition for a type into one or more indices.PutIndexTemplateRequestBuilderpreparePutTemplate(java.lang.String name)Puts an index template.RecoveryRequestBuilderprepareRecoveries(java.lang.String... indices)Indices recoveriesRefreshRequestBuilderprepareRefresh(java.lang.String... indices)Explicitly refresh one or more indices (making the content indexed since the last refresh searchable).ResizeRequestBuilderprepareResizeIndex(java.lang.String sourceIndex, java.lang.String targetIndex)Resize an index using an explicit request allowing to specify the settings, mappings and aliases of the target index of the index.RolloverRequestBuilderprepareRolloverIndex(java.lang.String sourceAlias)Swaps the index pointed to by an alias given all provided conditions are satisfiedIndicesSegmentsRequestBuilderprepareSegments(java.lang.String... indices)The segments of one or more indices.IndicesShardStoreRequestBuilderprepareShardStores(java.lang.String... indices)The shard stores info of one or more indices.IndicesStatsRequestBuilderprepareStats(java.lang.String... indices)Indices stats.SyncedFlushRequestBuilderprepareSyncedFlush(java.lang.String... indices)Explicitly sync flush one or more indices (write sync id to shards for faster recovery).TypesExistsRequestBuilderprepareTypesExists(java.lang.String... index)Deprecated.Types are deprecated and are in the process of being removed.UpdateSettingsRequestBuilderprepareUpdateSettings(java.lang.String... indices)Update indices settings.UpgradeRequestBuilderprepareUpgrade(java.lang.String... indices)Check upgrade status of one or more indicesUpgradeStatusRequestBuilderprepareUpgradeStatus(java.lang.String... indices)Explicitly upgrade one or more indicesValidateQueryRequestBuilderprepareValidateQuery(java.lang.String... indices)Validate a query for correctness.ActionFuture<AcknowledgedResponse>putMapping(PutMappingRequest request)Add mapping definition for a type into one or more indices.voidputMapping(PutMappingRequest request, ActionListener<AcknowledgedResponse> listener)Add mapping definition for a type into one or more indices.ActionFuture<AcknowledgedResponse>putTemplate(PutIndexTemplateRequest request)Puts an index template.voidputTemplate(PutIndexTemplateRequest request, ActionListener<AcknowledgedResponse> listener)Puts an index template.ActionFuture<RecoveryResponse>recoveries(RecoveryRequest request)Indices recoveriesvoidrecoveries(RecoveryRequest request, ActionListener<RecoveryResponse> listener)Indices recoveriesActionFuture<RefreshResponse>refresh(RefreshRequest request)Explicitly refresh one or more indices (making the content indexed since the last refresh searchable).voidrefresh(RefreshRequest request, ActionListener<RefreshResponse> listener)Explicitly refresh one or more indices (making the content indexed since the last refresh searchable).ActionFuture<ResizeResponse>resizeIndex(ResizeRequest request)Resize an index using an explicit request allowing to specify the settings, mappings and aliases of the target index of the index.voidresizeIndex(ResizeRequest request, ActionListener<ResizeResponse> listener)Shrinks an index using an explicit request allowing to specify the settings, mappings and aliases of the target index of the index.ActionFuture<ResolveIndexAction.Response>resolveIndex(ResolveIndexAction.Request request)Resolves names and wildcard expressions to indices, aliases, and data streamsvoidresolveIndex(ResolveIndexAction.Request request, ActionListener<ResolveIndexAction.Response> listener)Resolves names and wildcard expressions to indices, aliases, and data streamsActionFuture<RolloverResponse>rolloverIndex(RolloverRequest request)Swaps the index pointed to by an alias given all provided conditions are satisfiedvoidrolloverIndex(RolloverRequest request, ActionListener<RolloverResponse> listener)Swaps the index pointed to by an alias given all provided conditions are satisfiedActionFuture<IndicesSegmentResponse>segments(IndicesSegmentsRequest request)The segments of one or more indices.voidsegments(IndicesSegmentsRequest request, ActionListener<IndicesSegmentResponse> listener)The segments of one or more indices.ActionFuture<IndicesShardStoresResponse>shardStores(IndicesShardStoresRequest request)The shard stores info of one or more indices.voidshardStores(IndicesShardStoresRequest request, ActionListener<IndicesShardStoresResponse> listener)The shard stores info of one or more indices.ActionFuture<IndicesStatsResponse>stats(IndicesStatsRequest request)Indices stats.voidstats(IndicesStatsRequest request, ActionListener<IndicesStatsResponse> listener)Indices stats.ActionFuture<SyncedFlushResponse>syncedFlush(SyncedFlushRequest request)Explicitly sync flush one or more indices (write sync id to shards for faster recovery).voidsyncedFlush(SyncedFlushRequest request, ActionListener<SyncedFlushResponse> listener)Explicitly sync flush one or more indices (write sync id to shards for faster recovery).ActionFuture<TypesExistsResponse>typesExists(TypesExistsRequest request)Deprecated.Types are deprecated and are in the process of being removed.voidtypesExists(TypesExistsRequest request, ActionListener<TypesExistsResponse> listener)Deprecated.Types are deprecated and are in the process of being removed.ActionFuture<AcknowledgedResponse>updateSettings(UpdateSettingsRequest request)Updates settings of one or more indices.voidupdateSettings(UpdateSettingsRequest request, ActionListener<AcknowledgedResponse> listener)Updates settings of one or more indices.ActionFuture<UpgradeResponse>upgrade(UpgradeRequest request)Explicitly upgrade one or more indicesvoidupgrade(UpgradeRequest request, ActionListener<UpgradeResponse> listener)Explicitly upgrade one or more indicesActionFuture<UpgradeStatusResponse>upgradeStatus(UpgradeStatusRequest request)Check upgrade status of one or more indicesvoidupgradeStatus(UpgradeStatusRequest request, ActionListener<UpgradeStatusResponse> listener)Check upgrade status of one or more indicesActionFuture<ValidateQueryResponse>validateQuery(ValidateQueryRequest request)Validate a query for correctness.voidvalidateQuery(ValidateQueryRequest request, ActionListener<ValidateQueryResponse> listener)Validate a query for correctness.Methods inherited from interface org.elasticsearch.client.ElasticsearchClient
execute, execute, threadPool
-
Method Details
-
exists
Indices Exists.- Parameters:
request- The indices exists request- Returns:
- The result future
- See Also:
Requests.indicesExistsRequest(String...)
-
exists
The status of one or more indices.- Parameters:
request- The indices status requestlistener- A listener to be notified with a result- See Also:
Requests.indicesExistsRequest(String...)
-
prepareExists
Indices exists. -
typesExists
Deprecated.Types are deprecated and are in the process of being removed.Types exists.- Parameters:
request- The types exists request- Returns:
- The result future
-
typesExists
@Deprecated void typesExists(TypesExistsRequest request, ActionListener<TypesExistsResponse> listener)Deprecated.Types are deprecated and are in the process of being removed.Types exists.- Parameters:
request- The types existslistener- A listener to be notified with a result
-
prepareTypesExists
Deprecated.Types are deprecated and are in the process of being removed.Types exists. -
stats
Indices stats. -
stats
Indices stats. -
prepareStats
Indices stats. -
recoveries
Indices recoveries -
recoveries
Indices recoveries -
prepareRecoveries
Indices recoveries -
segments
The segments of one or more indices.- Parameters:
request- The indices segments request- Returns:
- The result future
- See Also:
Requests.indicesSegmentsRequest(String...)
-
segments
The segments of one or more indices.- Parameters:
request- The indices segments requestlistener- A listener to be notified with a result- See Also:
Requests.indicesSegmentsRequest(String...)
-
prepareSegments
The segments of one or more indices. -
shardStores
The shard stores info of one or more indices.- Parameters:
request- The indices shard stores request- Returns:
- The result future
- See Also:
Requests.indicesShardStoresRequest(String...)
-
shardStores
void shardStores(IndicesShardStoresRequest request, ActionListener<IndicesShardStoresResponse> listener)The shard stores info of one or more indices.- Parameters:
request- The indices shard stores requestlistener- A listener to be notified with a result- See Also:
Requests.indicesShardStoresRequest(String...)
-
prepareShardStores
The shard stores info of one or more indices. -
create
Creates an index using an explicit request allowing to specify the settings of the index.- Parameters:
request- The create index request- Returns:
- The result future
- See Also:
Requests.createIndexRequest(String)
-
create
Creates an index using an explicit request allowing to specify the settings of the index.- Parameters:
request- The create index requestlistener- A listener to be notified with a result- See Also:
Requests.createIndexRequest(String)
-
prepareCreate
Creates an index using an explicit request allowing to specify the settings of the index.- Parameters:
index- The index name to create
-
delete
Deletes an index based on the index name.- Parameters:
request- The delete index request- Returns:
- The result future
- See Also:
Requests.deleteIndexRequest(String)
-
delete
Deletes an index based on the index name.- Parameters:
request- The delete index requestlistener- A listener to be notified with a result- See Also:
Requests.deleteIndexRequest(String)
-
prepareDelete
Deletes an index based on the index name.- Parameters:
indices- The indices to delete. Use "_all" to delete all indices.
-
close
Closes an index based on the index name.- Parameters:
request- The close index request- Returns:
- The result future
- See Also:
Requests.closeIndexRequest(String)
-
close
Closes an index based on the index name.- Parameters:
request- The close index requestlistener- A listener to be notified with a result- See Also:
Requests.closeIndexRequest(String)
-
prepareClose
Closes one or more indices based on their index name.- Parameters:
indices- The name of the indices to close
-
open
Open an index based on the index name.- Parameters:
request- The close index request- Returns:
- The result future
- See Also:
Requests.openIndexRequest(String)
-
open
Open an index based on the index name.- Parameters:
request- The close index requestlistener- A listener to be notified with a result- See Also:
Requests.openIndexRequest(String)
-
prepareAddBlock
AddIndexBlockRequestBuilder prepareAddBlock(IndexMetadata.APIBlock block, java.lang.String... indices)Adds a block to an index- Parameters:
block- The block to addindices- The name of the indices to add the block to
-
addBlock
Adds a block to an index- Parameters:
request- The add index block requestlistener- A listener to be notified with a result- See Also:
Requests.openIndexRequest(String)
-
prepareOpen
Opens one or more indices based on their index name.- Parameters:
indices- The name of the indices to close
-
refresh
Explicitly refresh one or more indices (making the content indexed since the last refresh searchable).- Parameters:
request- The refresh request- Returns:
- The result future
- See Also:
Requests.refreshRequest(String...)
-
refresh
Explicitly refresh one or more indices (making the content indexed since the last refresh searchable).- Parameters:
request- The refresh requestlistener- A listener to be notified with a result- See Also:
Requests.refreshRequest(String...)
-
prepareRefresh
Explicitly refresh one or more indices (making the content indexed since the last refresh searchable). -
flush
Explicitly flush one or more indices (releasing memory from the node).- Parameters:
request- The flush request- Returns:
- A result future
- See Also:
Requests.flushRequest(String...)
-
flush
Explicitly flush one or more indices (releasing memory from the node).- Parameters:
request- The flush requestlistener- A listener to be notified with a result- See Also:
Requests.flushRequest(String...)
-
prepareFlush
Explicitly flush one or more indices (releasing memory from the node). -
syncedFlush
Explicitly sync flush one or more indices (write sync id to shards for faster recovery).- Parameters:
request- The sync flush request- Returns:
- A result future
- See Also:
Requests.syncedFlushRequest(String...)
-
syncedFlush
Explicitly sync flush one or more indices (write sync id to shards for faster recovery).- Parameters:
request- The sync flush requestlistener- A listener to be notified with a result- See Also:
Requests.syncedFlushRequest(String...)
-
prepareSyncedFlush
Explicitly sync flush one or more indices (write sync id to shards for faster recovery). -
forceMerge
Explicitly force merge one or more indices into a the number of segments.- Parameters:
request- The optimize request- Returns:
- A result future
- See Also:
Requests.forceMergeRequest(String...)
-
forceMerge
Explicitly force merge one or more indices into a the number of segments.- Parameters:
request- The force merge requestlistener- A listener to be notified with a result- See Also:
Requests.forceMergeRequest(String...)
-
prepareForceMerge
Explicitly force merge one or more indices into a the number of segments. -
upgrade
Explicitly upgrade one or more indices- Parameters:
request- The upgrade request- Returns:
- A result future
- See Also:
Requests.upgradeRequest(String...)
-
upgrade
Explicitly upgrade one or more indices- Parameters:
request- The upgrade requestlistener- A listener to be notified with a result- See Also:
Requests.upgradeRequest(String...)
-
prepareUpgradeStatus
Explicitly upgrade one or more indices -
upgradeStatus
Check upgrade status of one or more indices- Parameters:
request- The upgrade request- Returns:
- A result future
- See Also:
Requests.upgradeRequest(String...)
-
upgradeStatus
Check upgrade status of one or more indices- Parameters:
request- The upgrade requestlistener- A listener to be notified with a result- See Also:
Requests.upgradeRequest(String...)
-
prepareUpgrade
Check upgrade status of one or more indices -
getMappings
Get the complete mappings of one or more types -
getMappings
Get the complete mappings of one or more types -
prepareGetMappings
Get the complete mappings of one or more types -
getFieldMappings
void getFieldMappings(GetFieldMappingsRequest request, ActionListener<GetFieldMappingsResponse> listener)Get the mappings of specific fields -
prepareGetFieldMappings
Get the mappings of specific fields -
getFieldMappings
Get the mappings of specific fields -
putMapping
Add mapping definition for a type into one or more indices.- Parameters:
request- The create mapping request- Returns:
- A result future
- See Also:
Requests.putMappingRequest(String...)
-
putMapping
Add mapping definition for a type into one or more indices.- Parameters:
request- The create mapping requestlistener- A listener to be notified with a result- See Also:
Requests.putMappingRequest(String...)
-
preparePutMapping
Add mapping definition for a type into one or more indices. -
aliases
Allows to add/remove aliases from indices.- Parameters:
request- The index aliases request- Returns:
- The result future
- See Also:
Requests.indexAliasesRequest()
-
aliases
Allows to add/remove aliases from indices.- Parameters:
request- The index aliases requestlistener- A listener to be notified with a result- See Also:
Requests.indexAliasesRequest()
-
prepareAliases
IndicesAliasesRequestBuilder prepareAliases()Allows to add/remove aliases from indices. -
getAliases
Get specific index aliases that exists in particular indices and / or by name.- Parameters:
request- The result future
-
getAliases
Get specific index aliases that exists in particular indices and / or by name.- Parameters:
request- The index aliases requestlistener- A listener to be notified with a result
-
prepareGetAliases
Get specific index aliases that exists in particular indices and / or by name. -
prepareAliasesExist
Allows to check to existence of aliases from indices. -
aliasesExist
Check to existence of index aliases.- Parameters:
request- The result future
-
aliasesExist
Check the existence of specified index aliases.- Parameters:
request- The index aliases requestlistener- A listener to be notified with a result
-
getIndex
Get index metadata for particular indices.- Parameters:
request- The result future
-
getIndex
Get index metadata for particular indices.- Parameters:
request- The index aliases requestlistener- A listener to be notified with a result
-
prepareGetIndex
GetIndexRequestBuilder prepareGetIndex()Get index metadata for particular indices. -
clearCache
Clear indices cache.- Parameters:
request- The clear indices cache request- Returns:
- The result future
- See Also:
Requests.clearIndicesCacheRequest(String...)
-
clearCache
void clearCache(ClearIndicesCacheRequest request, ActionListener<ClearIndicesCacheResponse> listener)Clear indices cache.- Parameters:
request- The clear indices cache requestlistener- A listener to be notified with a result- See Also:
Requests.clearIndicesCacheRequest(String...)
-
prepareClearCache
Clear indices cache. -
updateSettings
Updates settings of one or more indices.- Parameters:
request- the update settings request- Returns:
- The result future
-
updateSettings
Updates settings of one or more indices.- Parameters:
request- the update settings requestlistener- A listener to be notified with the response
-
prepareUpdateSettings
Update indices settings. -
analyze
Analyze text under the provided index. -
analyze
Analyze text under the provided index. -
prepareAnalyze
Analyze text under the provided index.- Parameters:
index- The index nametext- The text to analyze
-
prepareAnalyze
Analyze text.- Parameters:
text- The text to analyze
-
prepareAnalyze
AnalyzeRequestBuilder prepareAnalyze()Analyze text/texts. -
putTemplate
Puts an index template. -
putTemplate
Puts an index template. -
preparePutTemplate
Puts an index template.- Parameters:
name- The name of the template.
-
deleteTemplate
Deletes index template. -
deleteTemplate
void deleteTemplate(DeleteIndexTemplateRequest request, ActionListener<AcknowledgedResponse> listener)Deletes an index template. -
prepareDeleteTemplate
Deletes an index template.- Parameters:
name- The name of the template.
-
getTemplates
Gets index template. -
getTemplates
void getTemplates(GetIndexTemplatesRequest request, ActionListener<GetIndexTemplatesResponse> listener)Gets an index template. -
prepareGetTemplates
Gets an index template (optional). -
validateQuery
Validate a query for correctness.- Parameters:
request- The count request- Returns:
- The result future
-
validateQuery
Validate a query for correctness.- Parameters:
request- The count requestlistener- A listener to be notified of the result
-
prepareValidateQuery
Validate a query for correctness. -
getSettings
Executed a per index settings get request and returns the settings for the indices specified. Note: this is a per index request and will not include settings that are set on the cluster level. This request is not exhaustive, it will not return default values for setting. -
getSettings
Executed a per index settings get request. -
prepareGetSettings
Returns a builder for a per index settings get request.- Parameters:
indices- the indices to fetch the setting for.- See Also:
getSettings(org.elasticsearch.action.admin.indices.settings.get.GetSettingsRequest)
-
prepareResizeIndex
ResizeRequestBuilder prepareResizeIndex(java.lang.String sourceIndex, java.lang.String targetIndex)Resize an index using an explicit request allowing to specify the settings, mappings and aliases of the target index of the index. -
resizeIndex
Resize an index using an explicit request allowing to specify the settings, mappings and aliases of the target index of the index. -
resizeIndex
Shrinks an index using an explicit request allowing to specify the settings, mappings and aliases of the target index of the index. -
prepareRolloverIndex
Swaps the index pointed to by an alias given all provided conditions are satisfied -
rolloverIndex
Swaps the index pointed to by an alias given all provided conditions are satisfied -
rolloverIndex
Swaps the index pointed to by an alias given all provided conditions are satisfied -
resolveIndex
void resolveIndex(ResolveIndexAction.Request request, ActionListener<ResolveIndexAction.Response> listener)Resolves names and wildcard expressions to indices, aliases, and data streams -
resolveIndex
Resolves names and wildcard expressions to indices, aliases, and data streams
-