mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00

This commit makes the rarely used `raftpb.Message.Snapshot` field nullable. In doing so, it reduces the memory size of a `raftpb.Message` message from 264 bytes to 128 bytes — a 52% reduction in size. While this commit does not change the protobuf encoding, it does change how that encoding is used. `(gogoproto.nullable) = false` instruct the generated proto marshaling logic to always encode a value for the field, even if that value is empty. `(gogoproto.nullable) = true` instructs the generated proto marshaling logic to omit an encoded value for the field if the field is nil. This raises compatibility concerns in both directions. Messages encoded by new binary versions without a `Snapshot` field will be decoded as an empty field by old binary versions. In other words, old binary versions can't tell the difference. However, messages encoded by old binary versions with an empty Snapshot field will be decoded as a non-nil, empty field by new binary versions. As a result, new binary versions need to be prepared to handle such messages. While Message.Snapshot is not intentionally part of the external interface of this library, it was possible for users of the library to access it and manipulate it. As such, this change may be considered a breaking change. Signed-off-by: Nathan VanBenschoten <nvanbenschoten@gmail.com>
88 lines
2.5 KiB
Go
88 lines
2.5 KiB
Go
// Copyright 2015 The etcd Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package etcdserver
|
|
|
|
import (
|
|
"io"
|
|
|
|
"go.etcd.io/etcd/raft/v3/raftpb"
|
|
"go.etcd.io/etcd/server/v3/etcdserver/api/snap"
|
|
"go.etcd.io/etcd/server/v3/storage/backend"
|
|
|
|
humanize "github.com/dustin/go-humanize"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
// createMergedSnapshotMessage creates a snapshot message that contains: raft status (term, conf),
|
|
// a snapshot of v2 store inside raft.Snapshot as []byte, a snapshot of v3 KV in the top level message
|
|
// as ReadCloser.
|
|
func (s *EtcdServer) createMergedSnapshotMessage(m raftpb.Message, snapt, snapi uint64, confState raftpb.ConfState) snap.Message {
|
|
lg := s.Logger()
|
|
// get a snapshot of v2 store as []byte
|
|
clone := s.v2store.Clone()
|
|
d, err := clone.SaveNoCopy()
|
|
if err != nil {
|
|
lg.Panic("failed to save v2 store data", zap.Error(err))
|
|
}
|
|
|
|
// commit kv to write metadata(for example: consistent index).
|
|
s.KV().Commit()
|
|
dbsnap := s.be.Snapshot()
|
|
// get a snapshot of v3 KV as readCloser
|
|
rc := newSnapshotReaderCloser(lg, dbsnap)
|
|
|
|
// put the []byte snapshot of store into raft snapshot and return the merged snapshot with
|
|
// KV readCloser snapshot.
|
|
snapshot := raftpb.Snapshot{
|
|
Metadata: raftpb.SnapshotMetadata{
|
|
Index: snapi,
|
|
Term: snapt,
|
|
ConfState: confState,
|
|
},
|
|
Data: d,
|
|
}
|
|
m.Snapshot = &snapshot
|
|
|
|
verifySnapshotIndex(snapshot, s.consistIndex.ConsistentIndex())
|
|
|
|
return *snap.NewMessage(m, rc, dbsnap.Size())
|
|
}
|
|
|
|
func newSnapshotReaderCloser(lg *zap.Logger, snapshot backend.Snapshot) io.ReadCloser {
|
|
pr, pw := io.Pipe()
|
|
go func() {
|
|
n, err := snapshot.WriteTo(pw)
|
|
if err == nil {
|
|
lg.Info(
|
|
"sent database snapshot to writer",
|
|
zap.Int64("bytes", n),
|
|
zap.String("size", humanize.Bytes(uint64(n))),
|
|
)
|
|
} else {
|
|
lg.Warn(
|
|
"failed to send database snapshot to writer",
|
|
zap.String("size", humanize.Bytes(uint64(n))),
|
|
zap.Error(err),
|
|
)
|
|
}
|
|
pw.CloseWithError(err)
|
|
err = snapshot.Close()
|
|
if err != nil {
|
|
lg.Panic("failed to close database snapshot", zap.Error(err))
|
|
}
|
|
}()
|
|
return pr
|
|
}
|