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.

457 lines
16 KiB

blockchain: Reorg reactor (#3561) * go routines in blockchain reactor * Added reference to the go routine diagram * Initial commit * cleanup * Undo testing_logger change, committed by mistake * Fix the test loggers * pulled some fsm code into pool.go * added pool tests * changes to the design added block requests under peer moved the request trigger in the reactor poolRoutine, triggered now by a ticker in general moved everything required for making block requests smarter in the poolRoutine added a simple map of heights to keep track of what will need to be requested next added a few more tests * send errors to FSM in a different channel than blocks send errors (RemovePeer) from switch on a different channel than the one receiving blocks renamed channels added more pool tests * more pool tests * lint errors * more tests * more tests * switch fast sync to new implementation * fixed data race in tests * cleanup * finished fsm tests * address golangci comments :) * address golangci comments :) * Added timeout on next block needed to advance * updating docs and cleanup * fix issue in test from previous cleanup * cleanup * Added termination scenarios, tests and more cleanup * small fixes to adr, comments and cleanup * Fix bug in sendRequest() If we tried to send a request to a peer not present in the switch, a missing continue statement caused the request to be blackholed in a peer that was removed and never retried. While this bug was manifesting, the reactor kept asking for other blocks that would be stored and never consumed. Added the number of unconsumed blocks in the math for requesting blocks ahead of current processing height so eventually there will be no more blocks requested until the already received ones are consumed. * remove bpPeer's didTimeout field * Use distinct err codes for peer timeout and FSM timeouts * Don't allow peers to update with lower height * review comments from Ethan and Zarko * some cleanup, renaming, comments * Move block execution in separate goroutine * Remove pool's numPending * review comments * fix lint, remove old blockchain reactor and duplicates in fsm tests * small reorg around peer after review comments * add the reactor spec * verify block only once * review comments * change to int for max number of pending requests * cleanup and godoc * Add configuration flag fast sync version * golangci fixes * fix config template * move both reactor versions under blockchain * cleanup, golint, renaming stuff * updated documentation, fixed more golint warnings * integrate with behavior package * sync with master * gofmt * add changelog_pending entry * move to improvments * suggestion to changelog entry
5 years ago
limit number of /subscribe clients and queries per client (#3269) * limit number of /subscribe clients and queries per client Add the following config variables (under [rpc] section): * max_subscription_clients * max_subscriptions_per_client * timeout_broadcast_tx_commit Fixes #2826 new HTTPClient interface for subscriptions finalize HTTPClient events interface remove EventSubscriber fix data race ``` WARNING: DATA RACE Read at 0x00c000a36060 by goroutine 129: github.com/tendermint/tendermint/rpc/client.(*Local).Subscribe.func1() /go/src/github.com/tendermint/tendermint/rpc/client/localclient.go:168 +0x1f0 Previous write at 0x00c000a36060 by goroutine 132: github.com/tendermint/tendermint/rpc/client.(*Local).Subscribe() /go/src/github.com/tendermint/tendermint/rpc/client/localclient.go:191 +0x4e0 github.com/tendermint/tendermint/rpc/client.WaitForOneEvent() /go/src/github.com/tendermint/tendermint/rpc/client/helpers.go:64 +0x178 github.com/tendermint/tendermint/rpc/client_test.TestTxEventsSentWithBroadcastTxSync.func1() /go/src/github.com/tendermint/tendermint/rpc/client/event_test.go:139 +0x298 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 Goroutine 129 (running) created at: github.com/tendermint/tendermint/rpc/client.(*Local).Subscribe() /go/src/github.com/tendermint/tendermint/rpc/client/localclient.go:164 +0x4b7 github.com/tendermint/tendermint/rpc/client.WaitForOneEvent() /go/src/github.com/tendermint/tendermint/rpc/client/helpers.go:64 +0x178 github.com/tendermint/tendermint/rpc/client_test.TestTxEventsSentWithBroadcastTxSync.func1() /go/src/github.com/tendermint/tendermint/rpc/client/event_test.go:139 +0x298 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 Goroutine 132 (running) created at: testing.(*T).Run() /usr/local/go/src/testing/testing.go:878 +0x659 github.com/tendermint/tendermint/rpc/client_test.TestTxEventsSentWithBroadcastTxSync() /go/src/github.com/tendermint/tendermint/rpc/client/event_test.go:119 +0x186 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 ================== ``` lite client works (tested manually) godoc comments httpclient: do not close the out channel use TimeoutBroadcastTxCommit no timeout for unsubscribe but 1s Local (5s HTTP) timeout for resubscribe format code change Subscribe#out cap to 1 and replace config vars with RPCConfig TimeoutBroadcastTxCommit can't be greater than rpcserver.WriteTimeout rpc: Context as first parameter to all functions reformat code fixes after my own review fixes after Ethan's review add test stubs fix config.toml * fixes after manual testing - rpc: do not recommend to use BroadcastTxCommit because it's slow and wastes Tendermint resources (pubsub) - rpc: better error in Subscribe and BroadcastTxCommit - HTTPClient: do not resubscribe if err = ErrAlreadySubscribed * fixes after Ismail's review * Update rpc/grpc/grpc_test.go Co-Authored-By: melekes <anton.kalyaev@gmail.com>
5 years ago
limit number of /subscribe clients and queries per client (#3269) * limit number of /subscribe clients and queries per client Add the following config variables (under [rpc] section): * max_subscription_clients * max_subscriptions_per_client * timeout_broadcast_tx_commit Fixes #2826 new HTTPClient interface for subscriptions finalize HTTPClient events interface remove EventSubscriber fix data race ``` WARNING: DATA RACE Read at 0x00c000a36060 by goroutine 129: github.com/tendermint/tendermint/rpc/client.(*Local).Subscribe.func1() /go/src/github.com/tendermint/tendermint/rpc/client/localclient.go:168 +0x1f0 Previous write at 0x00c000a36060 by goroutine 132: github.com/tendermint/tendermint/rpc/client.(*Local).Subscribe() /go/src/github.com/tendermint/tendermint/rpc/client/localclient.go:191 +0x4e0 github.com/tendermint/tendermint/rpc/client.WaitForOneEvent() /go/src/github.com/tendermint/tendermint/rpc/client/helpers.go:64 +0x178 github.com/tendermint/tendermint/rpc/client_test.TestTxEventsSentWithBroadcastTxSync.func1() /go/src/github.com/tendermint/tendermint/rpc/client/event_test.go:139 +0x298 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 Goroutine 129 (running) created at: github.com/tendermint/tendermint/rpc/client.(*Local).Subscribe() /go/src/github.com/tendermint/tendermint/rpc/client/localclient.go:164 +0x4b7 github.com/tendermint/tendermint/rpc/client.WaitForOneEvent() /go/src/github.com/tendermint/tendermint/rpc/client/helpers.go:64 +0x178 github.com/tendermint/tendermint/rpc/client_test.TestTxEventsSentWithBroadcastTxSync.func1() /go/src/github.com/tendermint/tendermint/rpc/client/event_test.go:139 +0x298 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 Goroutine 132 (running) created at: testing.(*T).Run() /usr/local/go/src/testing/testing.go:878 +0x659 github.com/tendermint/tendermint/rpc/client_test.TestTxEventsSentWithBroadcastTxSync() /go/src/github.com/tendermint/tendermint/rpc/client/event_test.go:119 +0x186 testing.tRunner() /usr/local/go/src/testing/testing.go:827 +0x162 ================== ``` lite client works (tested manually) godoc comments httpclient: do not close the out channel use TimeoutBroadcastTxCommit no timeout for unsubscribe but 1s Local (5s HTTP) timeout for resubscribe format code change Subscribe#out cap to 1 and replace config vars with RPCConfig TimeoutBroadcastTxCommit can't be greater than rpcserver.WriteTimeout rpc: Context as first parameter to all functions reformat code fixes after my own review fixes after Ethan's review add test stubs fix config.toml * fixes after manual testing - rpc: do not recommend to use BroadcastTxCommit because it's slow and wastes Tendermint resources (pubsub) - rpc: better error in Subscribe and BroadcastTxCommit - HTTPClient: do not resubscribe if err = ErrAlreadySubscribed * fixes after Ismail's review * Update rpc/grpc/grpc_test.go Co-Authored-By: melekes <anton.kalyaev@gmail.com>
5 years ago
blockchain: Reorg reactor (#3561) * go routines in blockchain reactor * Added reference to the go routine diagram * Initial commit * cleanup * Undo testing_logger change, committed by mistake * Fix the test loggers * pulled some fsm code into pool.go * added pool tests * changes to the design added block requests under peer moved the request trigger in the reactor poolRoutine, triggered now by a ticker in general moved everything required for making block requests smarter in the poolRoutine added a simple map of heights to keep track of what will need to be requested next added a few more tests * send errors to FSM in a different channel than blocks send errors (RemovePeer) from switch on a different channel than the one receiving blocks renamed channels added more pool tests * more pool tests * lint errors * more tests * more tests * switch fast sync to new implementation * fixed data race in tests * cleanup * finished fsm tests * address golangci comments :) * address golangci comments :) * Added timeout on next block needed to advance * updating docs and cleanup * fix issue in test from previous cleanup * cleanup * Added termination scenarios, tests and more cleanup * small fixes to adr, comments and cleanup * Fix bug in sendRequest() If we tried to send a request to a peer not present in the switch, a missing continue statement caused the request to be blackholed in a peer that was removed and never retried. While this bug was manifesting, the reactor kept asking for other blocks that would be stored and never consumed. Added the number of unconsumed blocks in the math for requesting blocks ahead of current processing height so eventually there will be no more blocks requested until the already received ones are consumed. * remove bpPeer's didTimeout field * Use distinct err codes for peer timeout and FSM timeouts * Don't allow peers to update with lower height * review comments from Ethan and Zarko * some cleanup, renaming, comments * Move block execution in separate goroutine * Remove pool's numPending * review comments * fix lint, remove old blockchain reactor and duplicates in fsm tests * small reorg around peer after review comments * add the reactor spec * verify block only once * review comments * change to int for max number of pending requests * cleanup and godoc * Add configuration flag fast sync version * golangci fixes * fix config template * move both reactor versions under blockchain * cleanup, golint, renaming stuff * updated documentation, fixed more golint warnings * integrate with behavior package * sync with master * gofmt * add changelog_pending entry * move to improvments * suggestion to changelog entry
5 years ago
  1. package config
  2. import (
  3. "bytes"
  4. "fmt"
  5. "io/ioutil"
  6. "path/filepath"
  7. "text/template"
  8. cmn "github.com/tendermint/tendermint/libs/common"
  9. )
  10. // DefaultDirPerm is the default permissions used when creating directories.
  11. const DefaultDirPerm = 0700
  12. var configTemplate *template.Template
  13. func init() {
  14. var err error
  15. if configTemplate, err = template.New("configFileTemplate").Parse(defaultConfigTemplate); err != nil {
  16. panic(err)
  17. }
  18. }
  19. /****** these are for production settings ***********/
  20. // EnsureRoot creates the root, config, and data directories if they don't exist,
  21. // and panics if it fails.
  22. func EnsureRoot(rootDir string) {
  23. if err := cmn.EnsureDir(rootDir, DefaultDirPerm); err != nil {
  24. panic(err.Error())
  25. }
  26. if err := cmn.EnsureDir(filepath.Join(rootDir, defaultConfigDir), DefaultDirPerm); err != nil {
  27. panic(err.Error())
  28. }
  29. if err := cmn.EnsureDir(filepath.Join(rootDir, defaultDataDir), DefaultDirPerm); err != nil {
  30. panic(err.Error())
  31. }
  32. configFilePath := filepath.Join(rootDir, defaultConfigFilePath)
  33. // Write default config file if missing.
  34. if !cmn.FileExists(configFilePath) {
  35. writeDefaultConfigFile(configFilePath)
  36. }
  37. }
  38. // XXX: this func should probably be called by cmd/tendermint/commands/init.go
  39. // alongside the writing of the genesis.json and priv_validator.json
  40. func writeDefaultConfigFile(configFilePath string) {
  41. WriteConfigFile(configFilePath, DefaultConfig())
  42. }
  43. // WriteConfigFile renders config using the template and writes it to configFilePath.
  44. func WriteConfigFile(configFilePath string, config *Config) {
  45. var buffer bytes.Buffer
  46. if err := configTemplate.Execute(&buffer, config); err != nil {
  47. panic(err)
  48. }
  49. cmn.MustWriteFile(configFilePath, buffer.Bytes(), 0644)
  50. }
  51. // Note: any changes to the comments/variables/mapstructure
  52. // must be reflected in the appropriate struct in config/config.go
  53. const defaultConfigTemplate = `# This is a TOML config file.
  54. # For more information, see https://github.com/toml-lang/toml
  55. ##### main base config options #####
  56. # TCP or UNIX socket address of the ABCI application,
  57. # or the name of an ABCI application compiled in with the Tendermint binary
  58. proxy_app = "{{ .BaseConfig.ProxyApp }}"
  59. # A custom human readable name for this node
  60. moniker = "{{ .BaseConfig.Moniker }}"
  61. # If this node is many blocks behind the tip of the chain, FastSync
  62. # allows them to catchup quickly by downloading blocks in parallel
  63. # and verifying their commits
  64. fast_sync = {{ .BaseConfig.FastSyncMode }}
  65. # Database backend: goleveldb | cleveldb | boltdb
  66. # * goleveldb (github.com/syndtr/goleveldb - most popular implementation)
  67. # - pure go
  68. # - stable
  69. # * cleveldb (uses levigo wrapper)
  70. # - fast
  71. # - requires gcc
  72. # - use cleveldb build tag (go build -tags cleveldb)
  73. # * boltdb (uses etcd's fork of bolt - github.com/etcd-io/bbolt)
  74. # - EXPERIMENTAL
  75. # - may be faster is some use-cases (random reads - indexer)
  76. # - use boltdb build tag (go build -tags boltdb)
  77. db_backend = "{{ .BaseConfig.DBBackend }}"
  78. # Database directory
  79. db_dir = "{{ js .BaseConfig.DBPath }}"
  80. # Output level for logging, including package level options
  81. log_level = "{{ .BaseConfig.LogLevel }}"
  82. # Output format: 'plain' (colored text) or 'json'
  83. log_format = "{{ .BaseConfig.LogFormat }}"
  84. ##### additional base config options #####
  85. # Path to the JSON file containing the initial validator set and other meta data
  86. genesis_file = "{{ js .BaseConfig.Genesis }}"
  87. # Path to the JSON file containing the private key to use as a validator in the consensus protocol
  88. priv_validator_key_file = "{{ js .BaseConfig.PrivValidatorKey }}"
  89. # Path to the JSON file containing the last sign state of a validator
  90. priv_validator_state_file = "{{ js .BaseConfig.PrivValidatorState }}"
  91. # TCP or UNIX socket address for Tendermint to listen on for
  92. # connections from an external PrivValidator process
  93. priv_validator_laddr = "{{ .BaseConfig.PrivValidatorListenAddr }}"
  94. # Path to the JSON file containing the private key to use for node authentication in the p2p protocol
  95. node_key_file = "{{ js .BaseConfig.NodeKey }}"
  96. # Mechanism to connect to the ABCI application: socket | grpc
  97. abci = "{{ .BaseConfig.ABCI }}"
  98. # TCP or UNIX socket address for the profiling server to listen on
  99. prof_laddr = "{{ .BaseConfig.ProfListenAddress }}"
  100. # If true, query the ABCI app on connecting to a new peer
  101. # so the app can decide if we should keep the connection or not
  102. filter_peers = {{ .BaseConfig.FilterPeers }}
  103. ##### advanced configuration options #####
  104. ##### rpc server configuration options #####
  105. [rpc]
  106. # TCP or UNIX socket address for the RPC server to listen on
  107. laddr = "{{ .RPC.ListenAddress }}"
  108. # A list of origins a cross-domain request can be executed from
  109. # Default value '[]' disables cors support
  110. # Use '["*"]' to allow any origin
  111. cors_allowed_origins = [{{ range .RPC.CORSAllowedOrigins }}{{ printf "%q, " . }}{{end}}]
  112. # A list of methods the client is allowed to use with cross-domain requests
  113. cors_allowed_methods = [{{ range .RPC.CORSAllowedMethods }}{{ printf "%q, " . }}{{end}}]
  114. # A list of non simple headers the client is allowed to use with cross-domain requests
  115. cors_allowed_headers = [{{ range .RPC.CORSAllowedHeaders }}{{ printf "%q, " . }}{{end}}]
  116. # TCP or UNIX socket address for the gRPC server to listen on
  117. # NOTE: This server only supports /broadcast_tx_commit
  118. grpc_laddr = "{{ .RPC.GRPCListenAddress }}"
  119. # Maximum number of simultaneous connections.
  120. # Does not include RPC (HTTP&WebSocket) connections. See max_open_connections
  121. # If you want to accept a larger number than the default, make sure
  122. # you increase your OS limits.
  123. # 0 - unlimited.
  124. # Should be < {ulimit -Sn} - {MaxNumInboundPeers} - {MaxNumOutboundPeers} - {N of wal, db and other open files}
  125. # 1024 - 40 - 10 - 50 = 924 = ~900
  126. grpc_max_open_connections = {{ .RPC.GRPCMaxOpenConnections }}
  127. # Activate unsafe RPC commands like /dial_seeds and /unsafe_flush_mempool
  128. unsafe = {{ .RPC.Unsafe }}
  129. # Maximum number of simultaneous connections (including WebSocket).
  130. # Does not include gRPC connections. See grpc_max_open_connections
  131. # If you want to accept a larger number than the default, make sure
  132. # you increase your OS limits.
  133. # 0 - unlimited.
  134. # Should be < {ulimit -Sn} - {MaxNumInboundPeers} - {MaxNumOutboundPeers} - {N of wal, db and other open files}
  135. # 1024 - 40 - 10 - 50 = 924 = ~900
  136. max_open_connections = {{ .RPC.MaxOpenConnections }}
  137. # Maximum number of unique clientIDs that can /subscribe
  138. # If you're using /broadcast_tx_commit, set to the estimated maximum number
  139. # of broadcast_tx_commit calls per block.
  140. max_subscription_clients = {{ .RPC.MaxSubscriptionClients }}
  141. # Maximum number of unique queries a given client can /subscribe to
  142. # If you're using GRPC (or Local RPC client) and /broadcast_tx_commit, set to
  143. # the estimated # maximum number of broadcast_tx_commit calls per block.
  144. max_subscriptions_per_client = {{ .RPC.MaxSubscriptionsPerClient }}
  145. # How long to wait for a tx to be committed during /broadcast_tx_commit.
  146. # WARNING: Using a value larger than 10s will result in increasing the
  147. # global HTTP write timeout, which applies to all connections and endpoints.
  148. # See https://github.com/tendermint/tendermint/issues/3435
  149. timeout_broadcast_tx_commit = "{{ .RPC.TimeoutBroadcastTxCommit }}"
  150. # Maximum size of request body, in bytes
  151. max_body_bytes = {{ .RPC.MaxBodyBytes }}
  152. # Maximum size of request header, in bytes
  153. max_header_bytes = {{ .RPC.MaxHeaderBytes }}
  154. # The path to a file containing certificate that is used to create the HTTPS server.
  155. # Migth be either absolute path or path related to tendermint's config directory.
  156. # If the certificate is signed by a certificate authority,
  157. # the certFile should be the concatenation of the server's certificate, any intermediates,
  158. # and the CA's certificate.
  159. # NOTE: both tls_cert_file and tls_key_file must be present for Tendermint to create HTTPS server. Otherwise, HTTP server is run.
  160. tls_cert_file = "{{ .RPC.TLSCertFile }}"
  161. # The path to a file containing matching private key that is used to create the HTTPS server.
  162. # Migth be either absolute path or path related to tendermint's config directory.
  163. # NOTE: both tls_cert_file and tls_key_file must be present for Tendermint to create HTTPS server. Otherwise, HTTP server is run.
  164. tls_key_file = "{{ .RPC.TLSKeyFile }}"
  165. ##### peer to peer configuration options #####
  166. [p2p]
  167. # Address to listen for incoming connections
  168. laddr = "{{ .P2P.ListenAddress }}"
  169. # Address to advertise to peers for them to dial
  170. # If empty, will use the same port as the laddr,
  171. # and will introspect on the listener or use UPnP
  172. # to figure out the address.
  173. external_address = "{{ .P2P.ExternalAddress }}"
  174. # Comma separated list of seed nodes to connect to
  175. seeds = "{{ .P2P.Seeds }}"
  176. # Comma separated list of nodes to keep persistent connections to
  177. persistent_peers = "{{ .P2P.PersistentPeers }}"
  178. # UPNP port forwarding
  179. upnp = {{ .P2P.UPNP }}
  180. # Path to address book
  181. addr_book_file = "{{ js .P2P.AddrBook }}"
  182. # Set true for strict address routability rules
  183. # Set false for private or local networks
  184. addr_book_strict = {{ .P2P.AddrBookStrict }}
  185. # Maximum number of inbound peers
  186. max_num_inbound_peers = {{ .P2P.MaxNumInboundPeers }}
  187. # Maximum number of outbound peers to connect to, excluding persistent peers
  188. max_num_outbound_peers = {{ .P2P.MaxNumOutboundPeers }}
  189. # Time to wait before flushing messages out on the connection
  190. flush_throttle_timeout = "{{ .P2P.FlushThrottleTimeout }}"
  191. # Maximum size of a message packet payload, in bytes
  192. max_packet_msg_payload_size = {{ .P2P.MaxPacketMsgPayloadSize }}
  193. # Rate at which packets can be sent, in bytes/second
  194. send_rate = {{ .P2P.SendRate }}
  195. # Rate at which packets can be received, in bytes/second
  196. recv_rate = {{ .P2P.RecvRate }}
  197. # Set true to enable the peer-exchange reactor
  198. pex = {{ .P2P.PexReactor }}
  199. # Seed mode, in which node constantly crawls the network and looks for
  200. # peers. If another node asks it for addresses, it responds and disconnects.
  201. #
  202. # Does not work if the peer-exchange reactor is disabled.
  203. seed_mode = {{ .P2P.SeedMode }}
  204. # Comma separated list of peer IDs to keep private (will not be gossiped to other peers)
  205. private_peer_ids = "{{ .P2P.PrivatePeerIDs }}"
  206. # Toggle to disable guard against peers connecting from the same ip.
  207. allow_duplicate_ip = {{ .P2P.AllowDuplicateIP }}
  208. # Peer connection configuration.
  209. handshake_timeout = "{{ .P2P.HandshakeTimeout }}"
  210. dial_timeout = "{{ .P2P.DialTimeout }}"
  211. ##### mempool configuration options #####
  212. [mempool]
  213. recheck = {{ .Mempool.Recheck }}
  214. broadcast = {{ .Mempool.Broadcast }}
  215. wal_dir = "{{ js .Mempool.WalPath }}"
  216. # Maximum number of transactions in the mempool
  217. size = {{ .Mempool.Size }}
  218. # Limit the total size of all txs in the mempool.
  219. # This only accounts for raw transactions (e.g. given 1MB transactions and
  220. # max_txs_bytes=5MB, mempool will only accept 5 transactions).
  221. max_txs_bytes = {{ .Mempool.MaxTxsBytes }}
  222. # Size of the cache (used to filter transactions we saw earlier) in transactions
  223. cache_size = {{ .Mempool.CacheSize }}
  224. ##### fast sync configuration options #####
  225. [fastsync]
  226. # Fast Sync version to use:
  227. # 1) "v0" (default) - the legacy fast sync implementation
  228. # 2) "v1" - refactor of v0 version for better testability
  229. version = "{{ .FastSync.Version }}"
  230. # Limit the size of TxMessage
  231. max_msg_bytes = {{ .Mempool.MaxMsgBytes }}
  232. ##### consensus configuration options #####
  233. [consensus]
  234. wal_file = "{{ js .Consensus.WalPath }}"
  235. timeout_propose = "{{ .Consensus.TimeoutPropose }}"
  236. timeout_propose_delta = "{{ .Consensus.TimeoutProposeDelta }}"
  237. timeout_prevote = "{{ .Consensus.TimeoutPrevote }}"
  238. timeout_prevote_delta = "{{ .Consensus.TimeoutPrevoteDelta }}"
  239. timeout_precommit = "{{ .Consensus.TimeoutPrecommit }}"
  240. timeout_precommit_delta = "{{ .Consensus.TimeoutPrecommitDelta }}"
  241. timeout_commit = "{{ .Consensus.TimeoutCommit }}"
  242. # Make progress as soon as we have all the precommits (as if TimeoutCommit = 0)
  243. skip_timeout_commit = {{ .Consensus.SkipTimeoutCommit }}
  244. # EmptyBlocks mode and possible interval between empty blocks
  245. create_empty_blocks = {{ .Consensus.CreateEmptyBlocks }}
  246. create_empty_blocks_interval = "{{ .Consensus.CreateEmptyBlocksInterval }}"
  247. # Reactor sleep duration parameters
  248. peer_gossip_sleep_duration = "{{ .Consensus.PeerGossipSleepDuration }}"
  249. peer_query_maj23_sleep_duration = "{{ .Consensus.PeerQueryMaj23SleepDuration }}"
  250. ##### transactions indexer configuration options #####
  251. [tx_index]
  252. # What indexer to use for transactions
  253. #
  254. # Options:
  255. # 1) "null"
  256. # 2) "kv" (default) - the simplest possible indexer, backed by key-value storage (defaults to levelDB; see DBBackend).
  257. indexer = "{{ .TxIndex.Indexer }}"
  258. # Comma-separated list of tags to index (by default the only tag is "tx.hash")
  259. #
  260. # You can also index transactions by height by adding "tx.height" tag here.
  261. #
  262. # It's recommended to index only a subset of tags due to possible memory
  263. # bloat. This is, of course, depends on the indexer's DB and the volume of
  264. # transactions.
  265. index_tags = "{{ .TxIndex.IndexTags }}"
  266. # When set to true, tells indexer to index all tags (predefined tags:
  267. # "tx.hash", "tx.height" and all tags from DeliverTx responses).
  268. #
  269. # Note this may be not desirable (see the comment above). IndexTags has a
  270. # precedence over IndexAllTags (i.e. when given both, IndexTags will be
  271. # indexed).
  272. index_all_tags = {{ .TxIndex.IndexAllTags }}
  273. ##### instrumentation configuration options #####
  274. [instrumentation]
  275. # When true, Prometheus metrics are served under /metrics on
  276. # PrometheusListenAddr.
  277. # Check out the documentation for the list of available metrics.
  278. prometheus = {{ .Instrumentation.Prometheus }}
  279. # Address to listen for Prometheus collector(s) connections
  280. prometheus_listen_addr = "{{ .Instrumentation.PrometheusListenAddr }}"
  281. # Maximum number of simultaneous connections.
  282. # If you want to accept a larger number than the default, make sure
  283. # you increase your OS limits.
  284. # 0 - unlimited.
  285. max_open_connections = {{ .Instrumentation.MaxOpenConnections }}
  286. # Instrumentation namespace
  287. namespace = "{{ .Instrumentation.Namespace }}"
  288. `
  289. /****** these are for test settings ***********/
  290. func ResetTestRoot(testName string) *Config {
  291. return ResetTestRootWithChainID(testName, "")
  292. }
  293. func ResetTestRootWithChainID(testName string, chainID string) *Config {
  294. // create a unique, concurrency-safe test directory under os.TempDir()
  295. rootDir, err := ioutil.TempDir("", fmt.Sprintf("%s-%s_", chainID, testName))
  296. if err != nil {
  297. panic(err)
  298. }
  299. // ensure config and data subdirs are created
  300. if err := cmn.EnsureDir(filepath.Join(rootDir, defaultConfigDir), DefaultDirPerm); err != nil {
  301. panic(err)
  302. }
  303. if err := cmn.EnsureDir(filepath.Join(rootDir, defaultDataDir), DefaultDirPerm); err != nil {
  304. panic(err)
  305. }
  306. baseConfig := DefaultBaseConfig()
  307. configFilePath := filepath.Join(rootDir, defaultConfigFilePath)
  308. genesisFilePath := filepath.Join(rootDir, baseConfig.Genesis)
  309. privKeyFilePath := filepath.Join(rootDir, baseConfig.PrivValidatorKey)
  310. privStateFilePath := filepath.Join(rootDir, baseConfig.PrivValidatorState)
  311. // Write default config file if missing.
  312. if !cmn.FileExists(configFilePath) {
  313. writeDefaultConfigFile(configFilePath)
  314. }
  315. if !cmn.FileExists(genesisFilePath) {
  316. if chainID == "" {
  317. chainID = "tendermint_test"
  318. }
  319. testGenesis := fmt.Sprintf(testGenesisFmt, chainID)
  320. cmn.MustWriteFile(genesisFilePath, []byte(testGenesis), 0644)
  321. }
  322. // we always overwrite the priv val
  323. cmn.MustWriteFile(privKeyFilePath, []byte(testPrivValidatorKey), 0644)
  324. cmn.MustWriteFile(privStateFilePath, []byte(testPrivValidatorState), 0644)
  325. config := TestConfig().SetRoot(rootDir)
  326. return config
  327. }
  328. var testGenesisFmt = `{
  329. "genesis_time": "2018-10-10T08:20:13.695936996Z",
  330. "chain_id": "%s",
  331. "validators": [
  332. {
  333. "pub_key": {
  334. "type": "tendermint/PubKeyEd25519",
  335. "value":"AT/+aaL1eB0477Mud9JMm8Sh8BIvOYlPGC9KkIUmFaE="
  336. },
  337. "power": "10",
  338. "name": ""
  339. }
  340. ],
  341. "app_hash": ""
  342. }`
  343. var testPrivValidatorKey = `{
  344. "address": "A3258DCBF45DCA0DF052981870F2D1441A36D145",
  345. "pub_key": {
  346. "type": "tendermint/PubKeyEd25519",
  347. "value": "AT/+aaL1eB0477Mud9JMm8Sh8BIvOYlPGC9KkIUmFaE="
  348. },
  349. "priv_key": {
  350. "type": "tendermint/PrivKeyEd25519",
  351. "value": "EVkqJO/jIXp3rkASXfh9YnyToYXRXhBr6g9cQVxPFnQBP/5povV4HTjvsy530kybxKHwEi85iU8YL0qQhSYVoQ=="
  352. }
  353. }`
  354. var testPrivValidatorState = `{
  355. "height": "0",
  356. "round": "0",
  357. "step": 0
  358. }`