var ( ErrInvalidLengthRecord = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowRecord = fmt.Errorf("proto: integer overflow") ErrUnexpectedEndOfGroupRecord = fmt.Errorf("proto: unexpected end of group") )
var ( ErrCRCMismatch = errors.New("walpb: crc mismatch") )
func ValidateSnapshotForWrite(e *Snapshot) error
ValidateSnapshotForWrite ensures the Snapshot the newly written snapshot is valid.
There might exist log-entries written by old etcd versions that does not conform to the requirements.
type Record struct { Type int64 `protobuf:"varint,1,opt,name=type" json:"type"` Crc uint32 `protobuf:"varint,2,opt,name=crc" json:"crc"` Data []byte `protobuf:"bytes,3,opt,name=data" json:"data,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*Record) Descriptor() ([]byte, []int)
func (m *Record) Marshal() (dAtA []byte, err error)
func (m *Record) MarshalTo(dAtA []byte) (int, error)
func (m *Record) MarshalToSizedBuffer(dAtA []byte) (int, error)
func (*Record) ProtoMessage()
func (m *Record) Reset()
func (m *Record) Size() (n int)
func (m *Record) String() string
func (m *Record) Unmarshal(dAtA []byte) error
func (rec *Record) Validate(crc uint32) error
func (m *Record) XXX_DiscardUnknown()
func (m *Record) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (m *Record) XXX_Merge(src proto.Message)
func (m *Record) XXX_Size() int
func (m *Record) XXX_Unmarshal(b []byte) error
Keep in sync with raftpb.SnapshotMetadata.
type Snapshot struct { Index uint64 `protobuf:"varint,1,opt,name=index" json:"index"` Term uint64 `protobuf:"varint,2,opt,name=term" json:"term"` // Field populated since >=etcd-3.5.0. ConfState *raftpb.ConfState `protobuf:"bytes,3,opt,name=conf_state,json=confState" json:"conf_state,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*Snapshot) Descriptor() ([]byte, []int)
func (m *Snapshot) Marshal() (dAtA []byte, err error)
func (m *Snapshot) MarshalTo(dAtA []byte) (int, error)
func (m *Snapshot) MarshalToSizedBuffer(dAtA []byte) (int, error)
func (*Snapshot) ProtoMessage()
func (m *Snapshot) Reset()
func (m *Snapshot) Size() (n int)
func (m *Snapshot) String() string
func (m *Snapshot) Unmarshal(dAtA []byte) error
func (m *Snapshot) XXX_DiscardUnknown()
func (m *Snapshot) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (m *Snapshot) XXX_Merge(src proto.Message)
func (m *Snapshot) XXX_Size() int
func (m *Snapshot) XXX_Unmarshal(b []byte) error