You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

244 lines
8.4 KiB

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
  1. # Running in production
  2. ## Logging
  3. Default logging level (`main:info,state:info,*:`) should suffice for
  4. normal operation mode. Read [this
  5. post](https://blog.cosmos.network/one-of-the-exciting-new-features-in-0-10-0-release-is-smart-log-level-flag-e2506b4ab756)
  6. for details on how to configure `log_level` config variable. Some of the
  7. modules can be found [here](./how-to-read-logs.md#list-of-modules). If
  8. you're trying to debug Tendermint or asked to provide logs with debug
  9. logging level, you can do so by running tendermint with
  10. `--log_level="*:debug"`.
  11. ## DOS Exposure and Mitigation
  12. Validators are supposed to setup [Sentry Node
  13. Architecture](https://blog.cosmos.network/tendermint-explained-bringing-bft-based-pos-to-the-public-blockchain-domain-f22e274a0fdb)
  14. to prevent Denial-of-service attacks. You can read more about it
  15. [here](../interviews/tendermint-bft.md).
  16. ### P2P
  17. The core of the Tendermint peer-to-peer system is `MConnection`. Each
  18. connection has `MaxPacketMsgPayloadSize`, which is the maximum packet
  19. size and bounded send & receive queues. One can impose restrictions on
  20. send & receive rate per connection (`SendRate`, `RecvRate`).
  21. ### RPC
  22. Endpoints returning multiple entries are limited by default to return 30
  23. elements (100 max).
  24. Rate-limiting and authentication are another key aspects to help protect
  25. against DOS attacks. While in the future we may implement these
  26. features, for now, validators are supposed to use external tools like
  27. [NGINX](https://www.nginx.com/blog/rate-limiting-nginx/) or
  28. [traefik](https://docs.traefik.io/configuration/commons/#rate-limiting)
  29. to achieve the same things.
  30. ## Debugging Tendermint
  31. If you ever have to debug Tendermint, the first thing you should
  32. probably do is to check out the logs. See ["How to read
  33. logs"](./how-to-read-logs.md), where we explain what certain log
  34. statements mean.
  35. If, after skimming through the logs, things are not clear still, the
  36. second TODO is to query the /status RPC endpoint. It provides the
  37. necessary info: whenever the node is syncing or not, what height it is
  38. on, etc.
  39. ```
  40. curl http(s)://{ip}:{rpcPort}/status
  41. ```
  42. `dump_consensus_state` will give you a detailed overview of the
  43. consensus state (proposer, lastest validators, peers states). From it,
  44. you should be able to figure out why, for example, the network had
  45. halted.
  46. ```
  47. curl http(s)://{ip}:{rpcPort}/dump_consensus_state
  48. ```
  49. There is a reduced version of this endpoint - `consensus_state`, which
  50. returns just the votes seen at the current height.
  51. - [Github Issues](https://github.com/tendermint/tendermint/issues)
  52. - [StackOverflow
  53. questions](https://stackoverflow.com/questions/tagged/tendermint)
  54. ## Monitoring Tendermint
  55. Each Tendermint instance has a standard `/health` RPC endpoint, which
  56. responds with 200 (OK) if everything is fine and 500 (or no response) -
  57. if something is wrong.
  58. Other useful endpoints include mentioned earlier `/status`, `/net_info` and
  59. `/validators`.
  60. We have a small tool, called `tm-monitor`, which outputs information from
  61. the endpoints above plus some statistics. The tool can be found
  62. [here](https://github.com/tendermint/tools/tree/master/tm-monitor).
  63. Tendermint also can report and serve Prometheus metrics. See
  64. [Metrics](./metrics.md).
  65. ## What happens when my app dies?
  66. You are supposed to run Tendermint under a [process
  67. supervisor](https://en.wikipedia.org/wiki/Process_supervision) (like
  68. systemd or runit). It will ensure Tendermint is always running (despite
  69. possible errors).
  70. Getting back to the original question, if your application dies,
  71. Tendermint will panic. After a process supervisor restarts your
  72. application, Tendermint should be able to reconnect successfully. The
  73. order of restart does not matter for it.
  74. ## Signal handling
  75. We catch SIGINT and SIGTERM and try to clean up nicely. For other
  76. signals we use the default behaviour in Go: [Default behavior of signals
  77. in Go
  78. programs](https://golang.org/pkg/os/signal/#hdr-Default_behavior_of_signals_in_Go_programs).
  79. ## Hardware
  80. ### Processor and Memory
  81. While actual specs vary depending on the load and validators count,
  82. minimal requirements are:
  83. - 1GB RAM
  84. - 25GB of disk space
  85. - 1.4 GHz CPU
  86. SSD disks are preferable for applications with high transaction
  87. throughput.
  88. Recommended:
  89. - 2GB RAM
  90. - 100GB SSD
  91. - x64 2.0 GHz 2v CPU
  92. While for now, Tendermint stores all the history and it may require
  93. significant disk space over time, we are planning to implement state
  94. syncing (See
  95. [this issue](https://github.com/tendermint/tendermint/issues/828)). So,
  96. storing all the past blocks will not be necessary.
  97. ### Operating Systems
  98. Tendermint can be compiled for a wide range of operating systems thanks
  99. to Go language (the list of \$OS/\$ARCH pairs can be found
  100. [here](https://golang.org/doc/install/source#environment)).
  101. While we do not favor any operation system, more secure and stable Linux
  102. server distributions (like Centos) should be preferred over desktop
  103. operation systems (like Mac OS).
  104. ### Miscellaneous
  105. NOTE: if you are going to use Tendermint in a public domain, make sure
  106. you read [hardware recommendations (see "4.
  107. Hardware")](https://cosmos.network/validators) for a validator in the
  108. Cosmos network.
  109. ## Configuration parameters
  110. - `p2p.flush_throttle_timeout` `p2p.max_packet_msg_payload_size`
  111. `p2p.send_rate` `p2p.recv_rate`
  112. If you are going to use Tendermint in a private domain and you have a
  113. private high-speed network among your peers, it makes sense to lower
  114. flush throttle timeout and increase other params.
  115. ```
  116. [p2p]
  117. send_rate=20000000 # 2MB/s
  118. recv_rate=20000000 # 2MB/s
  119. flush_throttle_timeout=10
  120. max_packet_msg_payload_size=10240 # 10KB
  121. ```
  122. - `mempool.recheck`
  123. After every block, Tendermint rechecks every transaction left in the
  124. mempool to see if transactions committed in that block affected the
  125. application state, so some of the transactions left may become invalid.
  126. If that does not apply to your application, you can disable it by
  127. setting `mempool.recheck=false`.
  128. - `mempool.broadcast`
  129. Setting this to false will stop the mempool from relaying transactions
  130. to other peers until they are included in a block. It means only the
  131. peer you send the tx to will see it until it is included in a block.
  132. - `consensus.skip_timeout_commit`
  133. We want `skip_timeout_commit=false` when there is economics on the line
  134. because proposers should wait to hear for more votes. But if you don't
  135. care about that and want the fastest consensus, you can skip it. It will
  136. be kept false by default for public deployments (e.g. [Cosmos
  137. Hub](https://cosmos.network/intro/hub)) while for enterprise
  138. applications, setting it to true is not a problem.
  139. - `consensus.peer_gossip_sleep_duration`
  140. You can try to reduce the time your node sleeps before checking if
  141. theres something to send its peers.
  142. - `consensus.timeout_commit`
  143. You can also try lowering `timeout_commit` (time we sleep before
  144. proposing the next block).
  145. - `p2p.addr_book_strict`
  146. By default, Tendermint checks whenever a peer's address is routable before
  147. saving it to the address book. The address is considered as routable if the IP
  148. is [valid and within allowed
  149. ranges](https://github.com/tendermint/tendermint/blob/27bd1deabe4ba6a2d9b463b8f3e3f1e31b993e61/p2p/netaddress.go#L209).
  150. This may not be the case for private networks, where your IP range is usually
  151. strictly limited and private. If that case, you need to set `addr_book_strict`
  152. to `false` (turn off).
  153. - `rpc.max_open_connections`
  154. By default, the number of simultaneous connections is limited because most OS
  155. give you limited number of file descriptors.
  156. If you want to accept greater number of connections, you will need to increase
  157. these limits.
  158. [Sysctls to tune the system to be able to open more connections](https://github.com/satori-com/tcpkali/blob/master/doc/tcpkali.man.md#sysctls-to-tune-the-system-to-be-able-to-open-more-connections)
  159. ...for N connections, such as 50k:
  160. ```
  161. kern.maxfiles=10000+2*N # BSD
  162. kern.maxfilesperproc=100+2*N # BSD
  163. kern.ipc.maxsockets=10000+2*N # BSD
  164. fs.file-max=10000+2*N # Linux
  165. net.ipv4.tcp_max_orphans=N # Linux
  166. # For load-generating clients.
  167. net.ipv4.ip_local_port_range="10000 65535" # Linux.
  168. net.inet.ip.portrange.first=10000 # BSD/Mac.
  169. net.inet.ip.portrange.last=65535 # (Enough for N < 55535)
  170. net.ipv4.tcp_tw_reuse=1 # Linux
  171. net.inet.tcp.maxtcptw=2*N # BSD
  172. # If using netfilter on Linux:
  173. net.netfilter.nf_conntrack_max=N
  174. echo $((N/8)) > /sys/module/nf_conntrack/parameters/hashsize
  175. ```
  176. The similar option exists for limiting the number of gRPC connections -
  177. `rpc.grpc_max_open_connections`.