Class NodeApi.ReplaceNode
- java.lang.Object
-
- org.apache.solr.client.solrj.SolrRequest<NodeApi.ReplaceNodeResponse>
-
- org.apache.solr.client.solrj.request.NodeApi.ReplaceNode
-
- All Implemented Interfaces:
Serializable
- Enclosing class:
- NodeApi
public static class NodeApi.ReplaceNode extends SolrRequest<NodeApi.ReplaceNodeResponse>
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.solr.client.solrj.SolrRequest
SolrRequest.METHOD, SolrRequest.SolrClientContext, SolrRequest.SolrRequestType
-
-
Field Summary
-
Fields inherited from class org.apache.solr.client.solrj.SolrRequest
SUPPORTED_METHODS, useBinaryV2, usev2
-
-
Constructor Summary
Constructors Constructor Description ReplaceNode(String sourceNodeName)Create a ReplaceNode request object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected NodeApi.ReplaceNodeResponsecreateResponse(SolrClient client)Create a new SolrResponse to hold the response from the serverRequestWriter.ContentWritergetContentWriter(String expectedType)If a request object wants to do a push write, implement this method.SolrParamsgetParams()StringgetRequestType()This method defines the type of this Solr request.ResponseParsergetResponseParser()voidsetAsync(String async)voidsetTargetNodeName(String targetNodeName)voidsetWaitForFinalState(Boolean waitForFinalState)-
Methods inherited from class org.apache.solr.client.solrj.SolrRequest
addHeader, addHeaders, getBasePath, getBasicAuthPassword, getBasicAuthUser, getCollection, getContentStreams, getHeaders, getMethod, getPath, getPreferredNodes, getQueryParams, getStreamingResponseCallback, getUserPrincipal, process, process, setBasePath, setBasicAuthCredentials, setMethod, setPath, setPreferredNodes, setQueryParams, setResponseParser, setStreamingResponseCallback, setUseBinaryV2, setUserPrincipal, setUseV2
-
-
-
-
Constructor Detail
-
ReplaceNode
public ReplaceNode(String sourceNodeName)
Create a ReplaceNode request object.- Parameters:
sourceNodeName- Path param - The name of the node to be replaced.
-
-
Method Detail
-
setTargetNodeName
public void setTargetNodeName(String targetNodeName)
- Parameters:
targetNodeName- The target node where replicas will be copied. If this parameter is not provided, Solr will identify nodes automatically based on policies or number of cores in each node.
-
setWaitForFinalState
public void setWaitForFinalState(Boolean waitForFinalState)
- Parameters:
waitForFinalState- If true, the request will complete only when all affected replicas become active. If false, the API will return the status of the single action, which may be before the new replica is online and active.
-
setAsync
public void setAsync(String async)
- Parameters:
async- Request ID to track this action which will be processed asynchronously.
-
getContentWriter
public RequestWriter.ContentWriter getContentWriter(String expectedType)
Description copied from class:SolrRequestIf a request object wants to do a push write, implement this method.- Overrides:
getContentWriterin classSolrRequest<NodeApi.ReplaceNodeResponse>- Parameters:
expectedType- This is the type that the RequestWriter would like to get. But, it is OK to send any format
-
getRequestType
public String getRequestType()
Description copied from class:SolrRequestThis method defines the type of this Solr request.- Specified by:
getRequestTypein classSolrRequest<NodeApi.ReplaceNodeResponse>
-
getParams
public SolrParams getParams()
- Specified by:
getParamsin classSolrRequest<NodeApi.ReplaceNodeResponse>
-
createResponse
protected NodeApi.ReplaceNodeResponse createResponse(SolrClient client)
Description copied from class:SolrRequestCreate a new SolrResponse to hold the response from the server- Specified by:
createResponsein classSolrRequest<NodeApi.ReplaceNodeResponse>- Parameters:
client- theSolrClientthe request will be sent to
-
getResponseParser
public ResponseParser getResponseParser()
- Overrides:
getResponseParserin classSolrRequest<NodeApi.ReplaceNodeResponse>- Returns:
- The
ResponseParser
-
-