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.

232 lines
7.0 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
cs: sync WAL more frequently (#3300) As per #3043, this adds a ticker to sync the WAL every 2s while the WAL is running. * Flush WAL every 2s This adds a ticker that flushes the WAL every 2s while the WAL is running. This is related to #3043. * Fix spelling * Increase timeout to 2mins for slower build environments * Make WAL sync interval configurable * Add TODO to replace testChan with more comprehensive testBus * Remove extraneous debug statement * Remove testChan in favour of using system time As per https://github.com/tendermint/tendermint/pull/3300#discussion_r255886586, this removes the `testChan` WAL member and replaces the approach with a system time-oriented one. In this new approach, we keep track of the system time at which each flush and periodic flush successfully occurred. The naming of the various functions is also updated here to be more consistent with "flushing" as opposed to "sync'ing". * Update naming convention and ensure lock for timestamp update * Add Flush method as part of WAL interface Adds a `Flush` method as part of the WAL interface to enforce the idea that we can manually trigger a WAL flush from outside of the WAL. This is employed in the consensus state management to flush the WAL prior to signing votes/proposals, as per https://github.com/tendermint/tendermint/issues/3043#issuecomment-453853630 * Update CHANGELOG_PENDING * Remove mutex approach and replace with DI The dependency injection approach to dealing with testing concerns could allow similar effects to some kind of "testing bus"-based approach. This commit introduces an example of this, where instead of relying on (potentially fragile) timing of things between the code and the test, we inject code into the function under test that can signal the test through a channel. This allows us to avoid the `time.Sleep()`-based approach previously employed. * Update comment on WAL flushing during vote signing Co-Authored-By: thanethomson <connect@thanethomson.com> * Simplify flush interval definition Co-Authored-By: thanethomson <connect@thanethomson.com> * Expand commentary on WAL disk flushing Co-Authored-By: thanethomson <connect@thanethomson.com> * Add broken test to illustrate WAL sync test problem Removes test-related state (dependency injection code) from the WAL data structure and adds test code to illustrate the problem with using `WALGenerateNBlocks` and `wal.SearchForEndHeight` to test periodic sync'ing. * Fix test error messages * Use WAL group buffer size to check for flush A function is added to `libs/autofile/group.go#Group` in order to return the size of the buffered data (i.e. data that has not yet been flushed to disk). The test now checks that, prior to a `time.Sleep`, the group buffer has data in it. After the `time.Sleep` (during which time the periodic flush should have been called), the buffer should be empty. * Remove config root dir removal from #3291 * Add godoc for NewWAL mentioning periodic sync
5 years ago
cs/replay: execCommitBlock should not read from state.lastValidators (#3067) * execCommitBlock should not read from state.lastValidators * fix height 1 * fix blockchain/reactor_test * fix consensus/mempool_test * fix consensus/reactor_test * fix consensus/replay_test * add CHANGELOG * fix consensus/reactor_test * fix consensus/replay_test * add a test for replay validators change * fix mem_pool test * fix byzantine test * remove a redundant code * reduce validator change blocks to 6 * fix * return peer0 config * seperate testName * seperate testName 1 * seperate testName 2 * seperate app db path * seperate app db path 1 * add a lock before startNet * move the lock to reactor_test * simulate just once * try to find problem * handshake only saveState when app version changed * update gometalinter to 3.0.0 (#3233) in the attempt to fix https://circleci.com/gh/tendermint/tendermint/43165 also code is simplified by running gofmt -s . remove unused vars enable linters we're currently passing remove deprecated linters (cherry picked from commit d47094550315c094512a242445e0dde24b5a03f5) * gofmt code * goimport code * change the bool name to testValidatorsChange * adjust receive kvstore.ProtocolVersion * adjust receive kvstore.ProtocolVersion 1 * adjust receive kvstore.ProtocolVersion 3 * fix merge execution.go * fix merge develop * fix merge develop 1 * fix run cleanupFunc * adjust code according to reviewers' opinion * modify the func name match the convention * simplify simulate a chain containing some validator change txs 1 * test CI error * Merge remote-tracking branch 'upstream/develop' into fixReplay 1 * fix pubsub_test * subscribeUnbuffered vote channel
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
lint: Enable Golint (#4212) * Fix many golint errors * Fix golint errors in the 'lite' package * Don't export Pool.store * Fix typo * Revert unwanted changes * Fix errors in counter package * Fix linter errors in kvstore package * Fix linter error in example package * Fix error in tests package * Fix linter errors in v2 package * Fix linter errors in consensus package * Fix linter errors in evidence package * Fix linter error in fail package * Fix linter errors in query package * Fix linter errors in core package * Fix linter errors in node package * Fix linter errors in mempool package * Fix linter error in conn package * Fix linter errors in pex package * Rename PEXReactor export to Reactor * Fix linter errors in trust package * Fix linter errors in upnp package * Fix linter errors in p2p package * Fix linter errors in proxy package * Fix linter errors in mock_test package * Fix linter error in client_test package * Fix linter errors in coretypes package * Fix linter errors in coregrpc package * Fix linter errors in rpcserver package * Fix linter errors in rpctypes package * Fix linter errors in rpctest package * Fix linter error in json2wal script * Fix linter error in wal2json script * Fix linter errors in kv package * Fix linter error in state package * Fix linter error in grpc_client * Fix linter errors in types package * Fix linter error in version package * Fix remaining errors * Address review comments * Fix broken tests * Reconcile package coregrpc * Fix golangci bot error * Fix new golint errors * Fix broken reference * Enable golint linter * minor changes to bring golint into line * fix failing test * fix pex reactor naming * address PR comments
5 years ago
  1. package consensus
  2. import (
  3. "bufio"
  4. "bytes"
  5. "fmt"
  6. "io"
  7. mrand "math/rand"
  8. "path/filepath"
  9. "testing"
  10. "time"
  11. "github.com/stretchr/testify/require"
  12. db "github.com/tendermint/tm-db"
  13. "github.com/tendermint/tendermint/abci/example/kvstore"
  14. cfg "github.com/tendermint/tendermint/config"
  15. "github.com/tendermint/tendermint/libs/log"
  16. "github.com/tendermint/tendermint/privval"
  17. "github.com/tendermint/tendermint/proxy"
  18. sm "github.com/tendermint/tendermint/state"
  19. "github.com/tendermint/tendermint/store"
  20. "github.com/tendermint/tendermint/types"
  21. )
  22. // WALGenerateNBlocks generates a consensus WAL. It does this by spinning up a
  23. // stripped down version of node (proxy app, event bus, consensus state) with a
  24. // persistent kvstore application and special consensus wal instance
  25. // (byteBufferWAL) and waits until numBlocks are created.
  26. // If the node fails to produce given numBlocks, it returns an error.
  27. func WALGenerateNBlocks(t *testing.T, wr io.Writer, numBlocks int) (err error) {
  28. config := getConfig(t)
  29. app := kvstore.NewPersistentKVStoreApplication(filepath.Join(config.DBDir(), "wal_generator"))
  30. t.Cleanup(func() { require.NoError(t, app.Close()) })
  31. logger := log.TestingLogger().With("wal_generator", "wal_generator")
  32. logger.Info("generating WAL (last height msg excluded)", "numBlocks", numBlocks)
  33. // COPY PASTE FROM node.go WITH A FEW MODIFICATIONS
  34. // NOTE: we can't import node package because of circular dependency.
  35. // NOTE: we don't do handshake so need to set state.Version.Consensus.App directly.
  36. privValidatorKeyFile := config.PrivValidator.KeyFile()
  37. privValidatorStateFile := config.PrivValidator.StateFile()
  38. privValidator, err := privval.LoadOrGenFilePV(privValidatorKeyFile, privValidatorStateFile)
  39. if err != nil {
  40. return err
  41. }
  42. genDoc, err := types.GenesisDocFromFile(config.GenesisFile())
  43. if err != nil {
  44. return fmt.Errorf("failed to read genesis file: %w", err)
  45. }
  46. blockStoreDB := db.NewMemDB()
  47. stateDB := blockStoreDB
  48. stateStore := sm.NewStore(stateDB)
  49. state, err := sm.MakeGenesisState(genDoc)
  50. if err != nil {
  51. return fmt.Errorf("failed to make genesis state: %w", err)
  52. }
  53. state.Version.Consensus.App = kvstore.ProtocolVersion
  54. if err = stateStore.Save(state); err != nil {
  55. t.Error(err)
  56. }
  57. blockStore := store.NewBlockStore(blockStoreDB)
  58. proxyApp := proxy.NewAppConns(proxy.NewLocalClientCreator(app))
  59. proxyApp.SetLogger(logger.With("module", "proxy"))
  60. if err := proxyApp.Start(); err != nil {
  61. return fmt.Errorf("failed to start proxy app connections: %w", err)
  62. }
  63. t.Cleanup(func() {
  64. if err := proxyApp.Stop(); err != nil {
  65. t.Error(err)
  66. }
  67. })
  68. eventBus := types.NewEventBus()
  69. eventBus.SetLogger(logger.With("module", "events"))
  70. if err := eventBus.Start(); err != nil {
  71. return fmt.Errorf("failed to start event bus: %w", err)
  72. }
  73. t.Cleanup(func() {
  74. if err := eventBus.Stop(); err != nil {
  75. t.Error(err)
  76. }
  77. })
  78. mempool := emptyMempool{}
  79. evpool := sm.EmptyEvidencePool{}
  80. blockExec := sm.NewBlockExecutor(stateStore, log.TestingLogger(), proxyApp.Consensus(), mempool, evpool, blockStore)
  81. consensusState := NewState(config.Consensus, state.Copy(), blockExec, blockStore, mempool, evpool)
  82. consensusState.SetLogger(logger)
  83. consensusState.SetEventBus(eventBus)
  84. if privValidator != nil && privValidator != (*privval.FilePV)(nil) {
  85. consensusState.SetPrivValidator(privValidator)
  86. }
  87. // END OF COPY PASTE
  88. // set consensus wal to buffered WAL, which will write all incoming msgs to buffer
  89. numBlocksWritten := make(chan struct{})
  90. wal := newByteBufferWAL(logger, NewWALEncoder(wr), int64(numBlocks), numBlocksWritten)
  91. // see wal.go#103
  92. if err := wal.Write(EndHeightMessage{0}); err != nil {
  93. t.Error(err)
  94. }
  95. consensusState.wal = wal
  96. if err := consensusState.Start(); err != nil {
  97. return fmt.Errorf("failed to start consensus state: %w", err)
  98. }
  99. select {
  100. case <-numBlocksWritten:
  101. if err := consensusState.Stop(); err != nil {
  102. t.Error(err)
  103. }
  104. return nil
  105. case <-time.After(1 * time.Minute):
  106. if err := consensusState.Stop(); err != nil {
  107. t.Error(err)
  108. }
  109. return fmt.Errorf("waited too long for tendermint to produce %d blocks (grep logs for `wal_generator`)", numBlocks)
  110. }
  111. }
  112. // WALWithNBlocks returns a WAL content with numBlocks.
  113. func WALWithNBlocks(t *testing.T, numBlocks int) (data []byte, err error) {
  114. var b bytes.Buffer
  115. wr := bufio.NewWriter(&b)
  116. if err := WALGenerateNBlocks(t, wr, numBlocks); err != nil {
  117. return []byte{}, err
  118. }
  119. wr.Flush()
  120. return b.Bytes(), nil
  121. }
  122. func randPort() int {
  123. // returns between base and base + spread
  124. base, spread := 20000, 20000
  125. // nolint:gosec // G404: Use of weak random number generator
  126. return base + mrand.Intn(spread)
  127. }
  128. func makeAddrs() (string, string, string) {
  129. start := randPort()
  130. return fmt.Sprintf("tcp://127.0.0.1:%d", start),
  131. fmt.Sprintf("tcp://127.0.0.1:%d", start+1),
  132. fmt.Sprintf("tcp://127.0.0.1:%d", start+2)
  133. }
  134. // getConfig returns a config for test cases
  135. func getConfig(t *testing.T) *cfg.Config {
  136. c := cfg.ResetTestRoot(t.Name())
  137. // and we use random ports to run in parallel
  138. tm, rpc, grpc := makeAddrs()
  139. c.P2P.ListenAddress = tm
  140. c.RPC.ListenAddress = rpc
  141. c.RPC.GRPCListenAddress = grpc
  142. return c
  143. }
  144. // byteBufferWAL is a WAL which writes all msgs to a byte buffer. Writing stops
  145. // when the heightToStop is reached. Client will be notified via
  146. // signalWhenStopsTo channel.
  147. type byteBufferWAL struct {
  148. enc *WALEncoder
  149. stopped bool
  150. heightToStop int64
  151. signalWhenStopsTo chan<- struct{}
  152. logger log.Logger
  153. }
  154. // needed for determinism
  155. var fixedTime, _ = time.Parse(time.RFC3339, "2017-01-02T15:04:05Z")
  156. func newByteBufferWAL(logger log.Logger, enc *WALEncoder, nBlocks int64, signalStop chan<- struct{}) *byteBufferWAL {
  157. return &byteBufferWAL{
  158. enc: enc,
  159. heightToStop: nBlocks,
  160. signalWhenStopsTo: signalStop,
  161. logger: logger,
  162. }
  163. }
  164. // Save writes message to the internal buffer except when heightToStop is
  165. // reached, in which case it will signal the caller via signalWhenStopsTo and
  166. // skip writing.
  167. func (w *byteBufferWAL) Write(m WALMessage) error {
  168. if w.stopped {
  169. w.logger.Debug("WAL already stopped. Not writing message", "msg", m)
  170. return nil
  171. }
  172. if endMsg, ok := m.(EndHeightMessage); ok {
  173. w.logger.Debug("WAL write end height message", "height", endMsg.Height, "stopHeight", w.heightToStop)
  174. if endMsg.Height == w.heightToStop {
  175. w.logger.Debug("Stopping WAL at height", "height", endMsg.Height)
  176. w.signalWhenStopsTo <- struct{}{}
  177. w.stopped = true
  178. return nil
  179. }
  180. }
  181. w.logger.Debug("WAL Write Message", "msg", m)
  182. err := w.enc.Encode(&TimedWALMessage{fixedTime, m})
  183. if err != nil {
  184. panic(fmt.Sprintf("failed to encode the msg %v", m))
  185. }
  186. return nil
  187. }
  188. func (w *byteBufferWAL) WriteSync(m WALMessage) error {
  189. return w.Write(m)
  190. }
  191. func (w *byteBufferWAL) FlushAndSync() error { return nil }
  192. func (w *byteBufferWAL) SearchForEndHeight(
  193. height int64,
  194. options *WALSearchOptions) (rd io.ReadCloser, found bool, err error) {
  195. return nil, false, nil
  196. }
  197. func (w *byteBufferWAL) Start() error { return nil }
  198. func (w *byteBufferWAL) Stop() error { return nil }
  199. func (w *byteBufferWAL) Wait() {}