Package org.elasticsearch.transport
Class TransportService
java.lang.Object
org.elasticsearch.common.component.AbstractLifecycleComponent
org.elasticsearch.transport.TransportService
- All Implemented Interfaces:
 Closeable,AutoCloseable,LifecycleComponent,org.elasticsearch.core.Releasable,ReportingService<TransportInfo>,TransportConnectionListener,TransportMessageListener
public class TransportService
extends AbstractLifecycleComponent
implements ReportingService<TransportInfo>, TransportMessageListener, TransportConnectionListener
- 
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classThis handler wrapper ensures that the response thread executes with the correct thread context.static classNested classes/interfaces inherited from interface org.elasticsearch.node.ReportingService
ReportingService.Info - 
Field Summary
FieldsModifier and TypeFieldDescriptionprotected ClusterNameprotected ConnectionManagerstatic Stringstatic Stringstatic TransportInterceptorprotected TaskManagerprotected ThreadPoolprotected TransportA set of all valid action prefixes.Fields inherited from class org.elasticsearch.common.component.AbstractLifecycleComponent
lifecycleFields inherited from interface org.elasticsearch.transport.TransportMessageListener
NOOP_LISTENER - 
Constructor Summary
ConstructorsConstructorDescriptionTransportService(Settings settings, Transport transport, ThreadPool threadPool, TransportInterceptor transportInterceptor, Function<BoundTransportAddress,DiscoveryNode> localNodeFactory, ClusterSettings clusterSettings, Set<String> taskHeaders)Build the service.TransportService(Settings settings, Transport transport, ThreadPool threadPool, TransportInterceptor transportInterceptor, Function<BoundTransportAddress,DiscoveryNode> localNodeFactory, ClusterSettings clusterSettings, Set<String> taskHeaders, ConnectionManager connectionManager) - 
Method Summary
Modifier and TypeMethodDescriptionvoidStart accepting incoming requests.voidaddConnectionListener(TransportConnectionListener listener)voidaddMessageListener(TransportMessageListener listener)addressesFromString(String address)connectionValidator(DiscoveryNode node)voidconnectToNode(DiscoveryNode node)Connect to the specified node with the default connection profilevoidconnectToNode(DiscoveryNode node, ActionListener<Void> listener)Connect to the specified node with the given connection profile.voidconnectToNode(DiscoveryNode node, ConnectionProfile connectionProfile)Connect to the specified node with the given connection profilevoidconnectToNode(DiscoveryNode node, ConnectionProfile connectionProfile, ActionListener<Void> listener)Connect to the specified node with the given connection profile.protected TaskManagercreateTaskManager(Settings settings, ThreadPool threadPool, Set<String> taskHeaders)voiddisconnectFromNode(DiscoveryNode node)protected voiddoClose()protected voiddoStart()protected voiddoStop()getConnection(DiscoveryNode node)Returns either a real transport connection or a local node connection if we are using the local node optimization.RequestHandlerRegistry<? extends TransportRequest>getRequestHandler(String action)Returns the internal thread poolvoidhandshake(Transport.Connection connection, org.elasticsearch.core.TimeValue handshakeTimeout, Predicate<ClusterName> clusterNamePredicate, ActionListener<TransportService.HandshakeResponse> listener)Executes a high-level handshake using the given connection and returns the discovery node of the node the connection was established with.voidhandshake(Transport.Connection connection, org.elasticsearch.core.TimeValue handshakeTimeout, ActionListener<DiscoveryNode> listener)Executes a high-level handshake using the given connection and returns the discovery node of the node the connection was established with.info()booleanstatic booleanisValidActionName(String actionName)Returnstrueiff the action name starts with a valid prefix.booleannodeConnected(DiscoveryNode node)Returnstrueiff the given node is already connected.voidonConnectionClosed(Transport.Connection connection)Called once a connection ws closed.voidonRequestReceived(long requestId, String action)called by theTransportimplementation when an incoming request arrives but before any parsing of it has happened (with the exception of the requestId and action)voidonRequestSent(DiscoveryNode node, long requestId, String action, TransportRequest request, TransportRequestOptions options)called by theTransportimplementation once a request has been sentvoidonResponseReceived(long requestId, Transport.ResponseContext holder)Called for every response receivedvoidonResponseSent(long requestId, String action, Exception e)called by theTransportimplementation after an exception was sent as a response to an incoming requestvoidonResponseSent(long requestId, String action, TransportResponse response)called by theTransportimplementation once a response was sent to calling nodeopenConnection(DiscoveryNode node, ConnectionProfile connectionProfile)Establishes and returns a new connection to the given node.voidopenConnection(DiscoveryNode node, ConnectionProfile connectionProfile, ActionListener<Transport.Connection> listener)Establishes a new connection to the given node.<Request extends TransportRequest>
voidregisterRequestHandler(String action, String executor, boolean forceExecution, boolean canTripCircuitBreaker, Writeable.Reader<Request> requestReader, TransportRequestHandler<Request> handler)Registers a new request handler<Request extends TransportRequest>
voidregisterRequestHandler(String action, String executor, Writeable.Reader<Request> requestReader, TransportRequestHandler<Request> handler)Registers a new request handlervoidbooleanremoveMessageListener(TransportMessageListener listener)<T extends TransportResponse>
voidsendChildRequest(DiscoveryNode node, String action, TransportRequest request, Task parentTask, TransportRequestOptions options, TransportResponseHandler<T> handler)<T extends TransportResponse>
voidsendChildRequest(Transport.Connection connection, String action, TransportRequest request, Task parentTask, TransportRequestOptions options, TransportResponseHandler<T> handler)<T extends TransportResponse>
voidsendChildRequest(Transport.Connection connection, String action, TransportRequest request, Task parentTask, TransportResponseHandler<T> handler)<T extends TransportResponse>
voidsendRequest(DiscoveryNode node, String action, TransportRequest request, TransportRequestOptions options, TransportResponseHandler<T> handler)<T extends TransportResponse>
voidsendRequest(DiscoveryNode node, String action, TransportRequest request, TransportResponseHandler<T> handler)<T extends TransportResponse>
voidsendRequest(Transport.Connection connection, String action, TransportRequest request, TransportRequestOptions options, TransportResponseHandler<T> handler)Sends a request on the specified connection.static booleanshouldTraceAction(String action, String[] include, String[] exclude)stats()<T extends TransportResponse>
TransportFuture<T>submitRequest(DiscoveryNode node, String action, TransportRequest request, TransportRequestOptions options, TransportResponseHandler<T> handler)<T extends TransportResponse>
TransportFuture<T>submitRequest(DiscoveryNode node, String action, TransportRequest request, TransportResponseHandler<T> handler)static Transport.ConnectionunwrapConnection(Transport.Connection connection)Unwraps and returns the actual underlying connection of the given connection.Methods inherited from class org.elasticsearch.common.component.AbstractLifecycleComponent
addLifecycleListener, close, lifecycleState, removeLifecycleListener, start, stopMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.elasticsearch.transport.TransportConnectionListener
onConnectionOpened, onNodeConnected, onNodeDisconnected 
- 
Field Details
- 
DIRECT_RESPONSE_PROFILE
- See Also:
 - Constant Field Values
 
 - 
HANDSHAKE_ACTION_NAME
- See Also:
 - Constant Field Values
 
 - 
transport
 - 
connectionManager
 - 
threadPool
 - 
clusterName
 - 
taskManager
 - 
NOOP_TRANSPORT_INTERCEPTOR
 - 
VALID_ACTION_PREFIXES
A set of all valid action prefixes. 
 - 
 - 
Constructor Details
- 
TransportService
public TransportService(Settings settings, Transport transport, ThreadPool threadPool, TransportInterceptor transportInterceptor, Function<BoundTransportAddress,DiscoveryNode> localNodeFactory, @Nullable ClusterSettings clusterSettings, Set<String> taskHeaders)Build the service.- Parameters:
 clusterSettings- if non null, the TransportService will register with theClusterSettingsfor settings * updates forTransportSettings.TRACE_LOG_EXCLUDE_SETTINGandTransportSettings.TRACE_LOG_INCLUDE_SETTING.
 - 
TransportService
public TransportService(Settings settings, Transport transport, ThreadPool threadPool, TransportInterceptor transportInterceptor, Function<BoundTransportAddress,DiscoveryNode> localNodeFactory, @Nullable ClusterSettings clusterSettings, Set<String> taskHeaders, ConnectionManager connectionManager) 
 - 
 - 
Method Details
- 
getRemoteClusterService
 - 
getLocalNode
 - 
getLocalNodeConnection
 - 
getTaskManager
 - 
createTaskManager
protected TaskManager createTaskManager(Settings settings, ThreadPool threadPool, Set<String> taskHeaders) - 
doStart
protected void doStart()- Specified by:
 doStartin classAbstractLifecycleComponent
 - 
doStop
protected void doStop()- Specified by:
 doStopin classAbstractLifecycleComponent
 - 
doClose
- Specified by:
 doClosein classAbstractLifecycleComponent- Throws:
 IOException
 - 
acceptIncomingRequests
public final void acceptIncomingRequests()Start accepting incoming requests. The transport service starts before it's ready to accept incoming requests because we need to know the address(es) to which we are bound, which means we have to actually bind to them and start accepting incoming connections. However until this method is called we reject any incoming requests, including handshakes, by closing the connection. - 
info
- Specified by:
 infoin interfaceReportingService<TransportInfo>
 - 
stats
 - 
isTransportSecure
public boolean isTransportSecure() - 
boundAddress
 - 
getDefaultSeedAddresses
 - 
nodeConnected
Returnstrueiff the given node is already connected. - 
connectToNode
Connect to the specified node with the default connection profile- Parameters:
 node- the node to connect to- Throws:
 ConnectTransportException
 - 
connectToNode
Connect to the specified node with the given connection profile- Parameters:
 node- the node to connect toconnectionProfile- the connection profile to use when connecting to this node
 - 
connectToNode
public void connectToNode(DiscoveryNode node, ActionListener<Void> listener) throws ConnectTransportExceptionConnect to the specified node with the given connection profile. The ActionListener will be called on the calling thread or the generic thread pool.- Parameters:
 node- the node to connect tolistener- the action listener to notify- Throws:
 ConnectTransportException
 - 
connectToNode
public void connectToNode(DiscoveryNode node, ConnectionProfile connectionProfile, ActionListener<Void> listener)Connect to the specified node with the given connection profile. The ActionListener will be called on the calling thread or the generic thread pool.- Parameters:
 node- the node to connect toconnectionProfile- the connection profile to use when connecting to this nodelistener- the action listener to notify
 - 
connectionValidator
 - 
openConnection
public Transport.Connection openConnection(DiscoveryNode node, ConnectionProfile connectionProfile)Establishes and returns a new connection to the given node. The connection is NOT maintained by this service, it's the callers responsibility to close the connection once it goes out of scope. The ActionListener will be called on the calling thread or the generic thread pool.- Parameters:
 node- the node to connect toconnectionProfile- the connection profile to use
 - 
openConnection
public void openConnection(DiscoveryNode node, ConnectionProfile connectionProfile, ActionListener<Transport.Connection> listener)Establishes a new connection to the given node. The connection is NOT maintained by this service, it's the callers responsibility to close the connection once it goes out of scope. The ActionListener will be called on the calling thread or the generic thread pool.- Parameters:
 node- the node to connect toconnectionProfile- the connection profile to uselistener- the action listener to notify
 - 
handshake
public void handshake(Transport.Connection connection, org.elasticsearch.core.TimeValue handshakeTimeout, ActionListener<DiscoveryNode> listener)Executes a high-level handshake using the given connection and returns the discovery node of the node the connection was established with. The handshake will fail if the cluster name on the target node mismatches the local cluster name. The ActionListener will be called on the calling thread or the generic thread pool.- Parameters:
 connection- the connection to a specific nodehandshakeTimeout- handshake timeoutlistener- action listener to notify- Throws:
 ConnectTransportException- if the connection failedIllegalStateException- if the handshake failed
 - 
handshake
public void handshake(Transport.Connection connection, org.elasticsearch.core.TimeValue handshakeTimeout, Predicate<ClusterName> clusterNamePredicate, ActionListener<TransportService.HandshakeResponse> listener)Executes a high-level handshake using the given connection and returns the discovery node of the node the connection was established with. The handshake will fail if the cluster name on the target node doesn't match the local cluster name. The ActionListener will be called on the calling thread or the generic thread pool.- Parameters:
 connection- the connection to a specific nodehandshakeTimeout- handshake timeoutclusterNamePredicate- cluster name validation predicatelistener- action listener to notify- Throws:
 IllegalStateException- if the handshake failed
 - 
getConnectionManager
 - 
disconnectFromNode
 - 
addMessageListener
 - 
removeMessageListener
 - 
addConnectionListener
 - 
removeConnectionListener
 - 
submitRequest
public <T extends TransportResponse> TransportFuture<T> submitRequest(DiscoveryNode node, String action, TransportRequest request, TransportResponseHandler<T> handler) throws TransportException- Throws:
 TransportException
 - 
submitRequest
public <T extends TransportResponse> TransportFuture<T> submitRequest(DiscoveryNode node, String action, TransportRequest request, TransportRequestOptions options, TransportResponseHandler<T> handler) throws TransportException- Throws:
 TransportException
 - 
sendRequest
public <T extends TransportResponse> void sendRequest(DiscoveryNode node, String action, TransportRequest request, TransportResponseHandler<T> handler) - 
sendRequest
public final <T extends TransportResponse> void sendRequest(DiscoveryNode node, String action, TransportRequest request, TransportRequestOptions options, TransportResponseHandler<T> handler) - 
unwrapConnection
Unwraps and returns the actual underlying connection of the given connection. - 
sendRequest
public final <T extends TransportResponse> void sendRequest(Transport.Connection connection, String action, TransportRequest request, TransportRequestOptions options, TransportResponseHandler<T> handler)Sends a request on the specified connection. If there is a failure sending the request, the specified handler is invoked.- Type Parameters:
 T- the type of the transport response- Parameters:
 connection- the connection to send the request onaction- the name of the actionrequest- the requestoptions- the options for this requesthandler- the response handler
 - 
getConnection
Returns either a real transport connection or a local node connection if we are using the local node optimization.- Throws:
 NodeNotConnectedException- if the given node is not connected
 - 
sendChildRequest
public final <T extends TransportResponse> void sendChildRequest(DiscoveryNode node, String action, TransportRequest request, Task parentTask, TransportRequestOptions options, TransportResponseHandler<T> handler) - 
sendChildRequest
public <T extends TransportResponse> void sendChildRequest(Transport.Connection connection, String action, TransportRequest request, Task parentTask, TransportResponseHandler<T> handler) - 
sendChildRequest
public <T extends TransportResponse> void sendChildRequest(Transport.Connection connection, String action, TransportRequest request, Task parentTask, TransportRequestOptions options, TransportResponseHandler<T> handler) - 
shouldTraceAction
 - 
addressesFromString
- Throws:
 UnknownHostException
 - 
isValidActionName
Returnstrueiff the action name starts with a valid prefix.- See Also:
 VALID_ACTION_PREFIXES
 - 
registerRequestHandler
public <Request extends TransportRequest> void registerRequestHandler(String action, String executor, Writeable.Reader<Request> requestReader, TransportRequestHandler<Request> handler)Registers a new request handler- Parameters:
 action- The action the request handler is associated withrequestReader- a callable to be used construct new instances for streamingexecutor- The executor the request handling will be executed onhandler- The handler itself that implements the request handling
 - 
registerRequestHandler
public <Request extends TransportRequest> void registerRequestHandler(String action, String executor, boolean forceExecution, boolean canTripCircuitBreaker, Writeable.Reader<Request> requestReader, TransportRequestHandler<Request> handler)Registers a new request handler- Parameters:
 action- The action the request handler is associated withrequestReader- The request class that will be used to construct new instances for streamingexecutor- The executor the request handling will be executed onforceExecution- Force execution on the executor queue and never reject itcanTripCircuitBreaker- Check the request size and raise an exception in case the limit is breached.handler- The handler itself that implements the request handling
 - 
onRequestReceived
called by theTransportimplementation when an incoming request arrives but before any parsing of it has happened (with the exception of the requestId and action)- Specified by:
 onRequestReceivedin interfaceTransportMessageListener- Parameters:
 requestId- the internal request IDaction- the request action
 - 
onRequestSent
public void onRequestSent(DiscoveryNode node, long requestId, String action, TransportRequest request, TransportRequestOptions options)called by theTransportimplementation once a request has been sent- Specified by:
 onRequestSentin interfaceTransportMessageListener- Parameters:
 node- the node the request was sent torequestId- the internal request idaction- the action namerequest- the actual requestoptions- the request options
 - 
onResponseReceived
Description copied from interface:TransportMessageListenerCalled for every response received- Specified by:
 onResponseReceivedin interfaceTransportMessageListener- Parameters:
 requestId- the request id for this responseholder- the response context or null if the context was already processed ie. due to a timeout.
 - 
onResponseSent
called by theTransportimplementation once a response was sent to calling node- Specified by:
 onResponseSentin interfaceTransportMessageListener- Parameters:
 requestId- the request ID (unique per client)action- the request actionresponse- the response send
 - 
onResponseSent
called by theTransportimplementation after an exception was sent as a response to an incoming request- Specified by:
 onResponseSentin interfaceTransportMessageListener- Parameters:
 requestId- the request ID (unique per client)action- the request actione- the error sent back to the caller
 - 
getRequestHandler
 - 
onConnectionClosed
Description copied from interface:TransportConnectionListenerCalled once a connection ws closed.- Specified by:
 onConnectionClosedin interfaceTransportConnectionListener- Parameters:
 connection- the closed connection
 - 
getThreadPool
Returns the internal thread pool 
 -