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.
31 lines
1.0 KiB
31 lines
1.0 KiB
package consensus
|
|
|
|
import "time"
|
|
|
|
// timeout constant
|
|
const (
|
|
receiveTimeout time.Duration = 5 * time.Second
|
|
// The duration of viewChangeTimeout; when a view change is initialized with v+1
|
|
// timeout will be equal to viewChangeDuration; if view change failed and start v+2
|
|
// timeout will be 2*viewChangeDuration; timeout of view change v+n is n*viewChangeDuration
|
|
viewChangeDuration time.Duration = 30 * time.Second
|
|
|
|
// timeout duration for announce/prepare/commit
|
|
phaseDuration time.Duration = 90 * time.Second
|
|
bootstrapDuration time.Duration = 90 * time.Second
|
|
maxLogSize uint32 = 1000
|
|
)
|
|
|
|
// TimeoutType is the type of timeout in view change protocol
|
|
type TimeoutType int
|
|
|
|
const (
|
|
timeoutConsensus TimeoutType = iota
|
|
timeoutViewChange
|
|
timeoutBootstrap
|
|
)
|
|
|
|
// NIL is the m2 type message, which suppose to be nil/empty, however
|
|
// we cannot sign on empty message, instead we sign on some default "nil" message
|
|
// to indicate there is no prepared message received when we start view change
|
|
var NIL = []byte{0x01}
|
|
|