| Package | Description |
|---|---|
| org.elasticsearch.action.admin.indices.forcemerge |
Force merge index/indices action.
|
| org.elasticsearch.client |
The client module allowing to easily perform actions/operations.
|
| org.elasticsearch.index.shard |
| Modifier and Type | Method and Description |
|---|---|
ForceMergeRequest |
ForceMergeRequest.flush(boolean flush)
Should flush be performed after the merge.
|
ForceMergeRequest |
ForceMergeRequest.maxNumSegments(int maxNumSegments)
Will merge the index down to <= maxNumSegments.
|
ForceMergeRequest |
ForceMergeRequest.onlyExpungeDeletes(boolean onlyExpungeDeletes)
Should the merge only expunge deletes from the index, without full merge.
|
protected ForceMergeRequest |
TransportForceMergeAction.readRequestFrom(StreamInput in) |
| Modifier and Type | Method and Description |
|---|---|
protected ClusterBlockException |
TransportForceMergeAction.checkGlobalBlock(ClusterState state,
ForceMergeRequest request) |
protected ClusterBlockException |
TransportForceMergeAction.checkRequestBlock(ClusterState state,
ForceMergeRequest request,
String[] concreteIndices) |
protected ForceMergeResponse |
TransportForceMergeAction.newResponse(ForceMergeRequest request,
int totalShards,
int successfulShards,
int failedShards,
List<TransportBroadcastByNodeAction.EmptyResult> responses,
List<ShardOperationFailedException> shardFailures,
ClusterState clusterState) |
protected TransportBroadcastByNodeAction.EmptyResult |
TransportForceMergeAction.shardOperation(ForceMergeRequest request,
ShardRouting shardRouting) |
protected ShardsIterator |
TransportForceMergeAction.shards(ClusterState clusterState,
ForceMergeRequest request,
String[] concreteIndices)
The refresh request works against *all* shards.
|
| Modifier and Type | Method and Description |
|---|---|
static ForceMergeRequest |
Requests.forceMergeRequest(String... indices)
Creates a force merge request.
|
| Modifier and Type | Method and Description |
|---|---|
ActionFuture<ForceMergeResponse> |
IndicesAdminClient.forceMerge(ForceMergeRequest request)
Explicitly force merge one or more indices into a the number of segments.
|
void |
IndicesAdminClient.forceMerge(ForceMergeRequest request,
ActionListener<ForceMergeResponse> listener)
Explicitly force merge one or more indices into a the number of segments.
|
| Modifier and Type | Method and Description |
|---|---|
void |
IndexShard.forceMerge(ForceMergeRequest forceMerge) |
Copyright © 2009–2017. All rights reserved.