transport.asciidoc 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. [[modules-transport]]
  2. == Transport
  3. The transport module is used for internal communication between nodes
  4. within the cluster. Each call that goes from one node to the other uses
  5. the transport module (for example, when an HTTP GET request is processed
  6. by one node, and should actually be processed by another node that holds
  7. the data).
  8. The transport mechanism is completely asynchronous in nature, meaning
  9. that there is no blocking thread waiting for a response. The benefit of
  10. using asynchronous communication is first solving the
  11. http://en.wikipedia.org/wiki/C10k_problem[C10k problem], as well as
  12. being the ideal solution for scatter (broadcast) / gather operations such
  13. as search in ElasticSearch.
  14. [float]
  15. === TCP Transport
  16. The TCP transport is an implementation of the transport module using
  17. TCP. It allows for the following settings:
  18. [cols="<,<",options="header",]
  19. |=======================================================================
  20. |Setting |Description
  21. |`transport.tcp.port` |A bind port range. Defaults to `9300-9400`.
  22. |`transport.publish_port` |The port that other nodes in the cluster
  23. should use when communicating with this node. Useful when a cluster node
  24. is behind a proxy or firewall and the `transport.tcp.port` is not directly
  25. addressable from the outside. Defaults to the actual port assigned via
  26. `transport.tcp.port`.
  27. |`transport.bind_host` |The host address to bind the transport service to. Defaults to `transport.host` (if set) or `network.bind_host`.
  28. |`transport.publish_host` |The host address to publish for nodes in the cluster to connect to. Defaults to `transport.host` (if set) or `network.publish_host`.
  29. |`transport.host` |Used to set the `transport.bind_host` and the `transport.publish_host` Defaults to `transport.host` or `network.host`.
  30. |`transport.tcp.connect_timeout` |The socket connect timeout setting (in
  31. time setting format). Defaults to `30s`.
  32. |`transport.tcp.compress` |Set to `true` to enable compression (LZF)
  33. between all nodes. Defaults to `false`.
  34. |=======================================================================
  35. It also uses the common
  36. <<modules-network,network settings>>.
  37. [float]
  38. ==== TCP Transport Profiles
  39. Elasticsearch allows you to bind to multiple ports on different interfaces by the use of transport profiles. See this example configuration
  40. [source,yaml]
  41. --------------
  42. transport.profiles.default.port: 9300-9400
  43. transport.profiles.default.bind_host: 10.0.0.1
  44. transport.profiles.client.port: 9500-9600
  45. transport.profiles.client.bind_host: 192.168.0.1
  46. transport.profiles.dmz.port: 9700-9800
  47. transport.profiles.dmz.bind_host: 172.16.1.2
  48. --------------
  49. The `default` profile is a special. It is used as fallback for any other profiles, if those do not have a specific configuration setting set.
  50. Note that the default profile is how other nodes in the cluster will connect to this node usually. In the future this feature will allow to enable node-to-node communication via multiple interfaces.
  51. The following parameters can be configured like that
  52. * `port`: The port to bind to
  53. * `bind_host`: The host to bind
  54. * `publish_host`: The host which is published in informational APIs
  55. * `tcp_no_delay`: Configures the `TCP_NO_DELAY` option for this socket
  56. * `tcp_keep_alive`: Configures the `SO_KEEPALIVE` option for this socket
  57. * `reuse_address`: Configures the `SO_REUSEADDR` option for this socket
  58. * `tcp_send_buffer_size`: Configures the send buffer size of the socket
  59. * `tcp_receive_buffer_size`: Configures the receive buffer size of the socket
  60. [float]
  61. === Local Transport
  62. This is a handy transport to use when running integration tests within
  63. the JVM. It is automatically enabled when using
  64. `NodeBuilder#local(true)`.
  65. [float]
  66. === Transport Tracer
  67. The transport module has a dedicated tracer logger which, when activated, logs incoming and out going requests. The log can be dynamically activated
  68. by settings the level of the `transport.tracer` logger to `TRACE`:
  69. [source,js]
  70. --------------------------------------------------
  71. curl -XPUT localhost:9200/_cluster/settings -d '{
  72. "transient" : {
  73. "logger.transport.tracer" : "TRACE"
  74. }
  75. }'
  76. --------------------------------------------------
  77. You can also control which actions will be traced, using a set of include and exclude wildcard patterns. By default every request will be traced
  78. except for fault detection pings:
  79. [source,js]
  80. --------------------------------------------------
  81. curl -XPUT localhost:9200/_cluster/settings -d '{
  82. "transient" : {
  83. "transport.tracer.include" : "*"
  84. "transport.tracer.exclude" : "internal:discovery/zen/fd*"
  85. }
  86. }'
  87. --------------------------------------------------