Package | Description |
---|---|
org.elasticsearch.action.admin.indices.flush |
Flush index/indices action.
|
org.elasticsearch.client |
The client module allowing to easily perform actions/operations.
|
org.elasticsearch.client.support | |
org.elasticsearch.index.shard |
Modifier and Type | Method and Description |
---|---|
FlushRequest |
FlushRequest.force(boolean force)
Force flushing, even if one is possibly not needed.
|
protected FlushRequest |
TransportFlushAction.newRequest() |
FlushRequest |
FlushRequest.waitIfOngoing(boolean waitIfOngoing)
if set to true the flush will block
if a another flush operation is already running until the flush can be performed.
|
Modifier and Type | Method and Description |
---|---|
protected ClusterBlockException |
TransportFlushAction.checkGlobalBlock(ClusterState state,
FlushRequest request) |
protected ClusterBlockException |
TransportFlushAction.checkRequestBlock(ClusterState state,
FlushRequest countRequest,
String[] concreteIndices) |
protected FlushResponse |
TransportFlushAction.newResponse(FlushRequest request,
AtomicReferenceArray shardsResponses,
ClusterState clusterState) |
protected org.elasticsearch.action.admin.indices.flush.ShardFlushRequest |
TransportFlushAction.newShardRequest(int numShards,
ShardRouting shard,
FlushRequest request) |
protected GroupShardsIterator |
TransportFlushAction.shards(ClusterState clusterState,
FlushRequest request,
String[] concreteIndices)
The refresh request works against *all* shards.
|
Modifier and Type | Method and Description |
---|---|
static FlushRequest |
Requests.flushRequest(String... indices)
Creates a flush indices request.
|
Modifier and Type | Method and Description |
---|---|
ActionFuture<FlushResponse> |
IndicesAdminClient.flush(FlushRequest request)
Explicitly flush one or more indices (releasing memory from the node).
|
void |
IndicesAdminClient.flush(FlushRequest request,
ActionListener<FlushResponse> listener)
Explicitly flush one or more indices (releasing memory from the node).
|
Modifier and Type | Method and Description |
---|---|
ActionFuture<FlushResponse> |
AbstractIndicesAdminClient.flush(FlushRequest request) |
void |
AbstractIndicesAdminClient.flush(FlushRequest request,
ActionListener<FlushResponse> listener) |
Modifier and Type | Method and Description |
---|---|
void |
IndexShard.flush(FlushRequest request) |
Copyright © 2009–2015. All rights reserved.