raft

package
v20.10.0+incompatible Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 27, 2020 License: GPL-3.0 Imports: 55 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Address added in v1.2.1

type Address struct {
	RaftId   uint16        `json:"raftId"`
	NodeId   enode.EnodeID `json:"nodeId"`
	Ip       net.IP        `json:"-"`
	P2pPort  enr.TCP       `json:"p2pPort"`
	RaftPort enr.RaftPort  `json:"raftPort"`

	Hostname string `json:"hostname"`

	// Ignore additional fields (for forward compatibility).
	Rest []rlp.RawValue `json:"-" rlp:"tail"`
}

Serializable information about a Peer. Sufficient to build `etcdRaft.Peer` or `enode.Node`. As NodeId is mainly used to derive the `ecdsa.pubkey` to build `enode.Node` it is kept as [64]byte instead of ID [32]byte used by `enode.Node`.

type AddressTxes

type AddressTxes map[common.Address]types.Transactions

type AddressWithoutHostname

type AddressWithoutHostname struct {
	RaftId   uint16
	NodeId   enode.EnodeID
	Ip       net.IP
	P2pPort  enr.TCP
	RaftPort enr.RaftPort
}

type ByRaftId added in v1.2.1

type ByRaftId []Address

func (ByRaftId) Len added in v1.2.1

func (a ByRaftId) Len() int

func (ByRaftId) Less added in v1.2.1

func (a ByRaftId) Less(i, j int) bool

func (ByRaftId) Swap added in v1.2.1

func (a ByRaftId) Swap(i, j int)

type ClusterInfo

type ClusterInfo struct {
	Address
	Role       string `json:"role"`
	NodeActive bool   `json:"nodeActive"`
}

type InvalidRaftOrdering

type InvalidRaftOrdering struct {
	// contains filtered or unexported fields
}

type Peer added in v1.2.1

type Peer struct {
	// contains filtered or unexported fields
}

A peer that we're connected to via both raft's http transport, and ethereum p2p

type ProtocolManager

type ProtocolManager struct {
	// contains filtered or unexported fields
}

func NewProtocolManager

func NewProtocolManager(raftId uint16, raftPort uint16, blockchain *core.BlockChain, mux *event.TypeMux, bootstrapNodes []*enode.Node, joinExisting bool, datadir string, minter *minter, downloader *downloader.Downloader, useDns bool) (*ProtocolManager, error)

func (*ProtocolManager) FetchRaftId

func (pm *ProtocolManager) FetchRaftId(enodeId string) (uint16, error)

Returns the raft id for a given enodeId

func (*ProtocolManager) IsIDRemoved

func (pm *ProtocolManager) IsIDRemoved(id uint64) bool

func (*ProtocolManager) LeaderAddress

func (pm *ProtocolManager) LeaderAddress() (*Address, error)

The Address for the current leader, or an error if no leader is elected.

func (*ProtocolManager) NodeInfo

func (pm *ProtocolManager) NodeInfo() *RaftNodeInfo

func (*ProtocolManager) Process

func (pm *ProtocolManager) Process(ctx context.Context, m raftpb.Message) error

func (*ProtocolManager) PromoteToPeer

func (pm *ProtocolManager) PromoteToPeer(raftId uint16) (bool, error)

func (*ProtocolManager) ProposeNewPeer added in v1.2.1

func (pm *ProtocolManager) ProposeNewPeer(enodeURL string, isLearner bool) (uint16, error)

func (*ProtocolManager) ProposePeerRemoval added in v1.2.1

func (pm *ProtocolManager) ProposePeerRemoval(raftId uint16) error

func (*ProtocolManager) ReportSnapshot

func (pm *ProtocolManager) ReportSnapshot(id uint64, status etcdRaft.SnapshotStatus)

func (*ProtocolManager) ReportUnreachable

func (pm *ProtocolManager) ReportUnreachable(id uint64)

func (*ProtocolManager) Start

func (pm *ProtocolManager) Start(p2pServer *p2p.Server)

func (*ProtocolManager) Stop

func (pm *ProtocolManager) Stop()

func (*ProtocolManager) WriteMsg

func (pm *ProtocolManager) WriteMsg(msg p2p.Msg) error

type PublicRaftAPI

type PublicRaftAPI struct {
	// contains filtered or unexported fields
}

func NewPublicRaftAPI

func NewPublicRaftAPI(raftService *RaftService) *PublicRaftAPI

func (*PublicRaftAPI) AddLearner

func (s *PublicRaftAPI) AddLearner(enodeId string) (uint16, error)

func (*PublicRaftAPI) AddPeer added in v1.2.1

func (s *PublicRaftAPI) AddPeer(enodeId string) (uint16, error)

func (*PublicRaftAPI) Cluster

func (s *PublicRaftAPI) Cluster() ([]ClusterInfo, error)

func (*PublicRaftAPI) GetRaftId

func (s *PublicRaftAPI) GetRaftId(enodeId string) (uint16, error)

func (*PublicRaftAPI) Leader

func (s *PublicRaftAPI) Leader() (string, error)

func (*PublicRaftAPI) PromoteToPeer

func (s *PublicRaftAPI) PromoteToPeer(raftId uint16) (bool, error)

func (*PublicRaftAPI) RemovePeer added in v1.2.1

func (s *PublicRaftAPI) RemovePeer(raftId uint16) error

func (*PublicRaftAPI) Role

func (s *PublicRaftAPI) Role() string

type RaftNodeInfo

type RaftNodeInfo struct {
	ClusterSize    int        `json:"clusterSize"`
	Role           string     `json:"role"`
	Address        *Address   `json:"address"`
	PeerAddresses  []*Address `json:"peerAddresses"`
	RemovedPeerIds []uint16   `json:"removedPeerIds"`
	AppliedIndex   uint64     `json:"appliedIndex"`
	SnapshotIndex  uint64     `json:"snapshotIndex"`
}

type RaftService

type RaftService struct {
	// contains filtered or unexported fields
}

func New

func New(ctx *node.ServiceContext, chainConfig *params.ChainConfig, raftId, raftPort uint16, joinExisting bool, blockTime time.Duration, e *eth.Ethereum, startPeers []*enode.Node, datadir string, useDns bool) (*RaftService, error)

func (*RaftService) APIs

func (service *RaftService) APIs() []rpc.API

func (*RaftService) AccountManager

func (service *RaftService) AccountManager() *accounts.Manager

func (*RaftService) BlockChain

func (service *RaftService) BlockChain() *core.BlockChain

func (*RaftService) ChainDb

func (service *RaftService) ChainDb() ethdb.Database

func (*RaftService) DappDb

func (service *RaftService) DappDb() ethdb.Database

func (*RaftService) EventMux

func (service *RaftService) EventMux() *event.TypeMux

func (*RaftService) Protocols

func (service *RaftService) Protocols() []p2p.Protocol

func (*RaftService) Start

func (service *RaftService) Start(p2pServer *p2p.Server) error

Start implements node.Service, starting the background data propagation thread of the protocol.

func (*RaftService) Stop

func (service *RaftService) Stop() error

Stop implements node.Service, stopping the background data propagation thread of the protocol.

func (*RaftService) TxPool

func (service *RaftService) TxPool() *core.TxPool

type SnapshotWithHostnames

type SnapshotWithHostnames struct {
	Addresses      []Address
	RemovedRaftIds []uint16
	HeadBlockHash  common.Hash
}

func (*SnapshotWithHostnames) EncodeRLP

func (snapshot *SnapshotWithHostnames) EncodeRLP(w io.Writer) error

type SnapshotWithoutHostnames

type SnapshotWithoutHostnames struct {
	Addresses      []AddressWithoutHostname
	RemovedRaftIds []uint16 // Raft IDs for permanently removed peers
	HeadBlockHash  common.Hash
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL