Class Netty4Transport
- java.lang.Object
-
- org.elasticsearch.common.component.AbstractComponent
-
- org.elasticsearch.common.component.AbstractLifecycleComponent
-
- org.elasticsearch.transport.TcpTransport
-
- org.elasticsearch.transport.netty4.Netty4Transport
-
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable,LifecycleComponent,Releasable,Transport
public class Netty4Transport extends TcpTransport
There are 4 types of connections per node, low/med/high/ping. Low if for batch oriented APIs (like recovery or batch) with high payload that will cause regular request. (like search or single index) to take longer. Med is for the typical search / single doc index. And High for things like cluster state. Ping is reserved for sending out ping requests to other nodes.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected classNetty4Transport.ClientChannelInitializerprotected classNetty4Transport.ServerChannelInitializer-
Nested classes/interfaces inherited from class org.elasticsearch.transport.TcpTransport
TcpTransport.HttpOnTransportException, TcpTransport.NodeChannels, TcpTransport.ProfileSettings
-
Nested classes/interfaces inherited from interface org.elasticsearch.transport.Transport
Transport.Connection, Transport.ResponseContext<T extends TransportResponse>, Transport.ResponseHandlers
-
-
Field Summary
Fields Modifier and Type Field Description static Setting<java.lang.Integer>NETTY_BOSS_COUNTstatic Setting<ByteSizeValue>NETTY_RECEIVE_PREDICTOR_MAXstatic Setting<ByteSizeValue>NETTY_RECEIVE_PREDICTOR_MINstatic Setting<ByteSizeValue>NETTY_RECEIVE_PREDICTOR_SIZEstatic Setting<java.lang.Integer>WORKER_COUNT-
Fields inherited from class org.elasticsearch.transport.TcpTransport
BIND_HOST, BIND_HOST_PROFILE, compress, DEFAULT_FEATURES_SETTING, DEFAULT_PROFILE, failedPings, FEATURE_PREFIX, HOST, networkService, PING_DATA_SIZE, PING_SCHEDULE, PORT, PORT_PROFILE, profileSettings, PUBLISH_HOST, PUBLISH_HOST_PROFILE, PUBLISH_PORT, PUBLISH_PORT_PROFILE, successfulPings, TCP_KEEP_ALIVE, TCP_KEEP_ALIVE_PROFILE, TCP_NO_DELAY, TCP_NO_DELAY_PROFILE, TCP_RECEIVE_BUFFER_SIZE, TCP_RECEIVE_BUFFER_SIZE_PROFILE, TCP_REUSE_ADDRESS, TCP_REUSE_ADDRESS_PROFILE, TCP_SEND_BUFFER_SIZE, TCP_SEND_BUFFER_SIZE_PROFILE, threadPool, TRANSPORT_CLIENT_BOSS_THREAD_NAME_PREFIX, TRANSPORT_SERVER_WORKER_THREAD_NAME_PREFIX
-
Fields inherited from class org.elasticsearch.common.component.AbstractLifecycleComponent
lifecycle
-
Fields inherited from class org.elasticsearch.common.component.AbstractComponent
deprecationLogger, logger, settings
-
Fields inherited from interface org.elasticsearch.transport.Transport
TRANSPORT_TCP_COMPRESS
-
-
Constructor Summary
Constructors Constructor Description Netty4Transport(Settings settings, ThreadPool threadPool, NetworkService networkService, BigArrays bigArrays, NamedWriteableRegistry namedWriteableRegistry, CircuitBreakerService circuitBreakerService)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected NettyTcpChannelbind(java.lang.String name, java.net.InetSocketAddress address)protected voiddoStart()protected voidexceptionCaught(io.netty.channel.ChannelHandlerContext ctx, java.lang.Throwable cause)protected io.netty.channel.ChannelHandlergetClientChannelInitializer(DiscoveryNode node)protected io.netty.channel.ChannelHandlergetServerChannelInitializer(java.lang.String name)protected NettyTcpChannelinitiateChannel(DiscoveryNode node, ActionListener<java.lang.Void> listener)protected voidstopInternal()-
Methods inherited from class org.elasticsearch.transport.TcpTransport
addMessageListener, addressesFromString, bindServer, bindToPort, boundAddress, canCompress, doClose, doStop, ensureOpen, executeHandshake, getCurrentVersion, getInFlightRequestBreaker, getLocalAddresses, getProfileSettings, getRequestHandler, getResponseHandlers, getStats, handleRequest, maybeOverrideConnectionProfile, messageReceived, onException, openConnection, profileBoundAddresses, registerRequestHandler, removeMessageListener, resolvePublishPort, sendErrorResponse, sendResponse, serverAcceptedChannel, validateMessageHeader, validateRequest
-
Methods inherited from class org.elasticsearch.common.component.AbstractLifecycleComponent
addLifecycleListener, close, lifecycleState, removeLifecycleListener, start, stop
-
Methods inherited from class org.elasticsearch.common.component.AbstractComponent
nodeName
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.elasticsearch.common.component.LifecycleComponent
addLifecycleListener, lifecycleState, removeLifecycleListener, start, stop
-
Methods inherited from interface org.elasticsearch.common.lease.Releasable
close
-
-
-
-
Field Detail
-
WORKER_COUNT
public static final Setting<java.lang.Integer> WORKER_COUNT
-
NETTY_RECEIVE_PREDICTOR_SIZE
public static final Setting<ByteSizeValue> NETTY_RECEIVE_PREDICTOR_SIZE
-
NETTY_RECEIVE_PREDICTOR_MIN
public static final Setting<ByteSizeValue> NETTY_RECEIVE_PREDICTOR_MIN
-
NETTY_RECEIVE_PREDICTOR_MAX
public static final Setting<ByteSizeValue> NETTY_RECEIVE_PREDICTOR_MAX
-
NETTY_BOSS_COUNT
public static final Setting<java.lang.Integer> NETTY_BOSS_COUNT
-
-
Constructor Detail
-
Netty4Transport
public Netty4Transport(Settings settings, ThreadPool threadPool, NetworkService networkService, BigArrays bigArrays, NamedWriteableRegistry namedWriteableRegistry, CircuitBreakerService circuitBreakerService)
-
-
Method Detail
-
doStart
protected void doStart()
- Overrides:
doStartin classTcpTransport
-
getServerChannelInitializer
protected io.netty.channel.ChannelHandler getServerChannelInitializer(java.lang.String name)
-
getClientChannelInitializer
protected io.netty.channel.ChannelHandler getClientChannelInitializer(DiscoveryNode node)
-
exceptionCaught
protected final void exceptionCaught(io.netty.channel.ChannelHandlerContext ctx, java.lang.Throwable cause) throws java.lang.Exception- Throws:
java.lang.Exception
-
initiateChannel
protected NettyTcpChannel initiateChannel(DiscoveryNode node, ActionListener<java.lang.Void> listener) throws java.io.IOException
- Specified by:
initiateChannelin classTcpTransport- Throws:
java.io.IOException
-
bind
protected NettyTcpChannel bind(java.lang.String name, java.net.InetSocketAddress address)
- Specified by:
bindin classTcpTransport
-
stopInternal
protected void stopInternal()
- Overrides:
stopInternalin classTcpTransport
-
-