Documentation ¶
Overview ¶
Package snap stores raft nodes' states with snapshots.
Index ¶
Constants ¶
This section is empty.
Variables ¶
Functions ¶
Types ¶
type Message ¶
type Message struct { raftpb.Message ReadCloser io.ReadCloser }
Message is a struct that contains a raft Message and a ReadCloser. The type of raft message MUST be MsgSnap, which contains the raft meta-data and an additional data []byte field that contains the snapshot of the actual state machine. Message contains the ReadCloser field for handling large snapshot. This avoid copying the entire snapshot into a byte array, which consumes a lot of memory.
User of Message should close the ReadCloser after sending it.
type Snapshotter ¶
type Snapshotter struct {
// contains filtered or unexported fields
}
func New ¶
func New(dir string) *Snapshotter
func (*Snapshotter) DBFilePath ¶
func (s *Snapshotter) DBFilePath(id uint64) (string, error)
DBFilePath returns the file path for the snapshot of the database with given id. If the snapshot does not exist, it returns error.
func (*Snapshotter) SaveDBFrom ¶
func (s *Snapshotter) SaveDBFrom(r io.Reader, id uint64) error
SaveDBFrom saves snapshot of the database from the given reader. It guarantees the save operation is atomic.