diff --git a/conn/node.go b/conn/node.go index d18218f4464..60736182ed7 100644 --- a/conn/node.go +++ b/conn/node.go @@ -388,11 +388,8 @@ func (n *Node) streamMessages(to uint64, stream *Stream) { } lastLog = time.Now() } - if i >= 1e3 { - if time.Now().After(deadline) { - return - } - i = 0 + if i >= 1e3 || time.Now().After(deadline) { + return } } } @@ -406,12 +403,18 @@ func (n *Node) doSendMessage(to uint64, msgCh chan []byte) error { if err != nil { return err } + c := pb.NewRaftClient(pool.Get()) - mc, err := c.RaftMessage(context.Background()) + ctx, span := otrace.StartSpan(context.Background(), + fmt.Sprintf("RaftMessage-%d-to-%d", n.Id, to)) + defer span.End() + + mc, err := c.RaftMessage(ctx) if err != nil { return err } + var packets, lastPackets uint64 slurp := func(batch *pb.RaftBatch) { for { if len(batch.Payload.Data) > messageBatchSoftLimit { @@ -420,12 +423,17 @@ func (n *Node) doSendMessage(to uint64, msgCh chan []byte) error { select { case data := <-msgCh: batch.Payload.Data = append(batch.Payload.Data, data...) + packets++ default: return } } } - ctx := mc.Context() + + ctx = mc.Context() + ticker := time.NewTicker(3 * time.Minute) + defer ticker.Stop() + for { select { case data := <-msgCh: @@ -433,8 +441,12 @@ func (n *Node) doSendMessage(to uint64, msgCh chan []byte) error { Context: n.RaftContext, Payload: &api.Payload{Data: data}, } + packets++ slurp(batch) // Pick up more entries from msgCh, if present. + span.Annotatef(nil, "[Packets: %d] Sending data of length: %d.", + packets, len(batch.Payload.Data)) if err := mc.Send(batch); err != nil { + span.Annotatef(nil, "Error while mc.Send: %v", err) switch { case strings.Contains(err.Error(), "TransientFailure"): glog.Warningf("Reporting node: %d addr: %s as unreachable.", to, pool.Addr) @@ -446,6 +458,13 @@ func (n *Node) doSendMessage(to uint64, msgCh chan []byte) error { // RAFT would automatically retry. return err } + case <-ticker.C: + if lastPackets == packets { + span.Annotatef(nil, + "No activity for a while [Packets == %d]. Closing connection.", packets) + return mc.CloseSend() + } + lastPackets = packets case <-ctx.Done(): return ctx.Err() } @@ -592,15 +611,13 @@ func (n *Node) WaitLinearizableRead(ctx context.Context) error { func (n *Node) RunReadIndexLoop(closer *y.Closer, readStateCh <-chan raft.ReadState) { defer closer.Done() - readIndex := func() (uint64, error) { - // Read Request can get rejected then we would wait idefinitely on the channel + readIndex := func(activeRctx []byte) (uint64, error) { + // Read Request can get rejected then we would wait indefinitely on the channel // so have a timeout. - ctx, cancel := context.WithTimeout(context.Background(), time.Second) + ctx, cancel := context.WithTimeout(context.Background(), 2*time.Second) defer cancel() - var activeRctx [8]byte - x.Check2(n.Rand.Read(activeRctx[:])) - if err := n.Raft().ReadIndex(ctx, activeRctx[:]); err != nil { + if err := n.Raft().ReadIndex(ctx, activeRctx); err != nil { glog.Errorf("Error while trying to call ReadIndex: %v\n", err) return 0, err } @@ -610,8 +627,8 @@ func (n *Node) RunReadIndexLoop(closer *y.Closer, readStateCh <-chan raft.ReadSt case <-closer.HasBeenClosed(): return 0, errors.New("Closer has been called") case rs := <-readStateCh: - if !bytes.Equal(activeRctx[:], rs.RequestCtx) { - glog.V(1).Infof("Read state: %x != requested %x", rs.RequestCtx, activeRctx[:]) + if !bytes.Equal(activeRctx, rs.RequestCtx) { + glog.V(3).Infof("Read state: %x != requested %x", rs.RequestCtx, activeRctx[:]) goto again } return rs.Index, nil @@ -641,8 +658,15 @@ func (n *Node) RunReadIndexLoop(closer *y.Closer, readStateCh <-chan raft.ReadSt break slurpLoop } } + // Create one activeRctx slice for the read index, even if we have to call readIndex + // repeatedly. That way, we can process the requests as soon as we encounter the first + // activeRctx. This is better than flooding readIndex with a new activeRctx on each + // call, causing more unique traffic and further delays in request processing. + activeRctx := make([]byte, 8) + x.Check2(n.Rand.Read(activeRctx)) + glog.V(3).Infof("Request readctx: %#x", activeRctx) for { - index, err := readIndex() + index, err := readIndex(activeRctx) if err == errInternalRetry { continue } diff --git a/conn/raft_server.go b/conn/raft_server.go index 719b35e645b..ac394f9aa11 100644 --- a/conn/raft_server.go +++ b/conn/raft_server.go @@ -28,6 +28,7 @@ import ( "github.com/dgraph-io/dgraph/x" "github.com/golang/glog" "go.etcd.io/etcd/raft/raftpb" + otrace "go.opencensus.io/trace" ) type sendmsg struct { @@ -192,30 +193,19 @@ func (w *RaftServer) RaftMessage(server pb.Raft_RaftMessageServer) error { if ctx.Err() != nil { return ctx.Err() } + span := otrace.FromContext(ctx) n := w.GetNode() if n == nil || n.Raft() == nil { return ErrNoNode } + span.Annotatef(nil, "Stream server is node %#x", n.Id) + + var rc *pb.RaftContext raft := w.GetNode().Raft() - for loop := 1; ; loop++ { - batch, err := server.Recv() - if err != nil { - return err - } - if loop%1e6 == 0 { - glog.V(2).Infof("%d messages received by %#x", loop, n.Id) - } - if loop == 1 { - rc := batch.GetContext() - if rc != nil { - n.Connect(rc.Id, rc.Addr) - } - } - if batch.Payload == nil { - continue - } - data := batch.Payload.Data + step := func(data []byte) error { + ctx, cancel := context.WithTimeout(ctx, time.Minute) + defer cancel() for idx := 0; idx < len(data); { x.AssertTruef(len(data[idx:]) >= 4, @@ -233,11 +223,40 @@ func (w *RaftServer) RaftMessage(server pb.Raft_RaftMessageServer) error { x.Check(err) } // This should be done in order, and not via a goroutine. + // Step can block forever. See: https://github.com/etcd-io/etcd/issues/10585 + // So, add a context with timeout to allow it to get out of the blockage. if err := raft.Step(ctx, msg); err != nil { - return err + glog.Warningf("Error while raft.Step from %#x: %v. Closing RaftMessage stream.", + rc.GetId(), err) + return x.Errorf("Error while raft.Step from %#x: %v", rc.GetId(), err) } idx += sz } + return nil + } + + for loop := 1; ; loop++ { + batch, err := server.Recv() + if err != nil { + return err + } + if loop%1e6 == 0 { + glog.V(2).Infof("%d messages received by %#x from %#x", loop, n.Id, rc.GetId()) + } + if loop == 1 { + rc = batch.GetContext() + span.Annotatef(nil, "Stream from %#x", rc.GetId()) + if rc != nil { + n.Connect(rc.Id, rc.Addr) + } + } + if batch.Payload == nil { + continue + } + data := batch.Payload.Data + if err := step(data); err != nil { + return err + } } } diff --git a/dgraph/cmd/zero/assign.go b/dgraph/cmd/zero/assign.go index 7e0d66784d3..c4c691c06d6 100644 --- a/dgraph/cmd/zero/assign.go +++ b/dgraph/cmd/zero/assign.go @@ -19,6 +19,7 @@ package zero import ( "errors" + otrace "go.opencensus.io/trace" "golang.org/x/net/context" "github.com/dgraph-io/dgraph/protos/pb" @@ -159,30 +160,45 @@ func (s *Server) AssignUids(ctx context.Context, num *pb.Num) (*pb.AssignedIds, if ctx.Err() != nil { return &emptyAssignedIds, ctx.Err() } + ctx, span := otrace.StartSpan(ctx, "Zero.AssignUids") + defer span.End() reply := &emptyAssignedIds - c := make(chan error, 1) - go func() { + lease := func() error { var err error if s.Node.AmLeader() { + span.Annotatef(nil, "Zero leader leasing %d ids", num.GetVal()) reply, err = s.lease(ctx, num, false) - c <- err - return + return err } + span.Annotate(nil, "Not Zero leader") + // I'm not the leader and this request was forwarded to me by a peer, who thought I'm the + // leader. + if num.Forwarded { + return x.Errorf("Invalid Zero received AssignUids request forward. Please retry") + } + // This is an original request. Forward it to the leader. pl := s.Leader(0) if pl == nil { - err = x.Errorf("No healthy connection found to Leader of group zero") - } else { - zc := pb.NewZeroClient(pl.Get()) - reply, err = zc.AssignUids(ctx, num) + return x.Errorf("No healthy connection found to Leader of group zero") } - c <- err + span.Annotatef(nil, "Sending request to %v", pl.Addr) + zc := pb.NewZeroClient(pl.Get()) + num.Forwarded = true + reply, err = zc.AssignUids(ctx, num) + return err + } + + c := make(chan error, 1) + go func() { + c <- lease() }() select { case <-ctx.Done(): return reply, ctx.Err() case err := <-c: + span.Annotatef(nil, "Error while leasing %+v: %v", num, err) return reply, err } } diff --git a/dgraph/cmd/zero/raft.go b/dgraph/cmd/zero/raft.go index 2da1c21086d..169e1497ec0 100644 --- a/dgraph/cmd/zero/raft.go +++ b/dgraph/cmd/zero/raft.go @@ -531,7 +531,7 @@ func (n *node) checkQuorum(closer *y.Closer) { defer ticker.Stop() quorum := func() { - // Make this timeout 3x the timeout on RunReadIndexLoop. + // Make this timeout 1.5x the timeout on RunReadIndexLoop. ctx, cancel := context.WithTimeout(context.Background(), 3*time.Second) defer cancel() @@ -603,7 +603,7 @@ func (n *node) Run() { // snapshot can cause select loop to block while deleting entries, so run // it in goroutine - readStateCh := make(chan raft.ReadState, 10) + readStateCh := make(chan raft.ReadState, 100) closer := y.NewCloser(4) defer func() { closer.SignalAndWait() @@ -626,11 +626,36 @@ func (n *node) Run() { case <-ticker.C: n.Raft().Tick() case rd := <-n.Raft().Ready(): + start := time.Now() + _, span := otrace.StartSpan(n.ctx, "Zero.RunLoop", + otrace.WithSampler(otrace.ProbabilitySampler(0.001))) for _, rs := range rd.ReadStates { + // No need to use select-case-default on pushing to readStateCh. It is typically + // empty. readStateCh <- rs } + span.Annotatef(nil, "Pushed %d readstates", len(rd.ReadStates)) + if rd.SoftState != nil { + if rd.RaftState == raft.StateLeader && !leader { + glog.Infoln("I've become the leader, updating leases.") + n.server.updateLeases() + } + leader = rd.RaftState == raft.StateLeader + // Oracle stream would close the stream once it steps down as leader + // predicate move would cancel any in progress move on stepping down. + n.triggerLeaderChange() + } + if leader { + // Leader can send messages in parallel with writing to disk. + for _, msg := range rd.Messages { + n.Send(msg) + } + } n.SaveToStorage(rd.HardState, rd.Entries, rd.Snapshot) + span.Annotatef(nil, "Saved to storage") + diskDur := time.Since(start) + if !raft.IsEmptySnap(rd.Snapshot) { var state pb.MembershipState x.Check(state.Unmarshal(rd.Snapshot.Data)) @@ -655,22 +680,26 @@ func (n *node) Run() { } n.Applied.Done(entry.Index) } + span.Annotatef(nil, "Applied %d CommittedEntries", len(rd.CommittedEntries)) - if rd.SoftState != nil { - if rd.RaftState == raft.StateLeader && !leader { - glog.Infoln("I've become the leader, updating leases.") - n.server.updateLeases() + if !leader { + // Followers should send messages later. + for _, msg := range rd.Messages { + n.Send(msg) } - leader = rd.RaftState == raft.StateLeader - // Oracle stream would close the stream once it steps down as leader - // predicate move would cancel any in progress move on stepping down. - n.triggerLeaderChange() } + span.Annotate(nil, "Sent messages") - for _, msg := range rd.Messages { - n.Send(msg) - } n.Raft().Advance() + span.Annotate(nil, "Advanced Raft") + span.End() + if time.Since(start) > 100*time.Millisecond { + glog.Warningf( + "Raft.Ready took too long to process: %v. Most likely due to slow disk: %v."+ + " Num entries: %d. MustSync: %v", + time.Since(start).Round(time.Millisecond), diskDur.Round(time.Millisecond), + len(rd.Entries), rd.MustSync) + } } } } diff --git a/protos/pb.proto b/protos/pb.proto index db470cefa53..58846dcfc71 100644 --- a/protos/pb.proto +++ b/protos/pb.proto @@ -439,6 +439,7 @@ service Worker { message Num { uint64 val = 1; bool read_only = 2; + bool forwarded = 3; // True if this request was forwarded by a peer. } message AssignedIds { diff --git a/protos/pb/pb.pb.go b/protos/pb/pb.pb.go index a6c021d8bc4..272879a010c 100644 --- a/protos/pb/pb.pb.go +++ b/protos/pb/pb.pb.go @@ -3,21 +3,18 @@ package pb -import proto "github.com/golang/protobuf/proto" -import fmt "fmt" -import math "math" -import pb "github.com/dgraph-io/badger/pb" -import api "github.com/dgraph-io/dgo/protos/api" - import ( - context "golang.org/x/net/context" + context "context" + encoding_binary "encoding/binary" + fmt "fmt" + pb "github.com/dgraph-io/badger/pb" + api "github.com/dgraph-io/dgo/protos/api" + proto "github.com/golang/protobuf/proto" grpc "google.golang.org/grpc" + io "io" + math "math" ) -import encoding_binary "encoding/binary" - -import io "io" - // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf @@ -40,6 +37,7 @@ var DirectedEdge_Op_name = map[int32]string{ 0: "SET", 1: "DEL", } + var DirectedEdge_Op_value = map[string]int32{ "SET": 0, "DEL": 1, @@ -48,8 +46,9 @@ var DirectedEdge_Op_value = map[string]int32{ func (x DirectedEdge_Op) String() string { return proto.EnumName(DirectedEdge_Op_name, int32(x)) } + func (DirectedEdge_Op) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{17, 0} + return fileDescriptor_f80abaa17e25ccc8, []int{17, 0} } type Posting_ValType int32 @@ -81,6 +80,7 @@ var Posting_ValType_name = map[int32]string{ 9: "STRING", 10: "OBJECT", } + var Posting_ValType_value = map[string]int32{ "DEFAULT": 0, "BINARY": 1, @@ -98,8 +98,9 @@ var Posting_ValType_value = map[string]int32{ func (x Posting_ValType) String() string { return proto.EnumName(Posting_ValType_name, int32(x)) } + func (Posting_ValType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{22, 0} + return fileDescriptor_f80abaa17e25ccc8, []int{22, 0} } type Posting_PostingType int32 @@ -115,6 +116,7 @@ var Posting_PostingType_name = map[int32]string{ 1: "VALUE", 2: "VALUE_LANG", } + var Posting_PostingType_value = map[string]int32{ "REF": 0, "VALUE": 1, @@ -124,8 +126,9 @@ var Posting_PostingType_value = map[string]int32{ func (x Posting_PostingType) String() string { return proto.EnumName(Posting_PostingType_name, int32(x)) } + func (Posting_PostingType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{22, 1} + return fileDescriptor_f80abaa17e25ccc8, []int{22, 1} } type SchemaUpdate_Directive int32 @@ -143,6 +146,7 @@ var SchemaUpdate_Directive_name = map[int32]string{ 2: "REVERSE", 3: "DELETE", } + var SchemaUpdate_Directive_value = map[string]int32{ "NONE": 0, "INDEX": 1, @@ -153,12 +157,13 @@ var SchemaUpdate_Directive_value = map[string]int32{ func (x SchemaUpdate_Directive) String() string { return proto.EnumName(SchemaUpdate_Directive_name, int32(x)) } + func (SchemaUpdate_Directive) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{34, 0} + return fileDescriptor_f80abaa17e25ccc8, []int{34, 0} } type List struct { - Uids []uint64 `protobuf:"fixed64,1,rep,packed,name=uids" json:"uids,omitempty"` + Uids []uint64 `protobuf:"fixed64,1,rep,packed,name=uids,proto3" json:"uids,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -168,7 +173,7 @@ func (m *List) Reset() { *m = List{} } func (m *List) String() string { return proto.CompactTextString(m) } func (*List) ProtoMessage() {} func (*List) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{0} + return fileDescriptor_f80abaa17e25ccc8, []int{0} } func (m *List) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -185,8 +190,8 @@ func (m *List) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return b[:n], nil } } -func (dst *List) XXX_Merge(src proto.Message) { - xxx_messageInfo_List.Merge(dst, src) +func (m *List) XXX_Merge(src proto.Message) { + xxx_messageInfo_List.Merge(m, src) } func (m *List) XXX_Size() int { return m.Size() @@ -216,7 +221,7 @@ func (m *TaskValue) Reset() { *m = TaskValue{} } func (m *TaskValue) String() string { return proto.CompactTextString(m) } func (*TaskValue) ProtoMessage() {} func (*TaskValue) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{1} + return fileDescriptor_f80abaa17e25ccc8, []int{1} } func (m *TaskValue) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -233,8 +238,8 @@ func (m *TaskValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return b[:n], nil } } -func (dst *TaskValue) XXX_Merge(src proto.Message) { - xxx_messageInfo_TaskValue.Merge(dst, src) +func (m *TaskValue) XXX_Merge(src proto.Message) { + xxx_messageInfo_TaskValue.Merge(m, src) } func (m *TaskValue) XXX_Size() int { return m.Size() @@ -261,7 +266,7 @@ func (m *TaskValue) GetValType() Posting_ValType { type SrcFunction struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` - Args []string `protobuf:"bytes,3,rep,name=args" json:"args,omitempty"` + Args []string `protobuf:"bytes,3,rep,name=args,proto3" json:"args,omitempty"` IsCount bool `protobuf:"varint,4,opt,name=isCount,proto3" json:"isCount,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -272,7 +277,7 @@ func (m *SrcFunction) Reset() { *m = SrcFunction{} } func (m *SrcFunction) String() string { return proto.CompactTextString(m) } func (*SrcFunction) ProtoMessage() {} func (*SrcFunction) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{2} + return fileDescriptor_f80abaa17e25ccc8, []int{2} } func (m *SrcFunction) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -289,8 +294,8 @@ func (m *SrcFunction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) return b[:n], nil } } -func (dst *SrcFunction) XXX_Merge(src proto.Message) { - xxx_messageInfo_SrcFunction.Merge(dst, src) +func (m *SrcFunction) XXX_Merge(src proto.Message) { + xxx_messageInfo_SrcFunction.Merge(m, src) } func (m *SrcFunction) XXX_Size() int { return m.Size() @@ -324,16 +329,16 @@ func (m *SrcFunction) GetIsCount() bool { type Query struct { Attr string `protobuf:"bytes,1,opt,name=attr,proto3" json:"attr,omitempty"` - Langs []string `protobuf:"bytes,2,rep,name=langs" json:"langs,omitempty"` + Langs []string `protobuf:"bytes,2,rep,name=langs,proto3" json:"langs,omitempty"` AfterUid uint64 `protobuf:"fixed64,3,opt,name=after_uid,json=afterUid,proto3" json:"after_uid,omitempty"` DoCount bool `protobuf:"varint,4,opt,name=do_count,json=doCount,proto3" json:"do_count,omitempty"` // Exactly one of uids and terms is populated. - UidList *List `protobuf:"bytes,5,opt,name=uid_list,json=uidList" json:"uid_list,omitempty"` + UidList *List `protobuf:"bytes,5,opt,name=uid_list,json=uidList,proto3" json:"uid_list,omitempty"` // Function to generate or filter UIDs. - SrcFunc *SrcFunction `protobuf:"bytes,6,opt,name=src_func,json=srcFunc" json:"src_func,omitempty"` + SrcFunc *SrcFunction `protobuf:"bytes,6,opt,name=src_func,json=srcFunc,proto3" json:"src_func,omitempty"` Reverse bool `protobuf:"varint,7,opt,name=reverse,proto3" json:"reverse,omitempty"` - FacetParam *FacetParams `protobuf:"bytes,8,opt,name=facet_param,json=facetParam" json:"facet_param,omitempty"` - FacetsFilter *FilterTree `protobuf:"bytes,9,opt,name=facets_filter,json=facetsFilter" json:"facets_filter,omitempty"` + FacetParam *FacetParams `protobuf:"bytes,8,opt,name=facet_param,json=facetParam,proto3" json:"facet_param,omitempty"` + FacetsFilter *FilterTree `protobuf:"bytes,9,opt,name=facets_filter,json=facetsFilter,proto3" json:"facets_filter,omitempty"` ExpandAll bool `protobuf:"varint,10,opt,name=expand_all,json=expandAll,proto3" json:"expand_all,omitempty"` ReadTs uint64 `protobuf:"varint,13,opt,name=read_ts,json=readTs,proto3" json:"read_ts,omitempty"` Cache int32 `protobuf:"varint,14,opt,name=cache,proto3" json:"cache,omitempty"` @@ -346,7 +351,7 @@ func (m *Query) Reset() { *m = Query{} } func (m *Query) String() string { return proto.CompactTextString(m) } func (*Query) ProtoMessage() {} func (*Query) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{3} + return fileDescriptor_f80abaa17e25ccc8, []int{3} } func (m *Query) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -363,8 +368,8 @@ func (m *Query) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return b[:n], nil } } -func (dst *Query) XXX_Merge(src proto.Message) { - xxx_messageInfo_Query.Merge(dst, src) +func (m *Query) XXX_Merge(src proto.Message) { + xxx_messageInfo_Query.Merge(m, src) } func (m *Query) XXX_Size() int { return m.Size() @@ -460,7 +465,7 @@ func (m *Query) GetCache() int32 { } type ValueList struct { - Values []*TaskValue `protobuf:"bytes,1,rep,name=values" json:"values,omitempty"` + Values []*TaskValue `protobuf:"bytes,1,rep,name=values,proto3" json:"values,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -470,7 +475,7 @@ func (m *ValueList) Reset() { *m = ValueList{} } func (m *ValueList) String() string { return proto.CompactTextString(m) } func (*ValueList) ProtoMessage() {} func (*ValueList) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{4} + return fileDescriptor_f80abaa17e25ccc8, []int{4} } func (m *ValueList) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -487,8 +492,8 @@ func (m *ValueList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return b[:n], nil } } -func (dst *ValueList) XXX_Merge(src proto.Message) { - xxx_messageInfo_ValueList.Merge(dst, src) +func (m *ValueList) XXX_Merge(src proto.Message) { + xxx_messageInfo_ValueList.Merge(m, src) } func (m *ValueList) XXX_Size() int { return m.Size() @@ -507,7 +512,7 @@ func (m *ValueList) GetValues() []*TaskValue { } type LangList struct { - Lang []string `protobuf:"bytes,1,rep,name=lang" json:"lang,omitempty"` + Lang []string `protobuf:"bytes,1,rep,name=lang,proto3" json:"lang,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -517,7 +522,7 @@ func (m *LangList) Reset() { *m = LangList{} } func (m *LangList) String() string { return proto.CompactTextString(m) } func (*LangList) ProtoMessage() {} func (*LangList) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{5} + return fileDescriptor_f80abaa17e25ccc8, []int{5} } func (m *LangList) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -534,8 +539,8 @@ func (m *LangList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return b[:n], nil } } -func (dst *LangList) XXX_Merge(src proto.Message) { - xxx_messageInfo_LangList.Merge(dst, src) +func (m *LangList) XXX_Merge(src proto.Message) { + xxx_messageInfo_LangList.Merge(m, src) } func (m *LangList) XXX_Size() int { return m.Size() @@ -554,12 +559,12 @@ func (m *LangList) GetLang() []string { } type Result struct { - UidMatrix []*List `protobuf:"bytes,1,rep,name=uid_matrix,json=uidMatrix" json:"uid_matrix,omitempty"` - ValueMatrix []*ValueList `protobuf:"bytes,2,rep,name=value_matrix,json=valueMatrix" json:"value_matrix,omitempty"` - Counts []uint32 `protobuf:"varint,3,rep,packed,name=counts" json:"counts,omitempty"` + UidMatrix []*List `protobuf:"bytes,1,rep,name=uid_matrix,json=uidMatrix,proto3" json:"uid_matrix,omitempty"` + ValueMatrix []*ValueList `protobuf:"bytes,2,rep,name=value_matrix,json=valueMatrix,proto3" json:"value_matrix,omitempty"` + Counts []uint32 `protobuf:"varint,3,rep,packed,name=counts,proto3" json:"counts,omitempty"` IntersectDest bool `protobuf:"varint,4,opt,name=intersect_dest,json=intersectDest,proto3" json:"intersect_dest,omitempty"` - FacetMatrix []*FacetsList `protobuf:"bytes,5,rep,name=facet_matrix,json=facetMatrix" json:"facet_matrix,omitempty"` - LangMatrix []*LangList `protobuf:"bytes,6,rep,name=lang_matrix,json=langMatrix" json:"lang_matrix,omitempty"` + FacetMatrix []*FacetsList `protobuf:"bytes,5,rep,name=facet_matrix,json=facetMatrix,proto3" json:"facet_matrix,omitempty"` + LangMatrix []*LangList `protobuf:"bytes,6,rep,name=lang_matrix,json=langMatrix,proto3" json:"lang_matrix,omitempty"` List bool `protobuf:"varint,7,opt,name=list,proto3" json:"list,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -570,7 +575,7 @@ func (m *Result) Reset() { *m = Result{} } func (m *Result) String() string { return proto.CompactTextString(m) } func (*Result) ProtoMessage() {} func (*Result) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{6} + return fileDescriptor_f80abaa17e25ccc8, []int{6} } func (m *Result) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -587,8 +592,8 @@ func (m *Result) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return b[:n], nil } } -func (dst *Result) XXX_Merge(src proto.Message) { - xxx_messageInfo_Result.Merge(dst, src) +func (m *Result) XXX_Merge(src proto.Message) { + xxx_messageInfo_Result.Merge(m, src) } func (m *Result) XXX_Size() int { return m.Size() @@ -651,7 +656,7 @@ func (m *Result) GetList() bool { type Order struct { Attr string `protobuf:"bytes,1,opt,name=attr,proto3" json:"attr,omitempty"` Desc bool `protobuf:"varint,2,opt,name=desc,proto3" json:"desc,omitempty"` - Langs []string `protobuf:"bytes,3,rep,name=langs" json:"langs,omitempty"` + Langs []string `protobuf:"bytes,3,rep,name=langs,proto3" json:"langs,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -661,7 +666,7 @@ func (m *Order) Reset() { *m = Order{} } func (m *Order) String() string { return proto.CompactTextString(m) } func (*Order) ProtoMessage() {} func (*Order) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{7} + return fileDescriptor_f80abaa17e25ccc8, []int{7} } func (m *Order) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -678,8 +683,8 @@ func (m *Order) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return b[:n], nil } } -func (dst *Order) XXX_Merge(src proto.Message) { - xxx_messageInfo_Order.Merge(dst, src) +func (m *Order) XXX_Merge(src proto.Message) { + xxx_messageInfo_Order.Merge(m, src) } func (m *Order) XXX_Size() int { return m.Size() @@ -712,8 +717,8 @@ func (m *Order) GetLangs() []string { } type SortMessage struct { - Order []*Order `protobuf:"bytes,1,rep,name=order" json:"order,omitempty"` - UidMatrix []*List `protobuf:"bytes,2,rep,name=uid_matrix,json=uidMatrix" json:"uid_matrix,omitempty"` + Order []*Order `protobuf:"bytes,1,rep,name=order,proto3" json:"order,omitempty"` + UidMatrix []*List `protobuf:"bytes,2,rep,name=uid_matrix,json=uidMatrix,proto3" json:"uid_matrix,omitempty"` Count int32 `protobuf:"varint,3,opt,name=count,proto3" json:"count,omitempty"` Offset int32 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset,omitempty"` ReadTs uint64 `protobuf:"varint,13,opt,name=read_ts,json=readTs,proto3" json:"read_ts,omitempty"` @@ -726,7 +731,7 @@ func (m *SortMessage) Reset() { *m = SortMessage{} } func (m *SortMessage) String() string { return proto.CompactTextString(m) } func (*SortMessage) ProtoMessage() {} func (*SortMessage) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{8} + return fileDescriptor_f80abaa17e25ccc8, []int{8} } func (m *SortMessage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -743,8 +748,8 @@ func (m *SortMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) return b[:n], nil } } -func (dst *SortMessage) XXX_Merge(src proto.Message) { - xxx_messageInfo_SortMessage.Merge(dst, src) +func (m *SortMessage) XXX_Merge(src proto.Message) { + xxx_messageInfo_SortMessage.Merge(m, src) } func (m *SortMessage) XXX_Size() int { return m.Size() @@ -791,7 +796,7 @@ func (m *SortMessage) GetReadTs() uint64 { } type SortResult struct { - UidMatrix []*List `protobuf:"bytes,1,rep,name=uid_matrix,json=uidMatrix" json:"uid_matrix,omitempty"` + UidMatrix []*List `protobuf:"bytes,1,rep,name=uid_matrix,json=uidMatrix,proto3" json:"uid_matrix,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -801,7 +806,7 @@ func (m *SortResult) Reset() { *m = SortResult{} } func (m *SortResult) String() string { return proto.CompactTextString(m) } func (*SortResult) ProtoMessage() {} func (*SortResult) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{9} + return fileDescriptor_f80abaa17e25ccc8, []int{9} } func (m *SortResult) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -818,8 +823,8 @@ func (m *SortResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return b[:n], nil } } -func (dst *SortResult) XXX_Merge(src proto.Message) { - xxx_messageInfo_SortResult.Merge(dst, src) +func (m *SortResult) XXX_Merge(src proto.Message) { + xxx_messageInfo_SortResult.Merge(m, src) } func (m *SortResult) XXX_Size() int { return m.Size() @@ -851,7 +856,7 @@ func (m *RaftContext) Reset() { *m = RaftContext{} } func (m *RaftContext) String() string { return proto.CompactTextString(m) } func (*RaftContext) ProtoMessage() {} func (*RaftContext) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{10} + return fileDescriptor_f80abaa17e25ccc8, []int{10} } func (m *RaftContext) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -868,8 +873,8 @@ func (m *RaftContext) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) return b[:n], nil } } -func (dst *RaftContext) XXX_Merge(src proto.Message) { - xxx_messageInfo_RaftContext.Merge(dst, src) +func (m *RaftContext) XXX_Merge(src proto.Message) { + xxx_messageInfo_RaftContext.Merge(m, src) } func (m *RaftContext) XXX_Size() int { return m.Size() @@ -928,7 +933,7 @@ func (m *Member) Reset() { *m = Member{} } func (m *Member) String() string { return proto.CompactTextString(m) } func (*Member) ProtoMessage() {} func (*Member) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{11} + return fileDescriptor_f80abaa17e25ccc8, []int{11} } func (m *Member) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -945,8 +950,8 @@ func (m *Member) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return b[:n], nil } } -func (dst *Member) XXX_Merge(src proto.Message) { - xxx_messageInfo_Member.Merge(dst, src) +func (m *Member) XXX_Merge(src proto.Message) { + xxx_messageInfo_Member.Merge(m, src) } func (m *Member) XXX_Size() int { return m.Size() @@ -1007,8 +1012,8 @@ func (m *Member) GetClusterInfoOnly() bool { } type Group struct { - Members map[uint64]*Member `protobuf:"bytes,1,rep,name=members" json:"members,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` - Tablets map[string]*Tablet `protobuf:"bytes,2,rep,name=tablets" json:"tablets,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` + Members map[uint64]*Member `protobuf:"bytes,1,rep,name=members,proto3" json:"members,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + Tablets map[string]*Tablet `protobuf:"bytes,2,rep,name=tablets,proto3" json:"tablets,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` SnapshotTs uint64 `protobuf:"varint,3,opt,name=snapshot_ts,json=snapshotTs,proto3" json:"snapshot_ts,omitempty"` Checksum uint64 `protobuf:"varint,4,opt,name=checksum,proto3" json:"checksum,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -1020,7 +1025,7 @@ func (m *Group) Reset() { *m = Group{} } func (m *Group) String() string { return proto.CompactTextString(m) } func (*Group) ProtoMessage() {} func (*Group) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{12} + return fileDescriptor_f80abaa17e25ccc8, []int{12} } func (m *Group) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1037,8 +1042,8 @@ func (m *Group) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return b[:n], nil } } -func (dst *Group) XXX_Merge(src proto.Message) { - xxx_messageInfo_Group.Merge(dst, src) +func (m *Group) XXX_Merge(src proto.Message) { + xxx_messageInfo_Group.Merge(m, src) } func (m *Group) XXX_Size() int { return m.Size() @@ -1078,13 +1083,13 @@ func (m *Group) GetChecksum() uint64 { } type ZeroProposal struct { - SnapshotTs map[uint32]uint64 `protobuf:"bytes,1,rep,name=snapshot_ts,json=snapshotTs" json:"snapshot_ts,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` - Member *Member `protobuf:"bytes,2,opt,name=member" json:"member,omitempty"` - Tablet *Tablet `protobuf:"bytes,3,opt,name=tablet" json:"tablet,omitempty"` + SnapshotTs map[uint32]uint64 `protobuf:"bytes,1,rep,name=snapshot_ts,json=snapshotTs,proto3" json:"snapshot_ts,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` + Member *Member `protobuf:"bytes,2,opt,name=member,proto3" json:"member,omitempty"` + Tablet *Tablet `protobuf:"bytes,3,opt,name=tablet,proto3" json:"tablet,omitempty"` MaxLeaseId uint64 `protobuf:"varint,4,opt,name=maxLeaseId,proto3" json:"maxLeaseId,omitempty"` MaxTxnTs uint64 `protobuf:"varint,5,opt,name=maxTxnTs,proto3" json:"maxTxnTs,omitempty"` MaxRaftId uint64 `protobuf:"varint,6,opt,name=maxRaftId,proto3" json:"maxRaftId,omitempty"` - Txn *api.TxnContext `protobuf:"bytes,7,opt,name=txn" json:"txn,omitempty"` + Txn *api.TxnContext `protobuf:"bytes,7,opt,name=txn,proto3" json:"txn,omitempty"` Key string `protobuf:"bytes,8,opt,name=key,proto3" json:"key,omitempty"` Cid string `protobuf:"bytes,9,opt,name=cid,proto3" json:"cid,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -1096,7 +1101,7 @@ func (m *ZeroProposal) Reset() { *m = ZeroProposal{} } func (m *ZeroProposal) String() string { return proto.CompactTextString(m) } func (*ZeroProposal) ProtoMessage() {} func (*ZeroProposal) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{13} + return fileDescriptor_f80abaa17e25ccc8, []int{13} } func (m *ZeroProposal) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1113,8 +1118,8 @@ func (m *ZeroProposal) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) return b[:n], nil } } -func (dst *ZeroProposal) XXX_Merge(src proto.Message) { - xxx_messageInfo_ZeroProposal.Merge(dst, src) +func (m *ZeroProposal) XXX_Merge(src proto.Message) { + xxx_messageInfo_ZeroProposal.Merge(m, src) } func (m *ZeroProposal) XXX_Size() int { return m.Size() @@ -1193,12 +1198,12 @@ func (m *ZeroProposal) GetCid() string { // the provided lastUpdate. type MembershipState struct { Counter uint64 `protobuf:"varint,1,opt,name=counter,proto3" json:"counter,omitempty"` - Groups map[uint32]*Group `protobuf:"bytes,2,rep,name=groups" json:"groups,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` - Zeros map[uint64]*Member `protobuf:"bytes,3,rep,name=zeros" json:"zeros,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value"` + Groups map[uint32]*Group `protobuf:"bytes,2,rep,name=groups,proto3" json:"groups,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + Zeros map[uint64]*Member `protobuf:"bytes,3,rep,name=zeros,proto3" json:"zeros,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` MaxLeaseId uint64 `protobuf:"varint,4,opt,name=maxLeaseId,proto3" json:"maxLeaseId,omitempty"` MaxTxnTs uint64 `protobuf:"varint,5,opt,name=maxTxnTs,proto3" json:"maxTxnTs,omitempty"` MaxRaftId uint64 `protobuf:"varint,6,opt,name=maxRaftId,proto3" json:"maxRaftId,omitempty"` - Removed []*Member `protobuf:"bytes,7,rep,name=removed" json:"removed,omitempty"` + Removed []*Member `protobuf:"bytes,7,rep,name=removed,proto3" json:"removed,omitempty"` Cid string `protobuf:"bytes,8,opt,name=cid,proto3" json:"cid,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -1209,7 +1214,7 @@ func (m *MembershipState) Reset() { *m = MembershipState{} } func (m *MembershipState) String() string { return proto.CompactTextString(m) } func (*MembershipState) ProtoMessage() {} func (*MembershipState) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{14} + return fileDescriptor_f80abaa17e25ccc8, []int{14} } func (m *MembershipState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1226,8 +1231,8 @@ func (m *MembershipState) XXX_Marshal(b []byte, deterministic bool) ([]byte, err return b[:n], nil } } -func (dst *MembershipState) XXX_Merge(src proto.Message) { - xxx_messageInfo_MembershipState.Merge(dst, src) +func (m *MembershipState) XXX_Merge(src proto.Message) { + xxx_messageInfo_MembershipState.Merge(m, src) } func (m *MembershipState) XXX_Size() int { return m.Size() @@ -1295,8 +1300,8 @@ func (m *MembershipState) GetCid() string { } type ConnectionState struct { - Member *Member `protobuf:"bytes,1,opt,name=member" json:"member,omitempty"` - State *MembershipState `protobuf:"bytes,2,opt,name=state" json:"state,omitempty"` + Member *Member `protobuf:"bytes,1,opt,name=member,proto3" json:"member,omitempty"` + State *MembershipState `protobuf:"bytes,2,opt,name=state,proto3" json:"state,omitempty"` MaxPending uint64 `protobuf:"varint,3,opt,name=max_pending,json=maxPending,proto3" json:"max_pending,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -1307,7 +1312,7 @@ func (m *ConnectionState) Reset() { *m = ConnectionState{} } func (m *ConnectionState) String() string { return proto.CompactTextString(m) } func (*ConnectionState) ProtoMessage() {} func (*ConnectionState) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{15} + return fileDescriptor_f80abaa17e25ccc8, []int{15} } func (m *ConnectionState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1324,8 +1329,8 @@ func (m *ConnectionState) XXX_Marshal(b []byte, deterministic bool) ([]byte, err return b[:n], nil } } -func (dst *ConnectionState) XXX_Merge(src proto.Message) { - xxx_messageInfo_ConnectionState.Merge(dst, src) +func (m *ConnectionState) XXX_Merge(src proto.Message) { + xxx_messageInfo_ConnectionState.Merge(m, src) } func (m *ConnectionState) XXX_Size() int { return m.Size() @@ -1373,7 +1378,7 @@ func (m *Tablet) Reset() { *m = Tablet{} } func (m *Tablet) String() string { return proto.CompactTextString(m) } func (*Tablet) ProtoMessage() {} func (*Tablet) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{16} + return fileDescriptor_f80abaa17e25ccc8, []int{16} } func (m *Tablet) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1390,8 +1395,8 @@ func (m *Tablet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return b[:n], nil } } -func (dst *Tablet) XXX_Merge(src proto.Message) { - xxx_messageInfo_Tablet.Merge(dst, src) +func (m *Tablet) XXX_Merge(src proto.Message) { + xxx_messageInfo_Tablet.Merge(m, src) } func (m *Tablet) XXX_Size() int { return m.Size() @@ -1453,7 +1458,7 @@ type DirectedEdge struct { Label string `protobuf:"bytes,6,opt,name=label,proto3" json:"label,omitempty"` Lang string `protobuf:"bytes,7,opt,name=lang,proto3" json:"lang,omitempty"` Op DirectedEdge_Op `protobuf:"varint,8,opt,name=op,proto3,enum=pb.DirectedEdge_Op" json:"op,omitempty"` - Facets []*api.Facet `protobuf:"bytes,9,rep,name=facets" json:"facets,omitempty"` + Facets []*api.Facet `protobuf:"bytes,9,rep,name=facets,proto3" json:"facets,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -1463,7 +1468,7 @@ func (m *DirectedEdge) Reset() { *m = DirectedEdge{} } func (m *DirectedEdge) String() string { return proto.CompactTextString(m) } func (*DirectedEdge) ProtoMessage() {} func (*DirectedEdge) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{17} + return fileDescriptor_f80abaa17e25ccc8, []int{17} } func (m *DirectedEdge) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1480,8 +1485,8 @@ func (m *DirectedEdge) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) return b[:n], nil } } -func (dst *DirectedEdge) XXX_Merge(src proto.Message) { - xxx_messageInfo_DirectedEdge.Merge(dst, src) +func (m *DirectedEdge) XXX_Merge(src proto.Message) { + xxx_messageInfo_DirectedEdge.Merge(m, src) } func (m *DirectedEdge) XXX_Size() int { return m.Size() @@ -1558,11 +1563,11 @@ func (m *DirectedEdge) GetFacets() []*api.Facet { type Mutations struct { GroupId uint32 `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"` StartTs uint64 `protobuf:"varint,2,opt,name=start_ts,json=startTs,proto3" json:"start_ts,omitempty"` - Edges []*DirectedEdge `protobuf:"bytes,3,rep,name=edges" json:"edges,omitempty"` - Schema []*SchemaUpdate `protobuf:"bytes,4,rep,name=schema" json:"schema,omitempty"` + Edges []*DirectedEdge `protobuf:"bytes,3,rep,name=edges,proto3" json:"edges,omitempty"` + Schema []*SchemaUpdate `protobuf:"bytes,4,rep,name=schema,proto3" json:"schema,omitempty"` DropAll bool `protobuf:"varint,5,opt,name=drop_all,json=dropAll,proto3" json:"drop_all,omitempty"` IgnoreIndexConflict bool `protobuf:"varint,6,opt,name=ignore_index_conflict,json=ignoreIndexConflict,proto3" json:"ignore_index_conflict,omitempty"` - Types []*TypeUpdate `protobuf:"bytes,7,rep,name=types" json:"types,omitempty"` + Types []*TypeUpdate `protobuf:"bytes,7,rep,name=types,proto3" json:"types,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -1572,7 +1577,7 @@ func (m *Mutations) Reset() { *m = Mutations{} } func (m *Mutations) String() string { return proto.CompactTextString(m) } func (*Mutations) ProtoMessage() {} func (*Mutations) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{18} + return fileDescriptor_f80abaa17e25ccc8, []int{18} } func (m *Mutations) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1589,8 +1594,8 @@ func (m *Mutations) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return b[:n], nil } } -func (dst *Mutations) XXX_Merge(src proto.Message) { - xxx_messageInfo_Mutations.Merge(dst, src) +func (m *Mutations) XXX_Merge(src proto.Message) { + xxx_messageInfo_Mutations.Merge(m, src) } func (m *Mutations) XXX_Size() int { return m.Size() @@ -1651,7 +1656,7 @@ func (m *Mutations) GetTypes() []*TypeUpdate { } type Snapshot struct { - Context *RaftContext `protobuf:"bytes,1,opt,name=context" json:"context,omitempty"` + Context *RaftContext `protobuf:"bytes,1,opt,name=context,proto3" json:"context,omitempty"` Index uint64 `protobuf:"varint,2,opt,name=index,proto3" json:"index,omitempty"` ReadTs uint64 `protobuf:"varint,3,opt,name=read_ts,json=readTs,proto3" json:"read_ts,omitempty"` // done is used to indicate that snapshot stream was a success. @@ -1665,7 +1670,7 @@ func (m *Snapshot) Reset() { *m = Snapshot{} } func (m *Snapshot) String() string { return proto.CompactTextString(m) } func (*Snapshot) ProtoMessage() {} func (*Snapshot) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{19} + return fileDescriptor_f80abaa17e25ccc8, []int{19} } func (m *Snapshot) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1682,8 +1687,8 @@ func (m *Snapshot) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return b[:n], nil } } -func (dst *Snapshot) XXX_Merge(src proto.Message) { - xxx_messageInfo_Snapshot.Merge(dst, src) +func (m *Snapshot) XXX_Merge(src proto.Message) { + xxx_messageInfo_Snapshot.Merge(m, src) } func (m *Snapshot) XXX_Size() int { return m.Size() @@ -1723,13 +1728,13 @@ func (m *Snapshot) GetDone() bool { } type Proposal struct { - Mutations *Mutations `protobuf:"bytes,2,opt,name=mutations" json:"mutations,omitempty"` - Kv []*pb.KV `protobuf:"bytes,4,rep,name=kv" json:"kv,omitempty"` - State *MembershipState `protobuf:"bytes,5,opt,name=state" json:"state,omitempty"` + Mutations *Mutations `protobuf:"bytes,2,opt,name=mutations,proto3" json:"mutations,omitempty"` + Kv []*pb.KV `protobuf:"bytes,4,rep,name=kv,proto3" json:"kv,omitempty"` + State *MembershipState `protobuf:"bytes,5,opt,name=state,proto3" json:"state,omitempty"` CleanPredicate string `protobuf:"bytes,6,opt,name=clean_predicate,json=cleanPredicate,proto3" json:"clean_predicate,omitempty"` Key string `protobuf:"bytes,7,opt,name=key,proto3" json:"key,omitempty"` - Delta *OracleDelta `protobuf:"bytes,8,opt,name=delta" json:"delta,omitempty"` - Snapshot *Snapshot `protobuf:"bytes,9,opt,name=snapshot" json:"snapshot,omitempty"` + Delta *OracleDelta `protobuf:"bytes,8,opt,name=delta,proto3" json:"delta,omitempty"` + Snapshot *Snapshot `protobuf:"bytes,9,opt,name=snapshot,proto3" json:"snapshot,omitempty"` Index uint64 `protobuf:"varint,10,opt,name=index,proto3" json:"index,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -1740,7 +1745,7 @@ func (m *Proposal) Reset() { *m = Proposal{} } func (m *Proposal) String() string { return proto.CompactTextString(m) } func (*Proposal) ProtoMessage() {} func (*Proposal) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{20} + return fileDescriptor_f80abaa17e25ccc8, []int{20} } func (m *Proposal) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1757,8 +1762,8 @@ func (m *Proposal) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return b[:n], nil } } -func (dst *Proposal) XXX_Merge(src proto.Message) { - xxx_messageInfo_Proposal.Merge(dst, src) +func (m *Proposal) XXX_Merge(src proto.Message) { + xxx_messageInfo_Proposal.Merge(m, src) } func (m *Proposal) XXX_Size() int { return m.Size() @@ -1826,7 +1831,7 @@ func (m *Proposal) GetIndex() uint64 { } type KVS struct { - Kv []*pb.KV `protobuf:"bytes,1,rep,name=kv" json:"kv,omitempty"` + Kv []*pb.KV `protobuf:"bytes,1,rep,name=kv,proto3" json:"kv,omitempty"` // done used to indicate if the stream of KVS is over. Done bool `protobuf:"varint,2,opt,name=done,proto3" json:"done,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -1838,7 +1843,7 @@ func (m *KVS) Reset() { *m = KVS{} } func (m *KVS) String() string { return proto.CompactTextString(m) } func (*KVS) ProtoMessage() {} func (*KVS) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{21} + return fileDescriptor_f80abaa17e25ccc8, []int{21} } func (m *KVS) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1855,8 +1860,8 @@ func (m *KVS) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return b[:n], nil } } -func (dst *KVS) XXX_Merge(src proto.Message) { - xxx_messageInfo_KVS.Merge(dst, src) +func (m *KVS) XXX_Merge(src proto.Message) { + xxx_messageInfo_KVS.Merge(m, src) } func (m *KVS) XXX_Size() int { return m.Size() @@ -1889,7 +1894,7 @@ type Posting struct { PostingType Posting_PostingType `protobuf:"varint,4,opt,name=posting_type,json=postingType,proto3,enum=pb.Posting_PostingType" json:"posting_type,omitempty"` LangTag []byte `protobuf:"bytes,5,opt,name=lang_tag,json=langTag,proto3" json:"lang_tag,omitempty"` Label string `protobuf:"bytes,6,opt,name=label,proto3" json:"label,omitempty"` - Facets []*api.Facet `protobuf:"bytes,9,rep,name=facets" json:"facets,omitempty"` + Facets []*api.Facet `protobuf:"bytes,9,rep,name=facets,proto3" json:"facets,omitempty"` // TODO: op is only used temporarily. See if we can remove it from here. Op uint32 `protobuf:"varint,12,opt,name=op,proto3" json:"op,omitempty"` StartTs uint64 `protobuf:"varint,13,opt,name=start_ts,json=startTs,proto3" json:"start_ts,omitempty"` @@ -1903,7 +1908,7 @@ func (m *Posting) Reset() { *m = Posting{} } func (m *Posting) String() string { return proto.CompactTextString(m) } func (*Posting) ProtoMessage() {} func (*Posting) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{22} + return fileDescriptor_f80abaa17e25ccc8, []int{22} } func (m *Posting) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1920,8 +1925,8 @@ func (m *Posting) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return b[:n], nil } } -func (dst *Posting) XXX_Merge(src proto.Message) { - xxx_messageInfo_Posting.Merge(dst, src) +func (m *Posting) XXX_Merge(src proto.Message) { + xxx_messageInfo_Posting.Merge(m, src) } func (m *Posting) XXX_Size() int { return m.Size() @@ -2017,7 +2022,7 @@ func (m *UidBlock) Reset() { *m = UidBlock{} } func (m *UidBlock) String() string { return proto.CompactTextString(m) } func (*UidBlock) ProtoMessage() {} func (*UidBlock) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{23} + return fileDescriptor_f80abaa17e25ccc8, []int{23} } func (m *UidBlock) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2034,8 +2039,8 @@ func (m *UidBlock) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return b[:n], nil } } -func (dst *UidBlock) XXX_Merge(src proto.Message) { - xxx_messageInfo_UidBlock.Merge(dst, src) +func (m *UidBlock) XXX_Merge(src proto.Message) { + xxx_messageInfo_UidBlock.Merge(m, src) } func (m *UidBlock) XXX_Size() int { return m.Size() @@ -2062,7 +2067,7 @@ func (m *UidBlock) GetDeltas() []byte { type UidPack struct { BlockSize uint32 `protobuf:"varint,1,opt,name=block_size,json=blockSize,proto3" json:"block_size,omitempty"` - Blocks []*UidBlock `protobuf:"bytes,2,rep,name=blocks" json:"blocks,omitempty"` + Blocks []*UidBlock `protobuf:"bytes,2,rep,name=blocks,proto3" json:"blocks,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -2072,7 +2077,7 @@ func (m *UidPack) Reset() { *m = UidPack{} } func (m *UidPack) String() string { return proto.CompactTextString(m) } func (*UidPack) ProtoMessage() {} func (*UidPack) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{24} + return fileDescriptor_f80abaa17e25ccc8, []int{24} } func (m *UidPack) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2089,8 +2094,8 @@ func (m *UidPack) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return b[:n], nil } } -func (dst *UidPack) XXX_Merge(src proto.Message) { - xxx_messageInfo_UidPack.Merge(dst, src) +func (m *UidPack) XXX_Merge(src proto.Message) { + xxx_messageInfo_UidPack.Merge(m, src) } func (m *UidPack) XXX_Size() int { return m.Size() @@ -2116,8 +2121,8 @@ func (m *UidPack) GetBlocks() []*UidBlock { } type PostingList struct { - Pack *UidPack `protobuf:"bytes,1,opt,name=pack" json:"pack,omitempty"` - Postings []*Posting `protobuf:"bytes,2,rep,name=postings" json:"postings,omitempty"` + Pack *UidPack `protobuf:"bytes,1,opt,name=pack,proto3" json:"pack,omitempty"` + Postings []*Posting `protobuf:"bytes,2,rep,name=postings,proto3" json:"postings,omitempty"` CommitTs uint64 `protobuf:"varint,3,opt,name=commit_ts,json=commitTs,proto3" json:"commit_ts,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -2128,7 +2133,7 @@ func (m *PostingList) Reset() { *m = PostingList{} } func (m *PostingList) String() string { return proto.CompactTextString(m) } func (*PostingList) ProtoMessage() {} func (*PostingList) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{25} + return fileDescriptor_f80abaa17e25ccc8, []int{25} } func (m *PostingList) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2145,8 +2150,8 @@ func (m *PostingList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) return b[:n], nil } } -func (dst *PostingList) XXX_Merge(src proto.Message) { - xxx_messageInfo_PostingList.Merge(dst, src) +func (m *PostingList) XXX_Merge(src proto.Message) { + xxx_messageInfo_PostingList.Merge(m, src) } func (m *PostingList) XXX_Size() int { return m.Size() @@ -2190,7 +2195,7 @@ func (m *FacetParam) Reset() { *m = FacetParam{} } func (m *FacetParam) String() string { return proto.CompactTextString(m) } func (*FacetParam) ProtoMessage() {} func (*FacetParam) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{26} + return fileDescriptor_f80abaa17e25ccc8, []int{26} } func (m *FacetParam) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2207,8 +2212,8 @@ func (m *FacetParam) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return b[:n], nil } } -func (dst *FacetParam) XXX_Merge(src proto.Message) { - xxx_messageInfo_FacetParam.Merge(dst, src) +func (m *FacetParam) XXX_Merge(src proto.Message) { + xxx_messageInfo_FacetParam.Merge(m, src) } func (m *FacetParam) XXX_Size() int { return m.Size() @@ -2235,7 +2240,7 @@ func (m *FacetParam) GetAlias() string { type FacetParams struct { AllKeys bool `protobuf:"varint,1,opt,name=all_keys,json=allKeys,proto3" json:"all_keys,omitempty"` - Param []*FacetParam `protobuf:"bytes,2,rep,name=param" json:"param,omitempty"` + Param []*FacetParam `protobuf:"bytes,2,rep,name=param,proto3" json:"param,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -2245,7 +2250,7 @@ func (m *FacetParams) Reset() { *m = FacetParams{} } func (m *FacetParams) String() string { return proto.CompactTextString(m) } func (*FacetParams) ProtoMessage() {} func (*FacetParams) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{27} + return fileDescriptor_f80abaa17e25ccc8, []int{27} } func (m *FacetParams) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2262,8 +2267,8 @@ func (m *FacetParams) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) return b[:n], nil } } -func (dst *FacetParams) XXX_Merge(src proto.Message) { - xxx_messageInfo_FacetParams.Merge(dst, src) +func (m *FacetParams) XXX_Merge(src proto.Message) { + xxx_messageInfo_FacetParams.Merge(m, src) } func (m *FacetParams) XXX_Size() int { return m.Size() @@ -2289,7 +2294,7 @@ func (m *FacetParams) GetParam() []*FacetParam { } type Facets struct { - Facets []*api.Facet `protobuf:"bytes,1,rep,name=facets" json:"facets,omitempty"` + Facets []*api.Facet `protobuf:"bytes,1,rep,name=facets,proto3" json:"facets,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -2299,7 +2304,7 @@ func (m *Facets) Reset() { *m = Facets{} } func (m *Facets) String() string { return proto.CompactTextString(m) } func (*Facets) ProtoMessage() {} func (*Facets) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{28} + return fileDescriptor_f80abaa17e25ccc8, []int{28} } func (m *Facets) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2316,8 +2321,8 @@ func (m *Facets) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return b[:n], nil } } -func (dst *Facets) XXX_Merge(src proto.Message) { - xxx_messageInfo_Facets.Merge(dst, src) +func (m *Facets) XXX_Merge(src proto.Message) { + xxx_messageInfo_Facets.Merge(m, src) } func (m *Facets) XXX_Size() int { return m.Size() @@ -2336,7 +2341,7 @@ func (m *Facets) GetFacets() []*api.Facet { } type FacetsList struct { - FacetsList []*Facets `protobuf:"bytes,1,rep,name=facets_list,json=facetsList" json:"facets_list,omitempty"` + FacetsList []*Facets `protobuf:"bytes,1,rep,name=facets_list,json=facetsList,proto3" json:"facets_list,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -2346,7 +2351,7 @@ func (m *FacetsList) Reset() { *m = FacetsList{} } func (m *FacetsList) String() string { return proto.CompactTextString(m) } func (*FacetsList) ProtoMessage() {} func (*FacetsList) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{29} + return fileDescriptor_f80abaa17e25ccc8, []int{29} } func (m *FacetsList) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2363,8 +2368,8 @@ func (m *FacetsList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return b[:n], nil } } -func (dst *FacetsList) XXX_Merge(src proto.Message) { - xxx_messageInfo_FacetsList.Merge(dst, src) +func (m *FacetsList) XXX_Merge(src proto.Message) { + xxx_messageInfo_FacetsList.Merge(m, src) } func (m *FacetsList) XXX_Size() int { return m.Size() @@ -2385,7 +2390,7 @@ func (m *FacetsList) GetFacetsList() []*Facets { type Function struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"` - Args []string `protobuf:"bytes,3,rep,name=args" json:"args,omitempty"` + Args []string `protobuf:"bytes,3,rep,name=args,proto3" json:"args,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -2395,7 +2400,7 @@ func (m *Function) Reset() { *m = Function{} } func (m *Function) String() string { return proto.CompactTextString(m) } func (*Function) ProtoMessage() {} func (*Function) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{30} + return fileDescriptor_f80abaa17e25ccc8, []int{30} } func (m *Function) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2412,8 +2417,8 @@ func (m *Function) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return b[:n], nil } } -func (dst *Function) XXX_Merge(src proto.Message) { - xxx_messageInfo_Function.Merge(dst, src) +func (m *Function) XXX_Merge(src proto.Message) { + xxx_messageInfo_Function.Merge(m, src) } func (m *Function) XXX_Size() int { return m.Size() @@ -2448,8 +2453,8 @@ func (m *Function) GetArgs() []string { // Op and Children are internal nodes and Func on leaves. type FilterTree struct { Op string `protobuf:"bytes,1,opt,name=op,proto3" json:"op,omitempty"` - Children []*FilterTree `protobuf:"bytes,2,rep,name=children" json:"children,omitempty"` - Func *Function `protobuf:"bytes,3,opt,name=func" json:"func,omitempty"` + Children []*FilterTree `protobuf:"bytes,2,rep,name=children,proto3" json:"children,omitempty"` + Func *Function `protobuf:"bytes,3,opt,name=func,proto3" json:"func,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -2459,7 +2464,7 @@ func (m *FilterTree) Reset() { *m = FilterTree{} } func (m *FilterTree) String() string { return proto.CompactTextString(m) } func (*FilterTree) ProtoMessage() {} func (*FilterTree) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{31} + return fileDescriptor_f80abaa17e25ccc8, []int{31} } func (m *FilterTree) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2476,8 +2481,8 @@ func (m *FilterTree) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return b[:n], nil } } -func (dst *FilterTree) XXX_Merge(src proto.Message) { - xxx_messageInfo_FilterTree.Merge(dst, src) +func (m *FilterTree) XXX_Merge(src proto.Message) { + xxx_messageInfo_FilterTree.Merge(m, src) } func (m *FilterTree) XXX_Size() int { return m.Size() @@ -2512,10 +2517,10 @@ func (m *FilterTree) GetFunc() *Function { // Schema messages. type SchemaRequest struct { GroupId uint32 `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"` - Predicates []string `protobuf:"bytes,2,rep,name=predicates" json:"predicates,omitempty"` + Predicates []string `protobuf:"bytes,2,rep,name=predicates,proto3" json:"predicates,omitempty"` // fields can be on of type, index, reverse or tokenizer - Fields []string `protobuf:"bytes,3,rep,name=fields" json:"fields,omitempty"` - Types []string `protobuf:"bytes,4,rep,name=types" json:"types,omitempty"` + Fields []string `protobuf:"bytes,3,rep,name=fields,proto3" json:"fields,omitempty"` + Types []string `protobuf:"bytes,4,rep,name=types,proto3" json:"types,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -2525,7 +2530,7 @@ func (m *SchemaRequest) Reset() { *m = SchemaRequest{} } func (m *SchemaRequest) String() string { return proto.CompactTextString(m) } func (*SchemaRequest) ProtoMessage() {} func (*SchemaRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{32} + return fileDescriptor_f80abaa17e25ccc8, []int{32} } func (m *SchemaRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2542,8 +2547,8 @@ func (m *SchemaRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error return b[:n], nil } } -func (dst *SchemaRequest) XXX_Merge(src proto.Message) { - xxx_messageInfo_SchemaRequest.Merge(dst, src) +func (m *SchemaRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_SchemaRequest.Merge(m, src) } func (m *SchemaRequest) XXX_Size() int { return m.Size() @@ -2583,7 +2588,7 @@ func (m *SchemaRequest) GetTypes() []string { } type SchemaResult struct { - Schema []*api.SchemaNode `protobuf:"bytes,1,rep,name=schema" json:"schema,omitempty"` // Deprecated: Do not use. + Schema []*api.SchemaNode `protobuf:"bytes,1,rep,name=schema,proto3" json:"schema,omitempty"` // Deprecated: Do not use. XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -2593,7 +2598,7 @@ func (m *SchemaResult) Reset() { *m = SchemaResult{} } func (m *SchemaResult) String() string { return proto.CompactTextString(m) } func (*SchemaResult) ProtoMessage() {} func (*SchemaResult) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{33} + return fileDescriptor_f80abaa17e25ccc8, []int{33} } func (m *SchemaResult) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2610,8 +2615,8 @@ func (m *SchemaResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) return b[:n], nil } } -func (dst *SchemaResult) XXX_Merge(src proto.Message) { - xxx_messageInfo_SchemaResult.Merge(dst, src) +func (m *SchemaResult) XXX_Merge(src proto.Message) { + xxx_messageInfo_SchemaResult.Merge(m, src) } func (m *SchemaResult) XXX_Size() int { return m.Size() @@ -2634,7 +2639,7 @@ type SchemaUpdate struct { Predicate string `protobuf:"bytes,1,opt,name=predicate,proto3" json:"predicate,omitempty"` ValueType Posting_ValType `protobuf:"varint,2,opt,name=value_type,json=valueType,proto3,enum=pb.Posting_ValType" json:"value_type,omitempty"` Directive SchemaUpdate_Directive `protobuf:"varint,3,opt,name=directive,proto3,enum=pb.SchemaUpdate_Directive" json:"directive,omitempty"` - Tokenizer []string `protobuf:"bytes,4,rep,name=tokenizer" json:"tokenizer,omitempty"` + Tokenizer []string `protobuf:"bytes,4,rep,name=tokenizer,proto3" json:"tokenizer,omitempty"` Count bool `protobuf:"varint,5,opt,name=count,proto3" json:"count,omitempty"` List bool `protobuf:"varint,6,opt,name=list,proto3" json:"list,omitempty"` Upsert bool `protobuf:"varint,8,opt,name=upsert,proto3" json:"upsert,omitempty"` @@ -2654,7 +2659,7 @@ func (m *SchemaUpdate) Reset() { *m = SchemaUpdate{} } func (m *SchemaUpdate) String() string { return proto.CompactTextString(m) } func (*SchemaUpdate) ProtoMessage() {} func (*SchemaUpdate) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{34} + return fileDescriptor_f80abaa17e25ccc8, []int{34} } func (m *SchemaUpdate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2671,8 +2676,8 @@ func (m *SchemaUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) return b[:n], nil } } -func (dst *SchemaUpdate) XXX_Merge(src proto.Message) { - xxx_messageInfo_SchemaUpdate.Merge(dst, src) +func (m *SchemaUpdate) XXX_Merge(src proto.Message) { + xxx_messageInfo_SchemaUpdate.Merge(m, src) } func (m *SchemaUpdate) XXX_Size() int { return m.Size() @@ -2762,7 +2767,7 @@ func (m *SchemaUpdate) GetObjectTypeName() string { type TypeUpdate struct { TypeName string `protobuf:"bytes,1,opt,name=type_name,json=typeName,proto3" json:"type_name,omitempty"` - Fields []*SchemaUpdate `protobuf:"bytes,2,rep,name=fields" json:"fields,omitempty"` + Fields []*SchemaUpdate `protobuf:"bytes,2,rep,name=fields,proto3" json:"fields,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -2772,7 +2777,7 @@ func (m *TypeUpdate) Reset() { *m = TypeUpdate{} } func (m *TypeUpdate) String() string { return proto.CompactTextString(m) } func (*TypeUpdate) ProtoMessage() {} func (*TypeUpdate) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{35} + return fileDescriptor_f80abaa17e25ccc8, []int{35} } func (m *TypeUpdate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2789,8 +2794,8 @@ func (m *TypeUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return b[:n], nil } } -func (dst *TypeUpdate) XXX_Merge(src proto.Message) { - xxx_messageInfo_TypeUpdate.Merge(dst, src) +func (m *TypeUpdate) XXX_Merge(src proto.Message) { + xxx_messageInfo_TypeUpdate.Merge(m, src) } func (m *TypeUpdate) XXX_Size() int { return m.Size() @@ -2820,7 +2825,7 @@ type MapEntry struct { Key []byte `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` // Only one should be set. Uid uint64 `protobuf:"fixed64,2,opt,name=uid,proto3" json:"uid,omitempty"` - Posting *Posting `protobuf:"bytes,3,opt,name=posting" json:"posting,omitempty"` + Posting *Posting `protobuf:"bytes,3,opt,name=posting,proto3" json:"posting,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -2830,7 +2835,7 @@ func (m *MapEntry) Reset() { *m = MapEntry{} } func (m *MapEntry) String() string { return proto.CompactTextString(m) } func (*MapEntry) ProtoMessage() {} func (*MapEntry) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{36} + return fileDescriptor_f80abaa17e25ccc8, []int{36} } func (m *MapEntry) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2847,8 +2852,8 @@ func (m *MapEntry) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return b[:n], nil } } -func (dst *MapEntry) XXX_Merge(src proto.Message) { - xxx_messageInfo_MapEntry.Merge(dst, src) +func (m *MapEntry) XXX_Merge(src proto.Message) { + xxx_messageInfo_MapEntry.Merge(m, src) } func (m *MapEntry) XXX_Size() int { return m.Size() @@ -2894,7 +2899,7 @@ func (m *MovePredicatePayload) Reset() { *m = MovePredicatePayload{} } func (m *MovePredicatePayload) String() string { return proto.CompactTextString(m) } func (*MovePredicatePayload) ProtoMessage() {} func (*MovePredicatePayload) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{37} + return fileDescriptor_f80abaa17e25ccc8, []int{37} } func (m *MovePredicatePayload) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2911,8 +2916,8 @@ func (m *MovePredicatePayload) XXX_Marshal(b []byte, deterministic bool) ([]byte return b[:n], nil } } -func (dst *MovePredicatePayload) XXX_Merge(src proto.Message) { - xxx_messageInfo_MovePredicatePayload.Merge(dst, src) +func (m *MovePredicatePayload) XXX_Merge(src proto.Message) { + xxx_messageInfo_MovePredicatePayload.Merge(m, src) } func (m *MovePredicatePayload) XXX_Size() int { return m.Size() @@ -2963,7 +2968,7 @@ func (m *TxnStatus) Reset() { *m = TxnStatus{} } func (m *TxnStatus) String() string { return proto.CompactTextString(m) } func (*TxnStatus) ProtoMessage() {} func (*TxnStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{38} + return fileDescriptor_f80abaa17e25ccc8, []int{38} } func (m *TxnStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2980,8 +2985,8 @@ func (m *TxnStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return b[:n], nil } } -func (dst *TxnStatus) XXX_Merge(src proto.Message) { - xxx_messageInfo_TxnStatus.Merge(dst, src) +func (m *TxnStatus) XXX_Merge(src proto.Message) { + xxx_messageInfo_TxnStatus.Merge(m, src) } func (m *TxnStatus) XXX_Size() int { return m.Size() @@ -3007,9 +3012,9 @@ func (m *TxnStatus) GetCommitTs() uint64 { } type OracleDelta struct { - Txns []*TxnStatus `protobuf:"bytes,1,rep,name=txns" json:"txns,omitempty"` + Txns []*TxnStatus `protobuf:"bytes,1,rep,name=txns,proto3" json:"txns,omitempty"` MaxAssigned uint64 `protobuf:"varint,2,opt,name=max_assigned,json=maxAssigned,proto3" json:"max_assigned,omitempty"` - GroupChecksums map[uint32]uint64 `protobuf:"bytes,3,rep,name=group_checksums,json=groupChecksums" json:"group_checksums,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` + GroupChecksums map[uint32]uint64 `protobuf:"bytes,3,rep,name=group_checksums,json=groupChecksums,proto3" json:"group_checksums,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -3019,7 +3024,7 @@ func (m *OracleDelta) Reset() { *m = OracleDelta{} } func (m *OracleDelta) String() string { return proto.CompactTextString(m) } func (*OracleDelta) ProtoMessage() {} func (*OracleDelta) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{39} + return fileDescriptor_f80abaa17e25ccc8, []int{39} } func (m *OracleDelta) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3036,8 +3041,8 @@ func (m *OracleDelta) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) return b[:n], nil } } -func (dst *OracleDelta) XXX_Merge(src proto.Message) { - xxx_messageInfo_OracleDelta.Merge(dst, src) +func (m *OracleDelta) XXX_Merge(src proto.Message) { + xxx_messageInfo_OracleDelta.Merge(m, src) } func (m *OracleDelta) XXX_Size() int { return m.Size() @@ -3070,7 +3075,7 @@ func (m *OracleDelta) GetGroupChecksums() map[uint32]uint64 { } type TxnTimestamps struct { - Ts []uint64 `protobuf:"varint,1,rep,packed,name=ts" json:"ts,omitempty"` + Ts []uint64 `protobuf:"varint,1,rep,packed,name=ts,proto3" json:"ts,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -3080,7 +3085,7 @@ func (m *TxnTimestamps) Reset() { *m = TxnTimestamps{} } func (m *TxnTimestamps) String() string { return proto.CompactTextString(m) } func (*TxnTimestamps) ProtoMessage() {} func (*TxnTimestamps) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{40} + return fileDescriptor_f80abaa17e25ccc8, []int{40} } func (m *TxnTimestamps) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3097,8 +3102,8 @@ func (m *TxnTimestamps) XXX_Marshal(b []byte, deterministic bool) ([]byte, error return b[:n], nil } } -func (dst *TxnTimestamps) XXX_Merge(src proto.Message) { - xxx_messageInfo_TxnTimestamps.Merge(dst, src) +func (m *TxnTimestamps) XXX_Merge(src proto.Message) { + xxx_messageInfo_TxnTimestamps.Merge(m, src) } func (m *TxnTimestamps) XXX_Size() int { return m.Size() @@ -3127,7 +3132,7 @@ func (m *PeerResponse) Reset() { *m = PeerResponse{} } func (m *PeerResponse) String() string { return proto.CompactTextString(m) } func (*PeerResponse) ProtoMessage() {} func (*PeerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{41} + return fileDescriptor_f80abaa17e25ccc8, []int{41} } func (m *PeerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3144,8 +3149,8 @@ func (m *PeerResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) return b[:n], nil } } -func (dst *PeerResponse) XXX_Merge(src proto.Message) { - xxx_messageInfo_PeerResponse.Merge(dst, src) +func (m *PeerResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_PeerResponse.Merge(m, src) } func (m *PeerResponse) XXX_Size() int { return m.Size() @@ -3164,8 +3169,8 @@ func (m *PeerResponse) GetStatus() bool { } type RaftBatch struct { - Context *RaftContext `protobuf:"bytes,1,opt,name=context" json:"context,omitempty"` - Payload *api.Payload `protobuf:"bytes,2,opt,name=payload" json:"payload,omitempty"` + Context *RaftContext `protobuf:"bytes,1,opt,name=context,proto3" json:"context,omitempty"` + Payload *api.Payload `protobuf:"bytes,2,opt,name=payload,proto3" json:"payload,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -3175,7 +3180,7 @@ func (m *RaftBatch) Reset() { *m = RaftBatch{} } func (m *RaftBatch) String() string { return proto.CompactTextString(m) } func (*RaftBatch) ProtoMessage() {} func (*RaftBatch) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{42} + return fileDescriptor_f80abaa17e25ccc8, []int{42} } func (m *RaftBatch) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3192,8 +3197,8 @@ func (m *RaftBatch) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return b[:n], nil } } -func (dst *RaftBatch) XXX_Merge(src proto.Message) { - xxx_messageInfo_RaftBatch.Merge(dst, src) +func (m *RaftBatch) XXX_Merge(src proto.Message) { + xxx_messageInfo_RaftBatch.Merge(m, src) } func (m *RaftBatch) XXX_Size() int { return m.Size() @@ -3221,6 +3226,7 @@ func (m *RaftBatch) GetPayload() *api.Payload { type Num struct { Val uint64 `protobuf:"varint,1,opt,name=val,proto3" json:"val,omitempty"` ReadOnly bool `protobuf:"varint,2,opt,name=read_only,json=readOnly,proto3" json:"read_only,omitempty"` + Forwarded bool `protobuf:"varint,3,opt,name=forwarded,proto3" json:"forwarded,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -3230,7 +3236,7 @@ func (m *Num) Reset() { *m = Num{} } func (m *Num) String() string { return proto.CompactTextString(m) } func (*Num) ProtoMessage() {} func (*Num) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{43} + return fileDescriptor_f80abaa17e25ccc8, []int{43} } func (m *Num) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3247,8 +3253,8 @@ func (m *Num) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return b[:n], nil } } -func (dst *Num) XXX_Merge(src proto.Message) { - xxx_messageInfo_Num.Merge(dst, src) +func (m *Num) XXX_Merge(src proto.Message) { + xxx_messageInfo_Num.Merge(m, src) } func (m *Num) XXX_Size() int { return m.Size() @@ -3273,6 +3279,13 @@ func (m *Num) GetReadOnly() bool { return false } +func (m *Num) GetForwarded() bool { + if m != nil { + return m.Forwarded + } + return false +} + type AssignedIds struct { StartId uint64 `protobuf:"varint,1,opt,name=startId,proto3" json:"startId,omitempty"` EndId uint64 `protobuf:"varint,2,opt,name=endId,proto3" json:"endId,omitempty"` @@ -3287,7 +3300,7 @@ func (m *AssignedIds) Reset() { *m = AssignedIds{} } func (m *AssignedIds) String() string { return proto.CompactTextString(m) } func (*AssignedIds) ProtoMessage() {} func (*AssignedIds) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{44} + return fileDescriptor_f80abaa17e25ccc8, []int{44} } func (m *AssignedIds) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3304,8 +3317,8 @@ func (m *AssignedIds) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) return b[:n], nil } } -func (dst *AssignedIds) XXX_Merge(src proto.Message) { - xxx_messageInfo_AssignedIds.Merge(dst, src) +func (m *AssignedIds) XXX_Merge(src proto.Message) { + xxx_messageInfo_AssignedIds.Merge(m, src) } func (m *AssignedIds) XXX_Size() int { return m.Size() @@ -3349,7 +3362,7 @@ func (m *SnapshotMeta) Reset() { *m = SnapshotMeta{} } func (m *SnapshotMeta) String() string { return proto.CompactTextString(m) } func (*SnapshotMeta) ProtoMessage() {} func (*SnapshotMeta) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{45} + return fileDescriptor_f80abaa17e25ccc8, []int{45} } func (m *SnapshotMeta) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3366,8 +3379,8 @@ func (m *SnapshotMeta) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) return b[:n], nil } } -func (dst *SnapshotMeta) XXX_Merge(src proto.Message) { - xxx_messageInfo_SnapshotMeta.Merge(dst, src) +func (m *SnapshotMeta) XXX_Merge(src proto.Message) { + xxx_messageInfo_SnapshotMeta.Merge(m, src) } func (m *SnapshotMeta) XXX_Size() int { return m.Size() @@ -3406,7 +3419,7 @@ func (m *Status) Reset() { *m = Status{} } func (m *Status) String() string { return proto.CompactTextString(m) } func (*Status) ProtoMessage() {} func (*Status) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{46} + return fileDescriptor_f80abaa17e25ccc8, []int{46} } func (m *Status) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3423,8 +3436,8 @@ func (m *Status) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return b[:n], nil } } -func (dst *Status) XXX_Merge(src proto.Message) { - xxx_messageInfo_Status.Merge(dst, src) +func (m *Status) XXX_Merge(src proto.Message) { + xxx_messageInfo_Status.Merge(m, src) } func (m *Status) XXX_Size() int { return m.Size() @@ -3465,7 +3478,7 @@ func (m *BackupRequest) Reset() { *m = BackupRequest{} } func (m *BackupRequest) String() string { return proto.CompactTextString(m) } func (*BackupRequest) ProtoMessage() {} func (*BackupRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{47} + return fileDescriptor_f80abaa17e25ccc8, []int{47} } func (m *BackupRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3482,8 +3495,8 @@ func (m *BackupRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error return b[:n], nil } } -func (dst *BackupRequest) XXX_Merge(src proto.Message) { - xxx_messageInfo_BackupRequest.Merge(dst, src) +func (m *BackupRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_BackupRequest.Merge(m, src) } func (m *BackupRequest) XXX_Size() int { return m.Size() @@ -3549,7 +3562,7 @@ func (m *ExportRequest) Reset() { *m = ExportRequest{} } func (m *ExportRequest) String() string { return proto.CompactTextString(m) } func (*ExportRequest) ProtoMessage() {} func (*ExportRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_pb_4b0c31c1b577faa7, []int{48} + return fileDescriptor_f80abaa17e25ccc8, []int{48} } func (m *ExportRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3566,8 +3579,8 @@ func (m *ExportRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error return b[:n], nil } } -func (dst *ExportRequest) XXX_Merge(src proto.Message) { - xxx_messageInfo_ExportRequest.Merge(dst, src) +func (m *ExportRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExportRequest.Merge(m, src) } func (m *ExportRequest) XXX_Size() int { return m.Size() @@ -3600,6 +3613,10 @@ func (m *ExportRequest) GetUnixTs() int64 { } func init() { + proto.RegisterEnum("pb.DirectedEdge_Op", DirectedEdge_Op_name, DirectedEdge_Op_value) + proto.RegisterEnum("pb.Posting_ValType", Posting_ValType_name, Posting_ValType_value) + proto.RegisterEnum("pb.Posting_PostingType", Posting_PostingType_name, Posting_PostingType_value) + proto.RegisterEnum("pb.SchemaUpdate_Directive", SchemaUpdate_Directive_name, SchemaUpdate_Directive_value) proto.RegisterType((*List)(nil), "pb.List") proto.RegisterType((*TaskValue)(nil), "pb.TaskValue") proto.RegisterType((*SrcFunction)(nil), "pb.SrcFunction") @@ -3655,10 +3672,224 @@ func init() { proto.RegisterType((*Status)(nil), "pb.Status") proto.RegisterType((*BackupRequest)(nil), "pb.BackupRequest") proto.RegisterType((*ExportRequest)(nil), "pb.ExportRequest") - proto.RegisterEnum("pb.DirectedEdge_Op", DirectedEdge_Op_name, DirectedEdge_Op_value) - proto.RegisterEnum("pb.Posting_ValType", Posting_ValType_name, Posting_ValType_value) - proto.RegisterEnum("pb.Posting_PostingType", Posting_PostingType_name, Posting_PostingType_value) - proto.RegisterEnum("pb.SchemaUpdate_Directive", SchemaUpdate_Directive_name, SchemaUpdate_Directive_value) +} + +func init() { proto.RegisterFile("pb.proto", fileDescriptor_f80abaa17e25ccc8) } + +var fileDescriptor_f80abaa17e25ccc8 = []byte{ + // 3386 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x5a, 0x4b, 0x73, 0x1c, 0x47, + 0x72, 0x66, 0xcf, 0xa3, 0xa7, 0x3b, 0x67, 0x00, 0x8e, 0x4a, 0x5a, 0x6a, 0x84, 0xdd, 0x25, 0xa1, + 0xd6, 0x83, 0x10, 0xb5, 0x02, 0x29, 0x68, 0x6d, 0xaf, 0xd6, 0xe1, 0x03, 0x08, 0x0c, 0x69, 0x48, + 0x78, 0xb9, 0x66, 0xc0, 0xb5, 0x15, 0x0e, 0x4f, 0x14, 0xba, 0x0b, 0x83, 0x5e, 0xf4, 0x74, 0xb7, + 0xbb, 0x7a, 0xe0, 0x81, 0x6e, 0x3e, 0xd8, 0x61, 0xff, 0x83, 0x3d, 0x38, 0x7c, 0xd8, 0xa3, 0x2f, + 0x7b, 0xdd, 0xb3, 0x23, 0x1c, 0xe1, 0xa3, 0xc3, 0xbf, 0xc0, 0x21, 0xfb, 0x37, 0x38, 0xc2, 0x37, + 0x47, 0x66, 0x55, 0x3f, 0x66, 0x08, 0x92, 0x2b, 0x47, 0xf8, 0x84, 0xca, 0x47, 0x75, 0x55, 0x65, + 0x7d, 0x99, 0x95, 0x99, 0x03, 0x70, 0xd2, 0xf3, 0xed, 0x34, 0x4b, 0xf2, 0x84, 0x35, 0xd2, 0xf3, + 0x0d, 0x57, 0xa4, 0xa1, 0x26, 0x37, 0x1e, 0x4e, 0xc3, 0xfc, 0x72, 0x7e, 0xbe, 0xed, 0x27, 0xb3, + 0xc7, 0xc1, 0x34, 0x13, 0xe9, 0xe5, 0x67, 0x61, 0xf2, 0xf8, 0x5c, 0x04, 0x53, 0x99, 0x3d, 0x4e, + 0xcf, 0x1f, 0x17, 0xf3, 0xbc, 0x0d, 0x68, 0x1d, 0x86, 0x2a, 0x67, 0x0c, 0x5a, 0xf3, 0x30, 0x50, + 0x03, 0x6b, 0xb3, 0xb9, 0x65, 0x73, 0x1a, 0x7b, 0x47, 0xe0, 0x8e, 0x85, 0xba, 0x7a, 0x21, 0xa2, + 0xb9, 0x64, 0x7d, 0x68, 0x5e, 0x8b, 0x68, 0x60, 0x6d, 0x5a, 0x5b, 0x3d, 0x8e, 0x43, 0xb6, 0x0d, + 0xce, 0xb5, 0x88, 0x26, 0xf9, 0x4d, 0x2a, 0x07, 0x8d, 0x4d, 0x6b, 0x6b, 0x7d, 0xe7, 0xed, 0xed, + 0xf4, 0x7c, 0xfb, 0x34, 0x51, 0x79, 0x18, 0x4f, 0xb7, 0x5f, 0x88, 0x68, 0x7c, 0x93, 0x4a, 0xde, + 0xb9, 0xd6, 0x03, 0xef, 0x04, 0xba, 0xa3, 0xcc, 0x7f, 0x36, 0x8f, 0xfd, 0x3c, 0x4c, 0x62, 0x5c, + 0x31, 0x16, 0x33, 0x49, 0x5f, 0x74, 0x39, 0x8d, 0x91, 0x27, 0xb2, 0xa9, 0x1a, 0x34, 0x37, 0x9b, + 0xc8, 0xc3, 0x31, 0x1b, 0x40, 0x27, 0x54, 0x7b, 0xc9, 0x3c, 0xce, 0x07, 0xad, 0x4d, 0x6b, 0xcb, + 0xe1, 0x05, 0xe9, 0xfd, 0x7d, 0x13, 0xda, 0x7f, 0x32, 0x97, 0xd9, 0x0d, 0xcd, 0xcb, 0xf3, 0xac, + 0xf8, 0x16, 0x8e, 0xd9, 0x3b, 0xd0, 0x8e, 0x44, 0x3c, 0x55, 0x83, 0x06, 0x7d, 0x4c, 0x13, 0xec, + 0x87, 0xe0, 0x8a, 0x8b, 0x5c, 0x66, 0x93, 0x79, 0x18, 0x0c, 0x9a, 0x9b, 0xd6, 0x96, 0xcd, 0x1d, + 0x62, 0x9c, 0x85, 0x01, 0x7b, 0x0f, 0x9c, 0x20, 0x99, 0xf8, 0xf5, 0xb5, 0x82, 0x84, 0xd6, 0x62, + 0x1f, 0x80, 0x33, 0x0f, 0x83, 0x49, 0x14, 0xaa, 0x7c, 0xd0, 0xde, 0xb4, 0xb6, 0xba, 0x3b, 0x0e, + 0x1e, 0x16, 0x6d, 0xc7, 0x3b, 0xf3, 0x30, 0x20, 0x23, 0x3e, 0x02, 0x47, 0x65, 0xfe, 0xe4, 0x62, + 0x1e, 0xfb, 0x03, 0x9b, 0x94, 0xee, 0xa2, 0x52, 0xed, 0xd4, 0xbc, 0xa3, 0x34, 0x81, 0xc7, 0xca, + 0xe4, 0xb5, 0xcc, 0x94, 0x1c, 0x74, 0xf4, 0x52, 0x86, 0x64, 0x4f, 0xa0, 0x7b, 0x21, 0x7c, 0x99, + 0x4f, 0x52, 0x91, 0x89, 0xd9, 0xc0, 0xa9, 0x3e, 0xf4, 0x0c, 0xd9, 0xa7, 0xc8, 0x55, 0x1c, 0x2e, + 0x4a, 0x82, 0x7d, 0x01, 0x6b, 0x44, 0xa9, 0xc9, 0x45, 0x18, 0xe5, 0x32, 0x1b, 0xb8, 0x34, 0x67, + 0x9d, 0xe6, 0x10, 0x67, 0x9c, 0x49, 0xc9, 0x7b, 0x5a, 0x49, 0x73, 0xd8, 0x8f, 0x01, 0xe4, 0x22, + 0x15, 0x71, 0x30, 0x11, 0x51, 0x34, 0x00, 0xda, 0x83, 0xab, 0x39, 0xbb, 0x51, 0xc4, 0xde, 0xc5, + 0xfd, 0x89, 0x60, 0x92, 0xab, 0xc1, 0xda, 0xa6, 0xb5, 0xd5, 0xe2, 0x36, 0x92, 0x63, 0x85, 0x76, + 0xf5, 0x85, 0x7f, 0x29, 0x07, 0xeb, 0x9b, 0xd6, 0x56, 0x9b, 0x6b, 0xc2, 0xdb, 0x01, 0x97, 0x70, + 0x42, 0x76, 0xf8, 0x08, 0xec, 0x6b, 0x24, 0x34, 0x9c, 0xba, 0x3b, 0x6b, 0xb8, 0x91, 0x12, 0x4a, + 0xdc, 0x08, 0xbd, 0xfb, 0xe0, 0x1c, 0x8a, 0x78, 0x5a, 0xe0, 0x0f, 0x2f, 0x88, 0x26, 0xb8, 0x9c, + 0xc6, 0xde, 0xaf, 0x1a, 0x60, 0x73, 0xa9, 0xe6, 0x51, 0xce, 0x1e, 0x02, 0xa0, 0xf9, 0x67, 0x22, + 0xcf, 0xc2, 0x85, 0xf9, 0x6a, 0x75, 0x01, 0xee, 0x3c, 0x0c, 0x8e, 0x48, 0xc4, 0x9e, 0x40, 0x8f, + 0xbe, 0x5e, 0xa8, 0x36, 0xaa, 0x0d, 0x94, 0xfb, 0xe3, 0x5d, 0x52, 0x31, 0x33, 0xee, 0x81, 0x4d, + 0x37, 0xae, 0x51, 0xb7, 0xc6, 0x0d, 0xc5, 0x3e, 0x82, 0xf5, 0x30, 0xce, 0xf1, 0x46, 0xfc, 0x7c, + 0x12, 0x48, 0x55, 0x40, 0x62, 0xad, 0xe4, 0xee, 0x4b, 0x95, 0xb3, 0xcf, 0x41, 0x9b, 0xb5, 0x58, + 0xb0, 0x4d, 0x0b, 0xae, 0x97, 0xd7, 0xa5, 0xf4, 0x8a, 0xa4, 0x63, 0x56, 0xfc, 0x0c, 0xba, 0x78, + 0xbe, 0x62, 0x86, 0x4d, 0x33, 0x7a, 0x74, 0x1a, 0x63, 0x0e, 0x0e, 0xa8, 0x60, 0xd4, 0xd1, 0x34, + 0x08, 0x3b, 0x0d, 0x13, 0x1a, 0x7b, 0x43, 0x68, 0x9f, 0x64, 0x81, 0xcc, 0x6e, 0x45, 0x3e, 0x83, + 0x56, 0x20, 0x95, 0x4f, 0x4e, 0xe9, 0x70, 0x1a, 0x57, 0xde, 0xd0, 0xac, 0x79, 0x83, 0xf7, 0x8f, + 0x16, 0x74, 0x47, 0x49, 0x96, 0x1f, 0x49, 0xa5, 0xc4, 0x54, 0xb2, 0x07, 0xd0, 0x4e, 0xf0, 0xb3, + 0xc6, 0xc2, 0x2e, 0xee, 0x89, 0xd6, 0xe1, 0x9a, 0xbf, 0x72, 0x0f, 0x8d, 0x57, 0xdf, 0x03, 0xa2, + 0x84, 0xfc, 0xa8, 0x69, 0x50, 0x42, 0x5e, 0x74, 0x0f, 0xec, 0xe4, 0xe2, 0x42, 0x49, 0x6d, 0xcb, + 0x36, 0x37, 0xd4, 0x2b, 0xc1, 0xe6, 0xfd, 0x1e, 0x00, 0xee, 0xef, 0x7b, 0xa2, 0xc0, 0xbb, 0x84, + 0x2e, 0x17, 0x17, 0xf9, 0x5e, 0x12, 0xe7, 0x72, 0x91, 0xb3, 0x75, 0x68, 0x84, 0x01, 0x99, 0xc8, + 0xe6, 0x8d, 0x30, 0xc0, 0xcd, 0x4d, 0xb3, 0x64, 0x9e, 0x92, 0x85, 0xd6, 0xb8, 0x26, 0xc8, 0x94, + 0x41, 0x90, 0xd1, 0x8e, 0xd1, 0x94, 0x41, 0x90, 0xb1, 0x07, 0xd0, 0x55, 0xb1, 0x48, 0xd5, 0x65, + 0x92, 0xe3, 0xe6, 0x5a, 0xb4, 0x39, 0x28, 0x58, 0x63, 0xe5, 0xfd, 0x8b, 0x05, 0xf6, 0x91, 0x9c, + 0x9d, 0xcb, 0xec, 0xa5, 0x55, 0xde, 0x03, 0x87, 0x3e, 0x3c, 0x09, 0x03, 0xb3, 0x50, 0x87, 0xe8, + 0x83, 0xe0, 0xd6, 0xa5, 0xee, 0x81, 0x1d, 0x49, 0x81, 0xc6, 0xd7, 0x38, 0x33, 0x14, 0xda, 0x46, + 0xcc, 0x26, 0x81, 0x14, 0x01, 0x05, 0x1e, 0x87, 0xdb, 0x62, 0xb6, 0x2f, 0x45, 0x80, 0x7b, 0x8b, + 0x84, 0xca, 0x27, 0xf3, 0x34, 0x10, 0xb9, 0xa4, 0x80, 0xd3, 0x42, 0xe0, 0xa8, 0xfc, 0x8c, 0x38, + 0xec, 0x11, 0xbc, 0xe5, 0x47, 0x73, 0x85, 0xd1, 0x2e, 0x8c, 0x2f, 0x92, 0x49, 0x12, 0x47, 0x37, + 0x64, 0x5f, 0x87, 0xdf, 0x35, 0x82, 0x83, 0xf8, 0x22, 0x39, 0x89, 0xa3, 0x1b, 0xef, 0xb7, 0x0d, + 0x68, 0x3f, 0x27, 0x33, 0x3c, 0x81, 0xce, 0x8c, 0x0e, 0x54, 0x78, 0xef, 0x3d, 0xb4, 0x30, 0xc9, + 0xb6, 0xf5, 0x49, 0xd5, 0x30, 0xce, 0xb3, 0x1b, 0x5e, 0xa8, 0xe1, 0x8c, 0x5c, 0x9c, 0x47, 0x32, + 0x57, 0x06, 0x11, 0xb5, 0x19, 0x63, 0x2d, 0x30, 0x33, 0x8c, 0xda, 0xaa, 0x59, 0x9b, 0xab, 0x66, + 0x65, 0x1b, 0xe0, 0xf8, 0x97, 0xd2, 0xbf, 0x52, 0xf3, 0x99, 0x31, 0x7a, 0x49, 0x6f, 0x3c, 0x83, + 0x5e, 0x7d, 0x1f, 0xf8, 0x32, 0x5d, 0xc9, 0x1b, 0x32, 0x7c, 0x8b, 0xe3, 0x90, 0x6d, 0x42, 0x9b, + 0x3c, 0x9c, 0xcc, 0xde, 0xdd, 0x01, 0xdc, 0x8e, 0x9e, 0xc2, 0xb5, 0xe0, 0xe7, 0x8d, 0x9f, 0x59, + 0xf8, 0x9d, 0xfa, 0xee, 0xea, 0xdf, 0x71, 0x5f, 0xfd, 0x1d, 0x3d, 0xa5, 0xf6, 0x1d, 0xef, 0x7f, + 0x1a, 0xd0, 0xfb, 0x46, 0x66, 0xc9, 0x69, 0x96, 0xa4, 0x89, 0x12, 0x11, 0xdb, 0x5d, 0x3e, 0x9d, + 0xb6, 0xe2, 0x26, 0x4e, 0xae, 0xab, 0x6d, 0x8f, 0xca, 0xe3, 0x6a, 0xeb, 0xd4, 0xcf, 0xef, 0x81, + 0xad, 0xad, 0x7b, 0xcb, 0x11, 0x8c, 0x04, 0x75, 0xb4, 0x3d, 0xc9, 0x7e, 0xcb, 0xdb, 0x33, 0x12, + 0x76, 0x1f, 0x60, 0x26, 0x16, 0x87, 0x52, 0x28, 0x79, 0x10, 0x14, 0xf0, 0xad, 0x38, 0x68, 0xe7, + 0x99, 0x58, 0x8c, 0x17, 0xf1, 0x58, 0x11, 0xba, 0x5a, 0xbc, 0xa4, 0xd9, 0x8f, 0xc0, 0x9d, 0x89, + 0x05, 0xfa, 0xd1, 0x41, 0x60, 0xd0, 0x55, 0x31, 0xd8, 0xfb, 0xd0, 0xcc, 0x17, 0x31, 0x05, 0x25, + 0x7c, 0x9d, 0x30, 0xf5, 0x18, 0x2f, 0x62, 0xe3, 0x71, 0x1c, 0x65, 0x85, 0x41, 0x9d, 0xca, 0xa0, + 0x7d, 0x68, 0xfa, 0x61, 0x40, 0xcf, 0x93, 0xcb, 0x71, 0xb8, 0xf1, 0x47, 0x70, 0x77, 0xc5, 0x0e, + 0xf5, 0x7b, 0x58, 0xd3, 0xd3, 0xde, 0xa9, 0xdf, 0x43, 0xab, 0x6e, 0xfb, 0xdf, 0x36, 0xe1, 0xae, + 0x01, 0xc3, 0x65, 0x98, 0x8e, 0x72, 0x84, 0xfd, 0x00, 0x3a, 0x14, 0x6d, 0x64, 0x66, 0x30, 0x51, + 0x90, 0xec, 0x0f, 0xc0, 0x26, 0x0f, 0x2c, 0x70, 0xfa, 0xa0, 0xb2, 0x6a, 0x39, 0x5d, 0xe3, 0xd6, + 0x5c, 0x89, 0x51, 0x67, 0x3f, 0x85, 0xf6, 0xb7, 0x32, 0x4b, 0x74, 0xf4, 0xec, 0xee, 0xdc, 0xbf, + 0x6d, 0x1e, 0xde, 0xad, 0x99, 0xa6, 0x95, 0xff, 0x1f, 0x8d, 0xff, 0x21, 0xc6, 0xcb, 0x59, 0x72, + 0x2d, 0x83, 0x41, 0x87, 0x76, 0x54, 0xc7, 0x47, 0x21, 0x2a, 0xac, 0xed, 0x54, 0xd6, 0xde, 0x87, + 0x6e, 0xed, 0x78, 0xb7, 0x58, 0xfa, 0xc1, 0x32, 0xe2, 0xdd, 0xd2, 0x91, 0xeb, 0x8e, 0xb3, 0x0f, + 0x50, 0x1d, 0xf6, 0xff, 0xea, 0x7e, 0xde, 0x5f, 0x5b, 0x70, 0x77, 0x2f, 0x89, 0x63, 0x49, 0x89, + 0x91, 0xbe, 0xba, 0x0a, 0xf6, 0xd6, 0x2b, 0x61, 0xff, 0x09, 0xb4, 0x15, 0x2a, 0x9b, 0xaf, 0xbf, + 0x7d, 0xcb, 0x5d, 0x70, 0xad, 0x81, 0x61, 0x66, 0x26, 0x16, 0x93, 0x54, 0xc6, 0x41, 0x18, 0x4f, + 0x8b, 0x30, 0x33, 0x13, 0x8b, 0x53, 0xcd, 0xf1, 0x7e, 0x6d, 0x81, 0xad, 0x3d, 0x66, 0x29, 0x5a, + 0x5b, 0xcb, 0xd1, 0xfa, 0x47, 0xe0, 0xa6, 0x99, 0x0c, 0x42, 0xbf, 0x58, 0xd5, 0xe5, 0x15, 0x03, + 0xc1, 0x79, 0x91, 0x64, 0xbe, 0xa4, 0xcf, 0x3b, 0x5c, 0x13, 0xc8, 0x55, 0xa9, 0xf0, 0x75, 0x72, + 0xd7, 0xe4, 0x9a, 0xc0, 0x18, 0xaf, 0x2f, 0x87, 0x2e, 0xc5, 0xe1, 0x86, 0xc2, 0xac, 0x94, 0xde, + 0x3f, 0x8a, 0xd0, 0x2e, 0x89, 0x1c, 0x64, 0x50, 0x68, 0xfe, 0xa7, 0x06, 0xf4, 0xf6, 0xc3, 0x4c, + 0xfa, 0xb9, 0x0c, 0x86, 0xc1, 0x94, 0xbe, 0x22, 0xe3, 0x3c, 0xcc, 0x6f, 0xcc, 0x63, 0x63, 0xa8, + 0x32, 0x17, 0x68, 0x2c, 0x67, 0xc1, 0xfa, 0x2e, 0x9a, 0x94, 0xb8, 0x6b, 0x82, 0xed, 0x00, 0xe8, + 0x2c, 0x89, 0x92, 0xf7, 0xd6, 0xab, 0x93, 0x77, 0x97, 0xd4, 0x70, 0x88, 0x06, 0xd2, 0x73, 0x42, + 0xfd, 0x10, 0xd9, 0x94, 0xd9, 0xcf, 0x11, 0xc8, 0x94, 0x5c, 0x9c, 0xcb, 0x88, 0x80, 0x4a, 0xc9, + 0xc5, 0xb9, 0x8c, 0xca, 0x94, 0xae, 0xa3, 0xb7, 0x83, 0x63, 0xf6, 0x01, 0x34, 0x92, 0x94, 0x0e, + 0x6f, 0x16, 0xac, 0x1f, 0x6c, 0xfb, 0x24, 0xe5, 0x8d, 0x24, 0x45, 0x14, 0xe8, 0x4c, 0x75, 0xe0, + 0x1a, 0x70, 0x63, 0x74, 0xa1, 0x6c, 0x8a, 0x1b, 0x89, 0x77, 0x0f, 0x1a, 0x27, 0x29, 0xeb, 0x40, + 0x73, 0x34, 0x1c, 0xf7, 0xef, 0xe0, 0x60, 0x7f, 0x78, 0xd8, 0xb7, 0xbc, 0xbf, 0x6b, 0x80, 0x7b, + 0x34, 0xcf, 0x05, 0x62, 0x4a, 0xbd, 0xee, 0x52, 0xdf, 0x03, 0x47, 0xe5, 0x22, 0xa3, 0x08, 0xad, + 0xc3, 0x4a, 0x87, 0xe8, 0xb1, 0x62, 0x1f, 0x43, 0x5b, 0x06, 0x53, 0x59, 0x78, 0x7b, 0x7f, 0x75, + 0x9f, 0x5c, 0x8b, 0xd9, 0x16, 0xd8, 0xca, 0xbf, 0x94, 0x33, 0x31, 0x68, 0x55, 0x8a, 0x23, 0xe2, + 0xe8, 0x17, 0x98, 0x1b, 0x39, 0x15, 0x16, 0x59, 0x92, 0x52, 0xa6, 0xdd, 0x36, 0x85, 0x45, 0x96, + 0xa4, 0x98, 0x67, 0xef, 0xc0, 0x0f, 0xc2, 0x69, 0x9c, 0x64, 0x72, 0x12, 0xc6, 0x81, 0x5c, 0x4c, + 0xfc, 0x24, 0xbe, 0x88, 0x42, 0x3f, 0x27, 0x5b, 0x3a, 0xfc, 0x6d, 0x2d, 0x3c, 0x40, 0xd9, 0x9e, + 0x11, 0xb1, 0x0f, 0xa1, 0x8d, 0x17, 0xa7, 0x8c, 0xf3, 0x53, 0xb2, 0x89, 0x77, 0x64, 0x56, 0xd5, + 0x42, 0x6f, 0x01, 0x4e, 0x11, 0x5a, 0xd9, 0x27, 0x18, 0x13, 0x29, 0x34, 0x1b, 0xcf, 0xa2, 0x7a, + 0xa2, 0x96, 0x23, 0xf1, 0x42, 0x8e, 0x97, 0x49, 0x3b, 0x29, 0x82, 0x2d, 0x11, 0xf5, 0x0c, 0xad, + 0xb9, 0x54, 0x0e, 0x60, 0xb2, 0x99, 0xc4, 0xd2, 0x24, 0x2d, 0x34, 0xf6, 0xfe, 0xa1, 0x01, 0x4e, + 0xf9, 0x1a, 0x7e, 0x0a, 0xee, 0xac, 0xb8, 0x10, 0xe3, 0xb3, 0x94, 0x8e, 0x97, 0xb7, 0xc4, 0x2b, + 0x39, 0xbb, 0x07, 0x8d, 0xab, 0x6b, 0x63, 0x4e, 0x1b, 0xb5, 0xbe, 0x7e, 0xc1, 0x1b, 0x57, 0xd7, + 0x95, 0xd3, 0xb7, 0xdf, 0xe8, 0xf4, 0x0f, 0xe1, 0xae, 0x1f, 0x49, 0x11, 0x4f, 0x2a, 0x9f, 0xd5, + 0xb0, 0x5c, 0x27, 0xf6, 0x69, 0xe9, 0xb8, 0x26, 0x70, 0x75, 0xaa, 0xe7, 0xe9, 0x23, 0x68, 0x07, + 0x32, 0xca, 0x45, 0xbd, 0xe6, 0x3a, 0xc9, 0x84, 0x1f, 0xc9, 0x7d, 0x64, 0x73, 0x2d, 0x65, 0x5b, + 0xe0, 0x14, 0x4f, 0xb5, 0xa9, 0xb4, 0x28, 0x79, 0x2f, 0x8c, 0xcd, 0x4b, 0x69, 0x65, 0x4b, 0xa8, + 0xd9, 0xd2, 0xfb, 0x1c, 0x9a, 0x5f, 0xbf, 0x18, 0x99, 0xb3, 0x5a, 0x2f, 0x9d, 0xb5, 0xb0, 0x68, + 0xa3, 0x66, 0xd1, 0xff, 0x6e, 0x42, 0xc7, 0xf8, 0x26, 0xee, 0x7b, 0x5e, 0x26, 0x9a, 0x38, 0x5c, + 0x7e, 0x1f, 0x4b, 0x27, 0xaf, 0xd7, 0xe7, 0xcd, 0x37, 0xd7, 0xe7, 0xec, 0xe7, 0xd0, 0x4b, 0xb5, + 0xac, 0x1e, 0x16, 0xde, 0xad, 0xcf, 0x31, 0x7f, 0x69, 0x5e, 0x37, 0xad, 0x08, 0x04, 0x38, 0x95, + 0x34, 0xb9, 0x98, 0xd2, 0x15, 0xf5, 0x78, 0x07, 0xe9, 0xb1, 0x98, 0xbe, 0x22, 0x38, 0xfc, 0x0e, + 0x3e, 0x8e, 0x09, 0x75, 0x92, 0x0e, 0x7a, 0xe4, 0xb7, 0x18, 0x17, 0xea, 0x2e, 0xbb, 0xb6, 0xec, + 0xb2, 0x3f, 0x04, 0xd7, 0x4f, 0x66, 0xb3, 0x90, 0x64, 0xeb, 0x26, 0x61, 0x24, 0xc6, 0x58, 0x79, + 0x7f, 0x6b, 0x41, 0xc7, 0x9c, 0x96, 0x75, 0xa1, 0xb3, 0x3f, 0x7c, 0xb6, 0x7b, 0x76, 0x88, 0x51, + 0x03, 0xc0, 0x7e, 0x7a, 0x70, 0xbc, 0xcb, 0xff, 0xac, 0x6f, 0x61, 0x04, 0x39, 0x38, 0x1e, 0xf7, + 0x1b, 0xcc, 0x85, 0xf6, 0xb3, 0xc3, 0x93, 0xdd, 0x71, 0xbf, 0xc9, 0x1c, 0x68, 0x3d, 0x3d, 0x39, + 0x39, 0xec, 0xb7, 0x58, 0x0f, 0x9c, 0xfd, 0xdd, 0xf1, 0x70, 0x7c, 0x70, 0x34, 0xec, 0xb7, 0x51, + 0xf7, 0xf9, 0xf0, 0xa4, 0x6f, 0xe3, 0xe0, 0xec, 0x60, 0xbf, 0xdf, 0x41, 0xf9, 0xe9, 0xee, 0x68, + 0xf4, 0x8b, 0x13, 0xbe, 0xdf, 0x77, 0xf0, 0xbb, 0xa3, 0x31, 0x3f, 0x38, 0x7e, 0xde, 0x77, 0x71, + 0x7c, 0xf2, 0xf4, 0xab, 0xe1, 0xde, 0xb8, 0x0f, 0xde, 0xe7, 0xd0, 0xad, 0x59, 0x10, 0x67, 0xf3, + 0xe1, 0xb3, 0xfe, 0x1d, 0x5c, 0xf2, 0xc5, 0xee, 0xe1, 0xd9, 0xb0, 0x6f, 0xb1, 0x75, 0x00, 0x1a, + 0x4e, 0x0e, 0x77, 0x8f, 0x9f, 0xf7, 0x1b, 0xde, 0xef, 0x83, 0x73, 0x16, 0x06, 0x4f, 0xa3, 0xc4, + 0xbf, 0x42, 0x60, 0x9c, 0x0b, 0x25, 0xcd, 0x53, 0x4b, 0x63, 0x7c, 0x0b, 0x08, 0x94, 0xca, 0xdc, + 0xbd, 0xa1, 0xbc, 0x63, 0xe8, 0x9c, 0x85, 0xc1, 0xa9, 0xf0, 0xaf, 0xb0, 0xd0, 0x3f, 0xc7, 0xf9, + 0x13, 0x15, 0x7e, 0x2b, 0x4d, 0x18, 0x74, 0x89, 0x33, 0x0a, 0xbf, 0x95, 0xec, 0x43, 0xb0, 0x89, + 0x28, 0x92, 0x22, 0xc2, 0x72, 0xb1, 0x26, 0x37, 0x32, 0x2f, 0x2f, 0xb7, 0x4e, 0xe5, 0xfa, 0x03, + 0x68, 0xa5, 0xc2, 0xbf, 0x32, 0xc1, 0xa4, 0x6b, 0xa6, 0xe0, 0x72, 0x9c, 0x04, 0xec, 0x21, 0x38, + 0x06, 0x1f, 0xc5, 0x77, 0xbb, 0x35, 0x20, 0xf1, 0x52, 0xb8, 0x7c, 0x73, 0xcd, 0x95, 0x9b, 0xfb, + 0x29, 0x40, 0xd5, 0xf3, 0xb8, 0x25, 0x41, 0x7f, 0x07, 0xda, 0x22, 0x0a, 0xcd, 0xe1, 0x5d, 0xae, + 0x09, 0xef, 0x18, 0xba, 0xb5, 0x4e, 0x09, 0xc2, 0x46, 0x44, 0xd1, 0xe4, 0x4a, 0xde, 0x28, 0x9a, + 0xeb, 0xf0, 0x8e, 0x88, 0xa2, 0xaf, 0xe5, 0x8d, 0xc2, 0x40, 0xaa, 0x9b, 0x2c, 0x8d, 0x95, 0xaa, + 0x9d, 0xa6, 0x72, 0x2d, 0xf4, 0x7e, 0x02, 0xb6, 0x2e, 0xe5, 0x6b, 0xa8, 0xb5, 0x5e, 0xf9, 0x32, + 0x7d, 0x69, 0xf6, 0x4c, 0x85, 0x3f, 0xfb, 0xd4, 0x34, 0x73, 0x94, 0x6e, 0x1d, 0x59, 0x55, 0xb6, + 0xa6, 0x95, 0x4c, 0x1f, 0x87, 0x94, 0xbd, 0x7d, 0x70, 0x5e, 0xdb, 0x1e, 0x33, 0x06, 0x68, 0x54, + 0x06, 0xb8, 0xa5, 0x61, 0xe6, 0xfd, 0x12, 0xa0, 0x6a, 0xfa, 0x18, 0x27, 0xd2, 0x5f, 0x41, 0x27, + 0x7a, 0x84, 0x95, 0x55, 0x18, 0x05, 0x99, 0x8c, 0x97, 0x4e, 0x5d, 0xb5, 0x89, 0x4a, 0x39, 0xdb, + 0x84, 0x16, 0xf5, 0xb2, 0x9a, 0x55, 0x90, 0x2b, 0x1b, 0x59, 0x24, 0xf1, 0x16, 0xb0, 0xa6, 0x1f, + 0x3c, 0x2e, 0xff, 0x72, 0x2e, 0xd5, 0x6b, 0xd3, 0xa8, 0xfb, 0x00, 0x65, 0x48, 0x2e, 0xba, 0x72, + 0x35, 0x0e, 0x42, 0xf9, 0x22, 0x94, 0x51, 0x50, 0x9c, 0xc6, 0x50, 0x78, 0xc9, 0xfa, 0xb5, 0x6b, + 0xe9, 0xd6, 0x85, 0x7e, 0xdd, 0xfe, 0x10, 0x7a, 0xc5, 0xca, 0xd4, 0x1b, 0xf8, 0xb4, 0x7c, 0x8c, + 0xb5, 0x8d, 0x75, 0x49, 0xa2, 0x55, 0x8e, 0x93, 0x40, 0x3e, 0x6d, 0x0c, 0xac, 0xe2, 0x3d, 0xf6, + 0xfe, 0xbd, 0x59, 0xcc, 0x36, 0xa5, 0xf2, 0x52, 0x8a, 0x67, 0xad, 0xa6, 0x78, 0xcb, 0xe9, 0x52, + 0xe3, 0x77, 0x4a, 0x97, 0x7e, 0x06, 0x6e, 0x40, 0x39, 0x43, 0x78, 0x5d, 0x84, 0xdf, 0x8d, 0xd5, + 0xfc, 0xc0, 0x64, 0x15, 0xe1, 0xb5, 0xe4, 0x95, 0x32, 0xee, 0x25, 0x4f, 0xae, 0x64, 0x1c, 0x7e, + 0x4b, 0xbd, 0x00, 0x3c, 0x73, 0xc5, 0xa8, 0x1a, 0x2b, 0x3a, 0x8f, 0x30, 0x8d, 0x95, 0xa2, 0x47, + 0x64, 0x57, 0x3d, 0x22, 0xb4, 0xe7, 0x3c, 0x55, 0x32, 0xcb, 0x8b, 0x64, 0x53, 0x53, 0x65, 0x5e, + 0xe6, 0x1a, 0x5d, 0xcc, 0xcb, 0xde, 0x87, 0x5e, 0x9c, 0xc4, 0x93, 0x78, 0x1e, 0x45, 0x98, 0x0e, + 0x9b, 0x76, 0x60, 0x37, 0x4e, 0xe2, 0x63, 0xc3, 0x62, 0x8f, 0xe0, 0xad, 0xba, 0x8a, 0xc6, 0x73, + 0x57, 0x77, 0x13, 0x6a, 0x7a, 0x84, 0xfa, 0x2d, 0xe8, 0x27, 0xe7, 0xbf, 0x94, 0x7e, 0x4e, 0x16, + 0x9b, 0x10, 0x90, 0x7b, 0xfa, 0x11, 0xd6, 0x7c, 0x34, 0xd1, 0xb1, 0x98, 0x49, 0xef, 0x4b, 0x70, + 0x4b, 0x23, 0x60, 0xbc, 0x3d, 0x3e, 0x39, 0x1e, 0xea, 0x88, 0x78, 0x70, 0xbc, 0x3f, 0xfc, 0xd3, + 0xbe, 0x85, 0x11, 0x9b, 0x0f, 0x5f, 0x0c, 0xf9, 0x68, 0xd8, 0x6f, 0x60, 0x34, 0xdd, 0x1f, 0x1e, + 0x0e, 0xc7, 0xc3, 0x7e, 0xf3, 0xab, 0x96, 0xd3, 0xe9, 0x3b, 0xdc, 0x91, 0x8b, 0x34, 0x0a, 0xfd, + 0x30, 0xf7, 0x46, 0x00, 0x55, 0x12, 0x84, 0x71, 0xa5, 0x5a, 0x5b, 0xdf, 0xa8, 0x93, 0x9b, 0x55, + 0x31, 0x73, 0x33, 0x50, 0x6b, 0xbc, 0x2a, 0x73, 0xd3, 0x72, 0xef, 0x0c, 0x9c, 0x23, 0x91, 0xbe, + 0x54, 0xe9, 0xf4, 0xca, 0x7a, 0x76, 0x6e, 0xba, 0x3b, 0xe6, 0x29, 0xfe, 0x08, 0x3a, 0x26, 0xb4, + 0x19, 0xaf, 0x59, 0x0a, 0x7b, 0x85, 0xcc, 0xfb, 0x1b, 0x0b, 0xde, 0x39, 0x4a, 0xae, 0x65, 0x99, + 0x8d, 0x9c, 0x8a, 0x9b, 0x28, 0x11, 0xc1, 0x1b, 0x80, 0xf8, 0x63, 0x00, 0x95, 0xcc, 0x33, 0x5f, + 0x4e, 0xa6, 0x65, 0x53, 0xc9, 0xd5, 0x9c, 0xe7, 0xa6, 0x7f, 0x2d, 0x55, 0x4e, 0xc2, 0xa6, 0x76, + 0x3e, 0xa4, 0x51, 0xf4, 0x03, 0xb0, 0xf3, 0x45, 0x5c, 0xf5, 0xb0, 0xda, 0x39, 0x96, 0x99, 0xde, + 0x1e, 0xb8, 0xe3, 0x05, 0x15, 0x5f, 0x73, 0xb5, 0xf4, 0xbe, 0x5a, 0xaf, 0x79, 0x5f, 0x1b, 0x2b, + 0x51, 0xfa, 0xbf, 0x2c, 0xe8, 0xd6, 0xd2, 0x24, 0xf6, 0x3e, 0xb4, 0xf2, 0x45, 0xbc, 0xdc, 0xfc, + 0x2d, 0x16, 0xe1, 0x24, 0x42, 0xbc, 0x61, 0x65, 0x26, 0x94, 0x0a, 0xa7, 0xb1, 0x0c, 0xcc, 0x27, + 0xb1, 0x5a, 0xdb, 0x35, 0x2c, 0x76, 0x08, 0x77, 0x75, 0x24, 0x29, 0x1a, 0x3f, 0x45, 0x3e, 0xfe, + 0xc1, 0x4a, 0x5a, 0xa6, 0x0b, 0xd4, 0xbd, 0x42, 0x4b, 0x97, 0xe0, 0xeb, 0xd3, 0x25, 0xe6, 0xc6, + 0x2e, 0xbc, 0x7d, 0x8b, 0xda, 0xf7, 0xea, 0x35, 0x3c, 0x80, 0x35, 0xac, 0xcd, 0xc3, 0x99, 0x54, + 0xb9, 0x98, 0xa5, 0x94, 0x9f, 0x98, 0x97, 0xa0, 0xc5, 0x1b, 0xb9, 0xf2, 0x3e, 0x86, 0xde, 0xa9, + 0x94, 0x19, 0x97, 0x2a, 0x4d, 0x62, 0xfd, 0x36, 0x2b, 0x3a, 0xb4, 0x79, 0x76, 0x0c, 0xe5, 0xfd, + 0x05, 0xb8, 0x98, 0x79, 0x3f, 0x15, 0xb9, 0x7f, 0xf9, 0x7d, 0x32, 0xf3, 0x8f, 0xa1, 0x93, 0x6a, + 0x98, 0x98, 0x3c, 0xba, 0x47, 0x31, 0xce, 0x40, 0x87, 0x17, 0x42, 0x8f, 0x43, 0xf3, 0x78, 0x3e, + 0xab, 0xff, 0x62, 0xd3, 0xd2, 0xbf, 0xd8, 0x2c, 0x95, 0x99, 0x8d, 0xe5, 0x32, 0x13, 0x91, 0x77, + 0x91, 0x64, 0x7f, 0x25, 0xb2, 0x40, 0x06, 0xa6, 0x96, 0xad, 0x18, 0xde, 0x37, 0xd0, 0x2d, 0x6e, + 0xe6, 0x20, 0xa0, 0x1f, 0x65, 0x08, 0x1a, 0x07, 0xc1, 0x12, 0x52, 0x74, 0x2d, 0x28, 0xe3, 0xe0, + 0xa0, 0xb8, 0x52, 0x4d, 0x2c, 0xaf, 0x6c, 0x7a, 0x1d, 0x65, 0x81, 0xfb, 0x0c, 0x7a, 0x45, 0xee, + 0x7c, 0x24, 0x73, 0x41, 0x60, 0x8b, 0x42, 0x19, 0xd7, 0x80, 0xe8, 0x68, 0xc6, 0x58, 0xbd, 0xa6, + 0xab, 0xea, 0x6d, 0x83, 0x6d, 0x90, 0xcc, 0xa0, 0xe5, 0x27, 0x81, 0x76, 0xa0, 0x36, 0xa7, 0x31, + 0x9a, 0x63, 0xa6, 0xa6, 0xc5, 0xe3, 0x39, 0x53, 0x53, 0xef, 0x37, 0x16, 0xac, 0x3d, 0x15, 0xfe, + 0xd5, 0x3c, 0x2d, 0x5e, 0xaf, 0x5a, 0x95, 0x63, 0x2d, 0x55, 0x39, 0xaf, 0xe9, 0xe5, 0xbe, 0x0b, + 0x9d, 0x79, 0x1c, 0x2e, 0x8a, 0xf4, 0xc5, 0xe5, 0x36, 0x92, 0xba, 0x87, 0x19, 0x25, 0x3e, 0x15, + 0x36, 0xe4, 0x74, 0x2e, 0x2f, 0x69, 0x6a, 0x0f, 0x84, 0xb1, 0x2f, 0x8d, 0x2d, 0x34, 0xb1, 0xda, + 0x16, 0xb5, 0x5f, 0xea, 0x36, 0xff, 0x39, 0xac, 0x0d, 0x17, 0x29, 0x35, 0xc4, 0xdf, 0xf8, 0xdc, + 0xd6, 0xce, 0xd2, 0x58, 0x3a, 0xcb, 0xca, 0x86, 0x9b, 0xc5, 0x86, 0x77, 0xfe, 0xd9, 0x82, 0x16, + 0x02, 0x0f, 0x4b, 0xb6, 0x3f, 0x96, 0x22, 0xcb, 0xcf, 0xa5, 0xc8, 0xd9, 0x12, 0xc8, 0x36, 0x96, + 0x28, 0xef, 0xce, 0x13, 0x8b, 0x6d, 0xeb, 0x5e, 0x7b, 0xf1, 0x13, 0xc2, 0x5a, 0x01, 0x5f, 0x82, + 0xf7, 0xaa, 0xfe, 0x16, 0xe9, 0x7f, 0x95, 0x84, 0xf1, 0x9e, 0x6e, 0x40, 0xb3, 0x55, 0xb8, 0xaf, + 0xce, 0x60, 0x9f, 0x81, 0x7d, 0xa0, 0xd0, 0xaf, 0x5e, 0x56, 0xa5, 0xb0, 0x5d, 0x77, 0x39, 0xef, + 0xce, 0xce, 0x6f, 0x9a, 0xd0, 0xfa, 0x46, 0x66, 0x09, 0xfb, 0x09, 0x74, 0x4c, 0x7b, 0x89, 0xd5, + 0xda, 0x48, 0x1b, 0xf4, 0x6e, 0xaf, 0xf4, 0x9d, 0x68, 0x95, 0xbe, 0x8e, 0xfc, 0x55, 0x55, 0xc9, + 0xaa, 0xee, 0xd7, 0x4b, 0x9b, 0xfa, 0x12, 0xfa, 0xa3, 0x3c, 0x93, 0x62, 0x56, 0x53, 0x5f, 0x36, + 0xd4, 0x6d, 0x25, 0x2a, 0xd9, 0xeb, 0x53, 0xb0, 0x75, 0xf0, 0x5a, 0x99, 0xb0, 0x5a, 0x6d, 0x92, + 0xf2, 0x43, 0xe8, 0x8e, 0x2e, 0x93, 0x79, 0x14, 0x8c, 0x64, 0x76, 0x2d, 0x59, 0xad, 0xc5, 0xbb, + 0x51, 0x1b, 0x7b, 0x77, 0xd8, 0x16, 0x80, 0xf6, 0xcf, 0xb3, 0x30, 0x50, 0xac, 0x83, 0xb2, 0xe3, + 0xf9, 0x4c, 0x7f, 0xb4, 0xe6, 0xb8, 0x5a, 0xb3, 0x16, 0xc3, 0x5e, 0xa7, 0xf9, 0x05, 0xac, 0xed, + 0x51, 0x8c, 0x3f, 0xc9, 0x76, 0xcf, 0x93, 0x2c, 0x67, 0xab, 0x6d, 0xde, 0x8d, 0x55, 0x86, 0x77, + 0x87, 0x3d, 0x01, 0x67, 0x9c, 0xdd, 0x68, 0xfd, 0xb7, 0x4c, 0xe8, 0xaf, 0xd6, 0xbb, 0xe5, 0x94, + 0x3b, 0xbf, 0x6e, 0x82, 0xfd, 0x8b, 0x24, 0xbb, 0x92, 0x19, 0x7b, 0x04, 0x36, 0xb5, 0x05, 0x0c, + 0x8c, 0xca, 0x16, 0xc1, 0x6d, 0x0b, 0x7d, 0x08, 0x2e, 0x19, 0x65, 0x2c, 0xd4, 0x95, 0xbe, 0x2a, + 0xfa, 0x2d, 0x58, 0xdb, 0x45, 0x27, 0x85, 0x74, 0xaf, 0xeb, 0xfa, 0xa2, 0xca, 0x56, 0xc8, 0x52, + 0xad, 0xbe, 0xd1, 0xd1, 0x85, 0xf7, 0x08, 0xa1, 0xf9, 0xc4, 0x62, 0x9f, 0x40, 0x6b, 0xa4, 0x4f, + 0x8a, 0x4a, 0xd5, 0x2f, 0x63, 0x1b, 0xeb, 0x05, 0xa3, 0xfc, 0xf2, 0x63, 0xb0, 0x75, 0xc6, 0xa0, + 0x8f, 0xb9, 0x94, 0x06, 0x6f, 0xf4, 0xeb, 0x2c, 0x33, 0xe1, 0x63, 0xb0, 0x75, 0xb4, 0xd1, 0x13, + 0x96, 0x22, 0xcf, 0x46, 0x71, 0x0f, 0xde, 0x1d, 0xf6, 0x09, 0xd8, 0xda, 0xc9, 0xb5, 0xde, 0x92, + 0xc3, 0xeb, 0xd3, 0xe9, 0x28, 0xa7, 0x51, 0xcb, 0xa5, 0x2f, 0xc3, 0x5a, 0x22, 0xc1, 0x8a, 0x13, + 0xdd, 0xe2, 0x7a, 0x5f, 0xc2, 0xda, 0x52, 0xd2, 0xc1, 0x06, 0x64, 0xe5, 0x5b, 0xf2, 0x90, 0xd5, + 0xc9, 0x4f, 0xfb, 0xff, 0xfa, 0xdd, 0x7d, 0xeb, 0xdf, 0xbe, 0xbb, 0x6f, 0xfd, 0xc7, 0x77, 0xf7, + 0xad, 0x5f, 0xfd, 0xe7, 0xfd, 0x3b, 0xe7, 0x36, 0xfd, 0x03, 0xc1, 0x17, 0xff, 0x1b, 0x00, 0x00, + 0xff, 0xff, 0x84, 0x31, 0x47, 0xaf, 0x84, 0x20, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -4846,9 +5077,9 @@ func (m *Query) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2a i++ i = encodeVarintPb(dAtA, i, uint64(m.UidList.Size())) - n1, err := m.UidList.MarshalTo(dAtA[i:]) - if err != nil { - return 0, err + n1, err1 := m.UidList.MarshalTo(dAtA[i:]) + if err1 != nil { + return 0, err1 } i += n1 } @@ -4856,9 +5087,9 @@ func (m *Query) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x32 i++ i = encodeVarintPb(dAtA, i, uint64(m.SrcFunc.Size())) - n2, err := m.SrcFunc.MarshalTo(dAtA[i:]) - if err != nil { - return 0, err + n2, err2 := m.SrcFunc.MarshalTo(dAtA[i:]) + if err2 != nil { + return 0, err2 } i += n2 } @@ -4876,9 +5107,9 @@ func (m *Query) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x42 i++ i = encodeVarintPb(dAtA, i, uint64(m.FacetParam.Size())) - n3, err := m.FacetParam.MarshalTo(dAtA[i:]) - if err != nil { - return 0, err + n3, err3 := m.FacetParam.MarshalTo(dAtA[i:]) + if err3 != nil { + return 0, err3 } i += n3 } @@ -4886,9 +5117,9 @@ func (m *Query) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x4a i++ i = encodeVarintPb(dAtA, i, uint64(m.FacetsFilter.Size())) - n4, err := m.FacetsFilter.MarshalTo(dAtA[i:]) - if err != nil { - return 0, err + n4, err4 := m.FacetsFilter.MarshalTo(dAtA[i:]) + if err4 != nil { + return 0, err4 } i += n4 } @@ -5388,9 +5619,9 @@ func (m *Group) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintPb(dAtA, i, uint64(v.Size())) - n7, err := v.MarshalTo(dAtA[i:]) - if err != nil { - return 0, err + n7, err7 := v.MarshalTo(dAtA[i:]) + if err7 != nil { + return 0, err7 } i += n7 } @@ -5416,9 +5647,9 @@ func (m *Group) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintPb(dAtA, i, uint64(v.Size())) - n8, err := v.MarshalTo(dAtA[i:]) - if err != nil { - return 0, err + n8, err8 := v.MarshalTo(dAtA[i:]) + if err8 != nil { + return 0, err8 } i += n8 } @@ -5474,9 +5705,9 @@ func (m *ZeroProposal) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintPb(dAtA, i, uint64(m.Member.Size())) - n9, err := m.Member.MarshalTo(dAtA[i:]) - if err != nil { - return 0, err + n9, err9 := m.Member.MarshalTo(dAtA[i:]) + if err9 != nil { + return 0, err9 } i += n9 } @@ -5484,9 +5715,9 @@ func (m *ZeroProposal) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1a i++ i = encodeVarintPb(dAtA, i, uint64(m.Tablet.Size())) - n10, err := m.Tablet.MarshalTo(dAtA[i:]) - if err != nil { - return 0, err + n10, err10 := m.Tablet.MarshalTo(dAtA[i:]) + if err10 != nil { + return 0, err10 } i += n10 } @@ -5509,9 +5740,9 @@ func (m *ZeroProposal) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x3a i++ i = encodeVarintPb(dAtA, i, uint64(m.Txn.Size())) - n11, err := m.Txn.MarshalTo(dAtA[i:]) - if err != nil { - return 0, err + n11, err11 := m.Txn.MarshalTo(dAtA[i:]) + if err11 != nil { + return 0, err11 } i += n11 } @@ -5572,9 +5803,9 @@ func (m *MembershipState) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintPb(dAtA, i, uint64(v.Size())) - n12, err := v.MarshalTo(dAtA[i:]) - if err != nil { - return 0, err + n12, err12 := v.MarshalTo(dAtA[i:]) + if err12 != nil { + return 0, err12 } i += n12 } @@ -5599,9 +5830,9 @@ func (m *MembershipState) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintPb(dAtA, i, uint64(v.Size())) - n13, err := v.MarshalTo(dAtA[i:]) - if err != nil { - return 0, err + n13, err13 := v.MarshalTo(dAtA[i:]) + if err13 != nil { + return 0, err13 } i += n13 } @@ -5665,9 +5896,9 @@ func (m *ConnectionState) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintPb(dAtA, i, uint64(m.Member.Size())) - n14, err := m.Member.MarshalTo(dAtA[i:]) - if err != nil { - return 0, err + n14, err14 := m.Member.MarshalTo(dAtA[i:]) + if err14 != nil { + return 0, err14 } i += n14 } @@ -5675,9 +5906,9 @@ func (m *ConnectionState) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintPb(dAtA, i, uint64(m.State.Size())) - n15, err := m.State.MarshalTo(dAtA[i:]) - if err != nil { - return 0, err + n15, err15 := m.State.MarshalTo(dAtA[i:]) + if err15 != nil { + return 0, err15 } i += n15 } @@ -5944,9 +6175,9 @@ func (m *Snapshot) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintPb(dAtA, i, uint64(m.Context.Size())) - n16, err := m.Context.MarshalTo(dAtA[i:]) - if err != nil { - return 0, err + n16, err16 := m.Context.MarshalTo(dAtA[i:]) + if err16 != nil { + return 0, err16 } i += n16 } @@ -5995,9 +6226,9 @@ func (m *Proposal) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintPb(dAtA, i, uint64(m.Mutations.Size())) - n17, err := m.Mutations.MarshalTo(dAtA[i:]) - if err != nil { - return 0, err + n17, err17 := m.Mutations.MarshalTo(dAtA[i:]) + if err17 != nil { + return 0, err17 } i += n17 } @@ -6017,9 +6248,9 @@ func (m *Proposal) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2a i++ i = encodeVarintPb(dAtA, i, uint64(m.State.Size())) - n18, err := m.State.MarshalTo(dAtA[i:]) - if err != nil { - return 0, err + n18, err18 := m.State.MarshalTo(dAtA[i:]) + if err18 != nil { + return 0, err18 } i += n18 } @@ -6039,9 +6270,9 @@ func (m *Proposal) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x42 i++ i = encodeVarintPb(dAtA, i, uint64(m.Delta.Size())) - n19, err := m.Delta.MarshalTo(dAtA[i:]) - if err != nil { - return 0, err + n19, err19 := m.Delta.MarshalTo(dAtA[i:]) + if err19 != nil { + return 0, err19 } i += n19 } @@ -6049,9 +6280,9 @@ func (m *Proposal) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x4a i++ i = encodeVarintPb(dAtA, i, uint64(m.Snapshot.Size())) - n20, err := m.Snapshot.MarshalTo(dAtA[i:]) - if err != nil { - return 0, err + n20, err20 := m.Snapshot.MarshalTo(dAtA[i:]) + if err20 != nil { + return 0, err20 } i += n20 } @@ -6280,9 +6511,9 @@ func (m *PostingList) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintPb(dAtA, i, uint64(m.Pack.Size())) - n21, err := m.Pack.MarshalTo(dAtA[i:]) - if err != nil { - return 0, err + n21, err21 := m.Pack.MarshalTo(dAtA[i:]) + if err21 != nil { + return 0, err21 } i += n21 } @@ -6536,9 +6767,9 @@ func (m *FilterTree) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1a i++ i = encodeVarintPb(dAtA, i, uint64(m.Func.Size())) - n22, err := m.Func.MarshalTo(dAtA[i:]) - if err != nil { - return 0, err + n22, err22 := m.Func.MarshalTo(dAtA[i:]) + if err22 != nil { + return 0, err22 } i += n22 } @@ -6840,9 +7071,9 @@ func (m *MapEntry) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1a i++ i = encodeVarintPb(dAtA, i, uint64(m.Posting.Size())) - n23, err := m.Posting.MarshalTo(dAtA[i:]) - if err != nil { - return 0, err + n23, err23 := m.Posting.MarshalTo(dAtA[i:]) + if err23 != nil { + return 0, err23 } i += n23 } @@ -7066,9 +7297,9 @@ func (m *RaftBatch) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintPb(dAtA, i, uint64(m.Context.Size())) - n26, err := m.Context.MarshalTo(dAtA[i:]) - if err != nil { - return 0, err + n26, err26 := m.Context.MarshalTo(dAtA[i:]) + if err26 != nil { + return 0, err26 } i += n26 } @@ -7076,9 +7307,9 @@ func (m *RaftBatch) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintPb(dAtA, i, uint64(m.Payload.Size())) - n27, err := m.Payload.MarshalTo(dAtA[i:]) - if err != nil { - return 0, err + n27, err27 := m.Payload.MarshalTo(dAtA[i:]) + if err27 != nil { + return 0, err27 } i += n27 } @@ -7118,6 +7349,16 @@ func (m *Num) MarshalTo(dAtA []byte) (int, error) { } i++ } + if m.Forwarded { + dAtA[i] = 0x18 + i++ + if m.Forwarded { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i++ + } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } @@ -8568,6 +8809,9 @@ func (m *Num) Size() (n int) { if m.ReadOnly { n += 2 } + if m.Forwarded { + n += 2 + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -16202,6 +16446,26 @@ func (m *Num) Unmarshal(dAtA []byte) error { } } m.ReadOnly = bool(v != 0) + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Forwarded", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.Forwarded = bool(v != 0) default: iNdEx = preIndex skippy, err := skipPb(dAtA[iNdEx:]) @@ -16680,7 +16944,7 @@ func (m *BackupRequest) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.Since |= (uint64(b) & 0x7F) << shift + m.Since |= uint64(b&0x7F) << shift if b < 0x80 { break } @@ -16699,7 +16963,7 @@ func (m *BackupRequest) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.SnapshotTs |= (uint64(b) & 0x7F) << shift + m.SnapshotTs |= uint64(b&0x7F) << shift if b < 0x80 { break } @@ -16950,220 +17214,3 @@ var ( ErrInvalidLengthPb = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowPb = fmt.Errorf("proto: integer overflow") ) - -func init() { proto.RegisterFile("pb.proto", fileDescriptor_pb_4b0c31c1b577faa7) } - -var fileDescriptor_pb_4b0c31c1b577faa7 = []byte{ - // 3368 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x3a, 0xcb, 0x6e, 0x23, 0x57, - 0x76, 0x5d, 0x7c, 0x14, 0xab, 0x0e, 0x29, 0x35, 0x7d, 0xed, 0x69, 0xd3, 0x9a, 0x99, 0x6e, 0xb9, - 0xfc, 0x68, 0xb9, 0x3d, 0x56, 0xb7, 0x65, 0x27, 0x19, 0x4f, 0x90, 0x85, 0x5a, 0x62, 0x77, 0x64, - 0xeb, 0x95, 0x4b, 0xaa, 0x27, 0x31, 0x82, 0x10, 0x57, 0x55, 0x57, 0x54, 0x8d, 0x8a, 0x55, 0x95, - 0xba, 0x45, 0x81, 0xf2, 0x2e, 0x8b, 0x04, 0xc9, 0x1f, 0xcc, 0x22, 0xc8, 0x62, 0x96, 0xd9, 0xcc, - 0x76, 0xd6, 0x01, 0x02, 0x64, 0x19, 0xe4, 0x0b, 0x02, 0x27, 0xdf, 0x10, 0x20, 0xbb, 0xe0, 0x9c, - 0x7b, 0xeb, 0x41, 0xb6, 0xba, 0x6d, 0x07, 0x98, 0x95, 0xea, 0xbc, 0xee, 0xe3, 0xbc, 0xee, 0x39, - 0x87, 0x02, 0x27, 0x3d, 0xdf, 0x4e, 0xb3, 0x24, 0x4f, 0x58, 0x23, 0x3d, 0xdf, 0x70, 0x45, 0x1a, - 0x6a, 0x70, 0xe3, 0xe1, 0x34, 0xcc, 0x2f, 0xe7, 0xe7, 0xdb, 0x7e, 0x32, 0x7b, 0x1c, 0x4c, 0x33, - 0x91, 0x5e, 0x7e, 0x12, 0x26, 0x8f, 0xcf, 0x45, 0x30, 0x95, 0xd9, 0xe3, 0xf4, 0xfc, 0x71, 0x21, - 0xe7, 0x6d, 0x40, 0xeb, 0x30, 0x54, 0x39, 0x63, 0xd0, 0x9a, 0x87, 0x81, 0x1a, 0x58, 0x9b, 0xcd, - 0x2d, 0x9b, 0xd3, 0xb7, 0x77, 0x04, 0xee, 0x58, 0xa8, 0xab, 0x17, 0x22, 0x9a, 0x4b, 0xd6, 0x87, - 0xe6, 0xb5, 0x88, 0x06, 0xd6, 0xa6, 0xb5, 0xd5, 0xe3, 0xf8, 0xc9, 0xb6, 0xc1, 0xb9, 0x16, 0xd1, - 0x24, 0xbf, 0x49, 0xe5, 0xa0, 0xb1, 0x69, 0x6d, 0xad, 0xef, 0xbc, 0xb9, 0x9d, 0x9e, 0x6f, 0x9f, - 0x26, 0x2a, 0x0f, 0xe3, 0xe9, 0xf6, 0x0b, 0x11, 0x8d, 0x6f, 0x52, 0xc9, 0x3b, 0xd7, 0xfa, 0xc3, - 0x3b, 0x81, 0xee, 0x28, 0xf3, 0x9f, 0xcd, 0x63, 0x3f, 0x0f, 0x93, 0x18, 0x77, 0x8c, 0xc5, 0x4c, - 0xd2, 0x8a, 0x2e, 0xa7, 0x6f, 0xc4, 0x89, 0x6c, 0xaa, 0x06, 0xcd, 0xcd, 0x26, 0xe2, 0xf0, 0x9b, - 0x0d, 0xa0, 0x13, 0xaa, 0xbd, 0x64, 0x1e, 0xe7, 0x83, 0xd6, 0xa6, 0xb5, 0xe5, 0xf0, 0x02, 0xf4, - 0xfe, 0xa1, 0x09, 0xed, 0x3f, 0x9b, 0xcb, 0xec, 0x86, 0xe4, 0xf2, 0x3c, 0x2b, 0xd6, 0xc2, 0x6f, - 0xf6, 0x16, 0xb4, 0x23, 0x11, 0x4f, 0xd5, 0xa0, 0x41, 0x8b, 0x69, 0x80, 0xfd, 0x18, 0x5c, 0x71, - 0x91, 0xcb, 0x6c, 0x32, 0x0f, 0x83, 0x41, 0x73, 0xd3, 0xda, 0xb2, 0xb9, 0x43, 0x88, 0xb3, 0x30, - 0x60, 0xef, 0x80, 0x13, 0x24, 0x13, 0xbf, 0xbe, 0x57, 0x90, 0xd0, 0x5e, 0xec, 0x3d, 0x70, 0xe6, - 0x61, 0x30, 0x89, 0x42, 0x95, 0x0f, 0xda, 0x9b, 0xd6, 0x56, 0x77, 0xc7, 0xc1, 0xcb, 0xa2, 0xee, - 0x78, 0x67, 0x1e, 0x06, 0xa4, 0xc4, 0x47, 0xe0, 0xa8, 0xcc, 0x9f, 0x5c, 0xcc, 0x63, 0x7f, 0x60, - 0x13, 0xd3, 0x5d, 0x64, 0xaa, 0xdd, 0x9a, 0x77, 0x94, 0x06, 0xf0, 0x5a, 0x99, 0xbc, 0x96, 0x99, - 0x92, 0x83, 0x8e, 0xde, 0xca, 0x80, 0xec, 0x09, 0x74, 0x2f, 0x84, 0x2f, 0xf3, 0x49, 0x2a, 0x32, - 0x31, 0x1b, 0x38, 0xd5, 0x42, 0xcf, 0x10, 0x7d, 0x8a, 0x58, 0xc5, 0xe1, 0xa2, 0x04, 0xd8, 0x67, - 0xb0, 0x46, 0x90, 0x9a, 0x5c, 0x84, 0x51, 0x2e, 0xb3, 0x81, 0x4b, 0x32, 0xeb, 0x24, 0x43, 0x98, - 0x71, 0x26, 0x25, 0xef, 0x69, 0x26, 0x8d, 0x61, 0x3f, 0x05, 0x90, 0x8b, 0x54, 0xc4, 0xc1, 0x44, - 0x44, 0xd1, 0x00, 0xe8, 0x0c, 0xae, 0xc6, 0xec, 0x46, 0x11, 0x7b, 0x1b, 0xcf, 0x27, 0x82, 0x49, - 0xae, 0x06, 0x6b, 0x9b, 0xd6, 0x56, 0x8b, 0xdb, 0x08, 0x8e, 0x15, 0xea, 0xd5, 0x17, 0xfe, 0xa5, - 0x1c, 0xac, 0x6f, 0x5a, 0x5b, 0x6d, 0xae, 0x01, 0x6f, 0x07, 0x5c, 0xf2, 0x13, 0xd2, 0xc3, 0x07, - 0x60, 0x5f, 0x23, 0xa0, 0xdd, 0xa9, 0xbb, 0xb3, 0x86, 0x07, 0x29, 0x5d, 0x89, 0x1b, 0xa2, 0x77, - 0x1f, 0x9c, 0x43, 0x11, 0x4f, 0x0b, 0xff, 0x43, 0x03, 0x91, 0x80, 0xcb, 0xe9, 0xdb, 0xfb, 0x75, - 0x03, 0x6c, 0x2e, 0xd5, 0x3c, 0xca, 0xd9, 0x43, 0x00, 0x54, 0xff, 0x4c, 0xe4, 0x59, 0xb8, 0x30, - 0xab, 0x56, 0x06, 0x70, 0xe7, 0x61, 0x70, 0x44, 0x24, 0xf6, 0x04, 0x7a, 0xb4, 0x7a, 0xc1, 0xda, - 0xa8, 0x0e, 0x50, 0x9e, 0x8f, 0x77, 0x89, 0xc5, 0x48, 0xdc, 0x03, 0x9b, 0x2c, 0xae, 0xbd, 0x6e, - 0x8d, 0x1b, 0x88, 0x7d, 0x00, 0xeb, 0x61, 0x9c, 0xa3, 0x45, 0xfc, 0x7c, 0x12, 0x48, 0x55, 0xb8, - 0xc4, 0x5a, 0x89, 0xdd, 0x97, 0x2a, 0x67, 0x9f, 0x82, 0x56, 0x6b, 0xb1, 0x61, 0x9b, 0x36, 0x5c, - 0x2f, 0xcd, 0xa5, 0xf4, 0x8e, 0xc4, 0x63, 0x76, 0xfc, 0x04, 0xba, 0x78, 0xbf, 0x42, 0xc2, 0x26, - 0x89, 0x1e, 0xdd, 0xc6, 0xa8, 0x83, 0x03, 0x32, 0x18, 0x76, 0x54, 0x0d, 0xba, 0x9d, 0x76, 0x13, - 0xfa, 0xf6, 0x86, 0xd0, 0x3e, 0xc9, 0x02, 0x99, 0xdd, 0xea, 0xf9, 0x0c, 0x5a, 0x81, 0x54, 0x3e, - 0x05, 0xa5, 0xc3, 0xe9, 0xbb, 0x8a, 0x86, 0x66, 0x2d, 0x1a, 0xbc, 0x7f, 0xb2, 0xa0, 0x3b, 0x4a, - 0xb2, 0xfc, 0x48, 0x2a, 0x25, 0xa6, 0x92, 0x3d, 0x80, 0x76, 0x82, 0xcb, 0x1a, 0x0d, 0xbb, 0x78, - 0x26, 0xda, 0x87, 0x6b, 0xfc, 0x8a, 0x1d, 0x1a, 0xaf, 0xb6, 0x03, 0x7a, 0x09, 0xc5, 0x51, 0xd3, - 0x78, 0x09, 0x45, 0xd1, 0x3d, 0xb0, 0x93, 0x8b, 0x0b, 0x25, 0xb5, 0x2e, 0xdb, 0xdc, 0x40, 0xaf, - 0x74, 0x36, 0xef, 0x0f, 0x00, 0xf0, 0x7c, 0x3f, 0xd0, 0x0b, 0xbc, 0x4b, 0xe8, 0x72, 0x71, 0x91, - 0xef, 0x25, 0x71, 0x2e, 0x17, 0x39, 0x5b, 0x87, 0x46, 0x18, 0x90, 0x8a, 0x6c, 0xde, 0x08, 0x03, - 0x3c, 0xdc, 0x34, 0x4b, 0xe6, 0x29, 0x69, 0x68, 0x8d, 0x6b, 0x80, 0x54, 0x19, 0x04, 0x19, 0x9d, - 0x18, 0x55, 0x19, 0x04, 0x19, 0x7b, 0x00, 0x5d, 0x15, 0x8b, 0x54, 0x5d, 0x26, 0x39, 0x1e, 0xae, - 0x45, 0x87, 0x83, 0x02, 0x35, 0x56, 0xde, 0xbf, 0x5a, 0x60, 0x1f, 0xc9, 0xd9, 0xb9, 0xcc, 0x5e, - 0xda, 0xe5, 0x1d, 0x70, 0x68, 0xe1, 0x49, 0x18, 0x98, 0x8d, 0x3a, 0x04, 0x1f, 0x04, 0xb7, 0x6e, - 0x75, 0x0f, 0xec, 0x48, 0x0a, 0x54, 0xbe, 0xf6, 0x33, 0x03, 0xa1, 0x6e, 0xc4, 0x6c, 0x12, 0x48, - 0x11, 0x50, 0xe2, 0x71, 0xb8, 0x2d, 0x66, 0xfb, 0x52, 0x04, 0x78, 0xb6, 0x48, 0xa8, 0x7c, 0x32, - 0x4f, 0x03, 0x91, 0x4b, 0x4a, 0x38, 0x2d, 0x74, 0x1c, 0x95, 0x9f, 0x11, 0x86, 0x3d, 0x82, 0x37, - 0xfc, 0x68, 0xae, 0x30, 0xdb, 0x85, 0xf1, 0x45, 0x32, 0x49, 0xe2, 0xe8, 0x86, 0xf4, 0xeb, 0xf0, - 0xbb, 0x86, 0x70, 0x10, 0x5f, 0x24, 0x27, 0x71, 0x74, 0xe3, 0xfd, 0xae, 0x01, 0xed, 0xe7, 0xa4, - 0x86, 0x27, 0xd0, 0x99, 0xd1, 0x85, 0x8a, 0xe8, 0xbd, 0x87, 0x1a, 0x26, 0xda, 0xb6, 0xbe, 0xa9, - 0x1a, 0xc6, 0x79, 0x76, 0xc3, 0x0b, 0x36, 0x94, 0xc8, 0xc5, 0x79, 0x24, 0x73, 0x65, 0x3c, 0xa2, - 0x26, 0x31, 0xd6, 0x04, 0x23, 0x61, 0xd8, 0x56, 0xd5, 0xda, 0x5c, 0x55, 0x2b, 0xdb, 0x00, 0xc7, - 0xbf, 0x94, 0xfe, 0x95, 0x9a, 0xcf, 0x8c, 0xd2, 0x4b, 0x78, 0xe3, 0x19, 0xf4, 0xea, 0xe7, 0xc0, - 0x97, 0xe9, 0x4a, 0xde, 0x90, 0xe2, 0x5b, 0x1c, 0x3f, 0xd9, 0x26, 0xb4, 0x29, 0xc2, 0x49, 0xed, - 0xdd, 0x1d, 0xc0, 0xe3, 0x68, 0x11, 0xae, 0x09, 0xbf, 0x68, 0xfc, 0xdc, 0xc2, 0x75, 0xea, 0xa7, - 0xab, 0xaf, 0xe3, 0xbe, 0x7a, 0x1d, 0x2d, 0x52, 0x5b, 0xc7, 0xfb, 0xdf, 0x06, 0xf4, 0xbe, 0x96, - 0x59, 0x72, 0x9a, 0x25, 0x69, 0xa2, 0x44, 0xc4, 0x76, 0x97, 0x6f, 0xa7, 0xb5, 0xb8, 0x89, 0xc2, - 0x75, 0xb6, 0xed, 0x51, 0x79, 0x5d, 0xad, 0x9d, 0xfa, 0xfd, 0x3d, 0xb0, 0xb5, 0x76, 0x6f, 0xb9, - 0x82, 0xa1, 0x20, 0x8f, 0xd6, 0x27, 0xe9, 0x6f, 0xf9, 0x78, 0x86, 0xc2, 0xee, 0x03, 0xcc, 0xc4, - 0xe2, 0x50, 0x0a, 0x25, 0x0f, 0x82, 0xc2, 0x7d, 0x2b, 0x0c, 0xea, 0x79, 0x26, 0x16, 0xe3, 0x45, - 0x3c, 0x56, 0xe4, 0x5d, 0x2d, 0x5e, 0xc2, 0xec, 0x27, 0xe0, 0xce, 0xc4, 0x02, 0xe3, 0xe8, 0x20, - 0x30, 0xde, 0x55, 0x21, 0xd8, 0xbb, 0xd0, 0xcc, 0x17, 0x31, 0x25, 0x25, 0x7c, 0x9d, 0xb0, 0xf4, - 0x18, 0x2f, 0x62, 0x13, 0x71, 0x1c, 0x69, 0x85, 0x42, 0x9d, 0x4a, 0xa1, 0x7d, 0x68, 0xfa, 0x61, - 0x40, 0xcf, 0x93, 0xcb, 0xf1, 0x73, 0xe3, 0x4f, 0xe0, 0xee, 0x8a, 0x1e, 0xea, 0x76, 0x58, 0xd3, - 0x62, 0x6f, 0xd5, 0xed, 0xd0, 0xaa, 0xeb, 0xfe, 0x77, 0x4d, 0xb8, 0x6b, 0x9c, 0xe1, 0x32, 0x4c, - 0x47, 0x39, 0xba, 0xfd, 0x00, 0x3a, 0x94, 0x6d, 0x64, 0x66, 0x7c, 0xa2, 0x00, 0xd9, 0x1f, 0x81, - 0x4d, 0x11, 0x58, 0xf8, 0xe9, 0x83, 0x4a, 0xab, 0xa5, 0xb8, 0xf6, 0x5b, 0x63, 0x12, 0xc3, 0xce, - 0x3e, 0x87, 0xf6, 0x37, 0x32, 0x4b, 0x74, 0xf6, 0xec, 0xee, 0xdc, 0xbf, 0x4d, 0x0e, 0x6d, 0x6b, - 0xc4, 0x34, 0xf3, 0xef, 0x51, 0xf9, 0xef, 0x63, 0xbe, 0x9c, 0x25, 0xd7, 0x32, 0x18, 0x74, 0xe8, - 0x44, 0x75, 0xff, 0x28, 0x48, 0x85, 0xb6, 0x9d, 0x4a, 0xdb, 0xfb, 0xd0, 0xad, 0x5d, 0xef, 0x16, - 0x4d, 0x3f, 0x58, 0xf6, 0x78, 0xb7, 0x0c, 0xe4, 0x7a, 0xe0, 0xec, 0x03, 0x54, 0x97, 0xfd, 0xff, - 0x86, 0x9f, 0xf7, 0x37, 0x16, 0xdc, 0xdd, 0x4b, 0xe2, 0x58, 0x52, 0x61, 0xa4, 0x4d, 0x57, 0xb9, - 0xbd, 0xf5, 0x4a, 0xb7, 0xff, 0x08, 0xda, 0x0a, 0x99, 0xcd, 0xea, 0x6f, 0xde, 0x62, 0x0b, 0xae, - 0x39, 0x30, 0xcd, 0xcc, 0xc4, 0x62, 0x92, 0xca, 0x38, 0x08, 0xe3, 0x69, 0x91, 0x66, 0x66, 0x62, - 0x71, 0xaa, 0x31, 0xde, 0x6f, 0x2c, 0xb0, 0x75, 0xc4, 0x2c, 0x65, 0x6b, 0x6b, 0x39, 0x5b, 0xff, - 0x04, 0xdc, 0x34, 0x93, 0x41, 0xe8, 0x17, 0xbb, 0xba, 0xbc, 0x42, 0xa0, 0x73, 0x5e, 0x24, 0x99, - 0x2f, 0x69, 0x79, 0x87, 0x6b, 0x00, 0xb1, 0x2a, 0x15, 0xbe, 0x2e, 0xee, 0x9a, 0x5c, 0x03, 0x98, - 0xe3, 0xb5, 0x71, 0xc8, 0x28, 0x0e, 0x37, 0x10, 0x56, 0xa5, 0xf4, 0xfe, 0x51, 0x86, 0x76, 0x89, - 0xe4, 0x20, 0x82, 0x52, 0xf3, 0x3f, 0x37, 0xa0, 0xb7, 0x1f, 0x66, 0xd2, 0xcf, 0x65, 0x30, 0x0c, - 0xa6, 0xb4, 0x8a, 0x8c, 0xf3, 0x30, 0xbf, 0x31, 0x8f, 0x8d, 0x81, 0xca, 0x5a, 0xa0, 0xb1, 0x5c, - 0x05, 0x6b, 0x5b, 0x34, 0xa9, 0x70, 0xd7, 0x00, 0xdb, 0x01, 0xd0, 0x55, 0x12, 0x15, 0xef, 0xad, - 0x57, 0x17, 0xef, 0x2e, 0xb1, 0xe1, 0x27, 0x2a, 0x48, 0xcb, 0x84, 0xfa, 0x21, 0xb2, 0xa9, 0xb2, - 0x9f, 0xa3, 0x23, 0x53, 0x71, 0x71, 0x2e, 0x23, 0x72, 0x54, 0x2a, 0x2e, 0xce, 0x65, 0x54, 0x96, - 0x74, 0x1d, 0x7d, 0x1c, 0xfc, 0x66, 0xef, 0x41, 0x23, 0x49, 0xe9, 0xf2, 0x66, 0xc3, 0xfa, 0xc5, - 0xb6, 0x4f, 0x52, 0xde, 0x48, 0x52, 0xf4, 0x02, 0x5d, 0xa9, 0x0e, 0x5c, 0xe3, 0xdc, 0x98, 0x5d, - 0xa8, 0x9a, 0xe2, 0x86, 0xe2, 0xdd, 0x83, 0xc6, 0x49, 0xca, 0x3a, 0xd0, 0x1c, 0x0d, 0xc7, 0xfd, - 0x3b, 0xf8, 0xb1, 0x3f, 0x3c, 0xec, 0x5b, 0xde, 0xdf, 0x37, 0xc0, 0x3d, 0x9a, 0xe7, 0x02, 0x7d, - 0x4a, 0xbd, 0xce, 0xa8, 0xef, 0x80, 0xa3, 0x72, 0x91, 0x51, 0x86, 0xd6, 0x69, 0xa5, 0x43, 0xf0, - 0x58, 0xb1, 0x0f, 0xa1, 0x2d, 0x83, 0xa9, 0x2c, 0xa2, 0xbd, 0xbf, 0x7a, 0x4e, 0xae, 0xc9, 0x6c, - 0x0b, 0x6c, 0xe5, 0x5f, 0xca, 0x99, 0x18, 0xb4, 0x2a, 0xc6, 0x11, 0x61, 0xf4, 0x0b, 0xcc, 0x0d, - 0x9d, 0x1a, 0x8b, 0x2c, 0x49, 0xa9, 0xd2, 0x6e, 0x9b, 0xc6, 0x22, 0x4b, 0x52, 0xac, 0xb3, 0x77, - 0xe0, 0x47, 0xe1, 0x34, 0x4e, 0x32, 0x39, 0x09, 0xe3, 0x40, 0x2e, 0x26, 0x7e, 0x12, 0x5f, 0x44, - 0xa1, 0x9f, 0x93, 0x2e, 0x1d, 0xfe, 0xa6, 0x26, 0x1e, 0x20, 0x6d, 0xcf, 0x90, 0xd8, 0xfb, 0xd0, - 0x46, 0xc3, 0x29, 0x13, 0xfc, 0x54, 0x6c, 0xa2, 0x8d, 0xcc, 0xae, 0x9a, 0xe8, 0x2d, 0xc0, 0x29, - 0x52, 0x2b, 0xfb, 0x08, 0x73, 0x22, 0xa5, 0x66, 0x13, 0x59, 0xd4, 0x4f, 0xd4, 0x6a, 0x24, 0x5e, - 0xd0, 0xd1, 0x98, 0x74, 0x92, 0x22, 0xd9, 0x12, 0x50, 0xaf, 0xd0, 0x9a, 0x4b, 0xed, 0x00, 0x16, - 0x9b, 0x49, 0x2c, 0x4d, 0xd1, 0x42, 0xdf, 0xde, 0x3f, 0x36, 0xc0, 0x29, 0x5f, 0xc3, 0x8f, 0xc1, - 0x9d, 0x15, 0x06, 0x31, 0x31, 0x4b, 0xe5, 0x78, 0x69, 0x25, 0x5e, 0xd1, 0xd9, 0x3d, 0x68, 0x5c, - 0x5d, 0x1b, 0x75, 0xda, 0xc8, 0xf5, 0xd5, 0x0b, 0xde, 0xb8, 0xba, 0xae, 0x82, 0xbe, 0xfd, 0x9d, - 0x41, 0xff, 0x10, 0xee, 0xfa, 0x91, 0x14, 0xf1, 0xa4, 0x8a, 0x59, 0xed, 0x96, 0xeb, 0x84, 0x3e, - 0x2d, 0x03, 0xd7, 0x24, 0xae, 0x4e, 0xf5, 0x3c, 0x7d, 0x00, 0xed, 0x40, 0x46, 0xb9, 0xa8, 0xf7, - 0x5c, 0x27, 0x99, 0xf0, 0x23, 0xb9, 0x8f, 0x68, 0xae, 0xa9, 0x6c, 0x0b, 0x9c, 0xe2, 0xa9, 0x36, - 0x9d, 0x16, 0x15, 0xef, 0x85, 0xb2, 0x79, 0x49, 0xad, 0x74, 0x09, 0x35, 0x5d, 0x7a, 0x9f, 0x42, - 0xf3, 0xab, 0x17, 0x23, 0x73, 0x57, 0xeb, 0xa5, 0xbb, 0x16, 0x1a, 0x6d, 0xd4, 0x34, 0xfa, 0x3f, - 0x4d, 0xe8, 0x98, 0xd8, 0xc4, 0x73, 0xcf, 0xcb, 0x42, 0x13, 0x3f, 0x97, 0xdf, 0xc7, 0x32, 0xc8, - 0xeb, 0xfd, 0x79, 0xf3, 0xbb, 0xfb, 0x73, 0xf6, 0x0b, 0xe8, 0xa5, 0x9a, 0x56, 0x4f, 0x0b, 0x6f, - 0xd7, 0x65, 0xcc, 0x5f, 0x92, 0xeb, 0xa6, 0x15, 0x80, 0x0e, 0x4e, 0x2d, 0x4d, 0x2e, 0xa6, 0x64, - 0xa2, 0x1e, 0xef, 0x20, 0x3c, 0x16, 0xd3, 0x57, 0x24, 0x87, 0xef, 0x11, 0xe3, 0x58, 0x50, 0x27, - 0xe9, 0xa0, 0x47, 0x71, 0x8b, 0x79, 0xa1, 0x1e, 0xb2, 0x6b, 0xcb, 0x21, 0xfb, 0x63, 0x70, 0xfd, - 0x64, 0x36, 0x0b, 0x89, 0xb6, 0x6e, 0x0a, 0x46, 0x42, 0x8c, 0x95, 0xf7, 0x77, 0x16, 0x74, 0xcc, - 0x6d, 0x59, 0x17, 0x3a, 0xfb, 0xc3, 0x67, 0xbb, 0x67, 0x87, 0x98, 0x35, 0x00, 0xec, 0xa7, 0x07, - 0xc7, 0xbb, 0xfc, 0x2f, 0xfa, 0x16, 0x66, 0x90, 0x83, 0xe3, 0x71, 0xbf, 0xc1, 0x5c, 0x68, 0x3f, - 0x3b, 0x3c, 0xd9, 0x1d, 0xf7, 0x9b, 0xcc, 0x81, 0xd6, 0xd3, 0x93, 0x93, 0xc3, 0x7e, 0x8b, 0xf5, - 0xc0, 0xd9, 0xdf, 0x1d, 0x0f, 0xc7, 0x07, 0x47, 0xc3, 0x7e, 0x1b, 0x79, 0x9f, 0x0f, 0x4f, 0xfa, - 0x36, 0x7e, 0x9c, 0x1d, 0xec, 0xf7, 0x3b, 0x48, 0x3f, 0xdd, 0x1d, 0x8d, 0x7e, 0x79, 0xc2, 0xf7, - 0xfb, 0x0e, 0xae, 0x3b, 0x1a, 0xf3, 0x83, 0xe3, 0xe7, 0x7d, 0x17, 0xbf, 0x4f, 0x9e, 0x7e, 0x39, - 0xdc, 0x1b, 0xf7, 0xc1, 0xfb, 0x14, 0xba, 0x35, 0x0d, 0xa2, 0x34, 0x1f, 0x3e, 0xeb, 0xdf, 0xc1, - 0x2d, 0x5f, 0xec, 0x1e, 0x9e, 0x0d, 0xfb, 0x16, 0x5b, 0x07, 0xa0, 0xcf, 0xc9, 0xe1, 0xee, 0xf1, - 0xf3, 0x7e, 0xc3, 0xfb, 0x43, 0x70, 0xce, 0xc2, 0xe0, 0x69, 0x94, 0xf8, 0x57, 0xe8, 0x18, 0xe7, - 0x42, 0x49, 0xf3, 0xd4, 0xd2, 0x37, 0xbe, 0x05, 0xe4, 0x94, 0xca, 0xd8, 0xde, 0x40, 0xde, 0x31, - 0x74, 0xce, 0xc2, 0xe0, 0x54, 0xf8, 0x57, 0xd8, 0xe8, 0x9f, 0xa3, 0xfc, 0x44, 0x85, 0xdf, 0x48, - 0x93, 0x06, 0x5d, 0xc2, 0x8c, 0xc2, 0x6f, 0x24, 0x7b, 0x1f, 0x6c, 0x02, 0x8a, 0xa2, 0x88, 0x7c, - 0xb9, 0xd8, 0x93, 0x1b, 0x9a, 0x97, 0x97, 0x47, 0xa7, 0x76, 0xfd, 0x01, 0xb4, 0x52, 0xe1, 0x5f, - 0x99, 0x64, 0xd2, 0x35, 0x22, 0xb8, 0x1d, 0x27, 0x02, 0x7b, 0x08, 0x8e, 0xf1, 0x8f, 0x62, 0xdd, - 0x6e, 0xcd, 0x91, 0x78, 0x49, 0x5c, 0xb6, 0x5c, 0x73, 0xc5, 0x72, 0x9f, 0x03, 0x54, 0x33, 0x8f, - 0x5b, 0x0a, 0xf4, 0xb7, 0xa0, 0x2d, 0xa2, 0xd0, 0x5c, 0xde, 0xe5, 0x1a, 0xf0, 0x8e, 0xa1, 0x5b, - 0x9b, 0x94, 0xa0, 0xdb, 0x88, 0x28, 0x9a, 0x5c, 0xc9, 0x1b, 0x45, 0xb2, 0x0e, 0xef, 0x88, 0x28, - 0xfa, 0x4a, 0xde, 0x28, 0x4c, 0xa4, 0x7a, 0xc8, 0xd2, 0x58, 0xe9, 0xda, 0x49, 0x94, 0x6b, 0xa2, - 0xf7, 0x33, 0xb0, 0x75, 0x2b, 0x5f, 0xf3, 0x5a, 0xeb, 0x95, 0x2f, 0xd3, 0x17, 0xe6, 0xcc, 0xd4, - 0xf8, 0xb3, 0x8f, 0xcd, 0x30, 0x47, 0xe9, 0xd1, 0x91, 0x55, 0x55, 0x6b, 0x9a, 0xc9, 0xcc, 0x71, - 0x88, 0xd9, 0xdb, 0x07, 0xe7, 0xb5, 0xe3, 0x31, 0xa3, 0x80, 0x46, 0xa5, 0x80, 0x5b, 0x06, 0x66, - 0xde, 0xaf, 0x00, 0xaa, 0xa1, 0x8f, 0x09, 0x22, 0xbd, 0x0a, 0x06, 0xd1, 0x23, 0xec, 0xac, 0xc2, - 0x28, 0xc8, 0x64, 0xbc, 0x74, 0xeb, 0x6a, 0x4c, 0x54, 0xd2, 0xd9, 0x26, 0xb4, 0x68, 0x96, 0xd5, - 0xac, 0x92, 0x5c, 0x39, 0xc8, 0x22, 0x8a, 0xb7, 0x80, 0x35, 0xfd, 0xe0, 0x71, 0xf9, 0xd7, 0x73, - 0xa9, 0x5e, 0x5b, 0x46, 0xdd, 0x07, 0x28, 0x53, 0x72, 0x31, 0x95, 0xab, 0x61, 0xd0, 0x95, 0x2f, - 0x42, 0x19, 0x05, 0xc5, 0x6d, 0x0c, 0x84, 0x46, 0xd6, 0xaf, 0x5d, 0x4b, 0x8f, 0x2e, 0xf4, 0xeb, - 0xf6, 0xc7, 0xd0, 0x2b, 0x76, 0xa6, 0xd9, 0xc0, 0xc7, 0xe5, 0x63, 0xac, 0x75, 0xac, 0x5b, 0x12, - 0xcd, 0x72, 0x9c, 0x04, 0xf2, 0x69, 0x63, 0x60, 0x15, 0xef, 0xb1, 0xf7, 0x1f, 0xcd, 0x42, 0xda, - 0xb4, 0xca, 0x4b, 0x25, 0x9e, 0xb5, 0x5a, 0xe2, 0x2d, 0x97, 0x4b, 0x8d, 0xef, 0x55, 0x2e, 0xfd, - 0x1c, 0xdc, 0x80, 0x6a, 0x86, 0xf0, 0xba, 0x48, 0xbf, 0x1b, 0xab, 0xf5, 0x81, 0xa9, 0x2a, 0xc2, - 0x6b, 0xc9, 0x2b, 0x66, 0x3c, 0x4b, 0x9e, 0x5c, 0xc9, 0x38, 0xfc, 0x86, 0x66, 0x01, 0x78, 0xe7, - 0x0a, 0x51, 0x0d, 0x56, 0x74, 0x1d, 0x61, 0x06, 0x2b, 0xc5, 0x8c, 0xc8, 0xae, 0x66, 0x44, 0xa8, - 0xcf, 0x79, 0xaa, 0x64, 0x96, 0x17, 0xc5, 0xa6, 0x86, 0xca, 0xba, 0xcc, 0x35, 0xbc, 0x58, 0x97, - 0xbd, 0x0b, 0xbd, 0x38, 0x89, 0x27, 0xf1, 0x3c, 0x8a, 0xb0, 0x1c, 0x36, 0xe3, 0xc0, 0x6e, 0x9c, - 0xc4, 0xc7, 0x06, 0xc5, 0x1e, 0xc1, 0x1b, 0x75, 0x16, 0xed, 0xcf, 0x5d, 0x3d, 0x4d, 0xa8, 0xf1, - 0x91, 0xd7, 0x6f, 0x41, 0x3f, 0x39, 0xff, 0x95, 0xf4, 0x73, 0xd2, 0xd8, 0x84, 0x1c, 0xb9, 0xa7, - 0x1f, 0x61, 0x8d, 0x47, 0x15, 0x1d, 0x8b, 0x99, 0xf4, 0xbe, 0x00, 0xb7, 0x54, 0x02, 0xe6, 0xdb, - 0xe3, 0x93, 0xe3, 0xa1, 0xce, 0x88, 0x07, 0xc7, 0xfb, 0xc3, 0x3f, 0xef, 0x5b, 0x98, 0xb1, 0xf9, - 0xf0, 0xc5, 0x90, 0x8f, 0x86, 0xfd, 0x06, 0x66, 0xd3, 0xfd, 0xe1, 0xe1, 0x70, 0x3c, 0xec, 0x37, - 0xbf, 0x6c, 0x39, 0x9d, 0xbe, 0xc3, 0x1d, 0xb9, 0x48, 0xa3, 0xd0, 0x0f, 0x73, 0x6f, 0x04, 0x50, - 0x15, 0x41, 0x98, 0x57, 0xaa, 0xbd, 0xb5, 0x45, 0x9d, 0xdc, 0xec, 0x8a, 0x95, 0x9b, 0x71, 0xb5, - 0xc6, 0xab, 0x2a, 0x37, 0x4d, 0xf7, 0xce, 0xc0, 0x39, 0x12, 0xe9, 0x4b, 0x9d, 0x4e, 0xaf, 0xec, - 0x67, 0xe7, 0x66, 0xba, 0x63, 0x9e, 0xe2, 0x0f, 0xa0, 0x63, 0x52, 0x9b, 0x89, 0x9a, 0xa5, 0xb4, - 0x57, 0xd0, 0xbc, 0xbf, 0xb5, 0xe0, 0xad, 0xa3, 0xe4, 0x5a, 0x96, 0xd5, 0xc8, 0xa9, 0xb8, 0x89, - 0x12, 0x11, 0x7c, 0x87, 0x23, 0xfe, 0x14, 0x40, 0x25, 0xf3, 0xcc, 0x97, 0x93, 0x69, 0x39, 0x54, - 0x72, 0x35, 0xe6, 0xb9, 0x99, 0x5f, 0x4b, 0x95, 0x13, 0xb1, 0xa9, 0x83, 0x0f, 0x61, 0x24, 0xfd, - 0x08, 0xec, 0x7c, 0x11, 0x57, 0x33, 0xac, 0x76, 0x8e, 0x6d, 0xa6, 0xb7, 0x07, 0xee, 0x78, 0x41, - 0xcd, 0xd7, 0x5c, 0x2d, 0xbd, 0xaf, 0xd6, 0x6b, 0xde, 0xd7, 0xc6, 0x4a, 0x96, 0xfe, 0x6f, 0x0b, - 0xba, 0xb5, 0x32, 0x89, 0xbd, 0x0b, 0xad, 0x7c, 0x11, 0x2f, 0x0f, 0x7f, 0x8b, 0x4d, 0x38, 0x91, - 0xd0, 0xdf, 0xb0, 0x33, 0x13, 0x4a, 0x85, 0xd3, 0x58, 0x06, 0x66, 0x49, 0xec, 0xd6, 0x76, 0x0d, - 0x8a, 0x1d, 0xc2, 0x5d, 0x9d, 0x49, 0x8a, 0xc1, 0x4f, 0x51, 0x8f, 0xbf, 0xb7, 0x52, 0x96, 0xe9, - 0x06, 0x75, 0xaf, 0xe0, 0xd2, 0x2d, 0xf8, 0xfa, 0x74, 0x09, 0xb9, 0xb1, 0x0b, 0x6f, 0xde, 0xc2, - 0xf6, 0x83, 0x66, 0x0d, 0x0f, 0x60, 0x0d, 0x7b, 0xf3, 0x70, 0x26, 0x55, 0x2e, 0x66, 0x29, 0xd5, - 0x27, 0xe6, 0x25, 0x68, 0xf1, 0x46, 0xae, 0xbc, 0x0f, 0xa1, 0x77, 0x2a, 0x65, 0xc6, 0xa5, 0x4a, - 0x93, 0x58, 0xbf, 0xcd, 0x8a, 0x2e, 0x6d, 0x9e, 0x1d, 0x03, 0x79, 0x7f, 0x05, 0x2e, 0x56, 0xde, - 0x4f, 0x45, 0xee, 0x5f, 0xfe, 0x90, 0xca, 0xfc, 0x43, 0xe8, 0xa4, 0xda, 0x4d, 0x4c, 0x1d, 0xdd, - 0xa3, 0x1c, 0x67, 0x5c, 0x87, 0x17, 0x44, 0xef, 0x73, 0x68, 0x1e, 0xcf, 0x67, 0xf5, 0x5f, 0x6c, - 0x5a, 0xfa, 0x17, 0x9b, 0xa5, 0x36, 0xb3, 0xb1, 0xd2, 0x66, 0x7e, 0x0d, 0xdd, 0x42, 0xf7, 0x07, - 0x01, 0xfd, 0xec, 0x42, 0xc6, 0x3f, 0x08, 0x96, 0x7c, 0x41, 0x77, 0x7b, 0x32, 0x0e, 0x0e, 0x0a, - 0xa3, 0x69, 0x60, 0x79, 0x6d, 0x33, 0xcd, 0x28, 0xd7, 0x7e, 0x06, 0xbd, 0xa2, 0x3a, 0x3e, 0x92, - 0xb9, 0x20, 0x77, 0x8a, 0x42, 0x19, 0xd7, 0x5c, 0xcd, 0xd1, 0x88, 0xb1, 0x7a, 0xcd, 0xdc, 0xd4, - 0xdb, 0x06, 0xdb, 0xf8, 0x2a, 0x83, 0x96, 0x9f, 0x04, 0x3a, 0x44, 0xda, 0x9c, 0xbe, 0xf1, 0xc2, - 0x33, 0x35, 0x2d, 0x9e, 0xc7, 0x99, 0x9a, 0x7a, 0xbf, 0xb5, 0x60, 0xed, 0xa9, 0xf0, 0xaf, 0xe6, - 0x69, 0xf1, 0x3e, 0xd5, 0xfa, 0x18, 0x6b, 0xa9, 0x8f, 0x79, 0xcd, 0xb4, 0xf6, 0x6d, 0xe8, 0xcc, - 0xe3, 0x70, 0x51, 0x14, 0x28, 0x2e, 0xb7, 0x11, 0xd4, 0x53, 0xca, 0x28, 0xf1, 0xa9, 0x75, 0xa1, - 0xb0, 0x72, 0x79, 0x09, 0xd3, 0x00, 0x20, 0x8c, 0x7d, 0x69, 0x74, 0xa1, 0x81, 0xd5, 0xc1, 0xa7, - 0xfd, 0xd2, 0x3c, 0xf9, 0x2f, 0x61, 0x6d, 0xb8, 0x48, 0x69, 0xe4, 0xfd, 0x9d, 0x0f, 0x6a, 0xed, - 0x2e, 0x8d, 0xa5, 0xbb, 0xac, 0x1c, 0xb8, 0x59, 0x1c, 0x78, 0xe7, 0x5f, 0x2c, 0x68, 0xa1, 0x6b, - 0x61, 0x53, 0xf6, 0xa7, 0x52, 0x64, 0xf9, 0xb9, 0x14, 0x39, 0x5b, 0x72, 0xa3, 0x8d, 0x25, 0xc8, - 0xbb, 0xf3, 0xc4, 0x62, 0xdb, 0x7a, 0x9a, 0x5e, 0xfc, 0x48, 0xb0, 0x56, 0x38, 0x28, 0x39, 0xf0, - 0x2a, 0xff, 0x16, 0xf1, 0x7f, 0x99, 0x84, 0xf1, 0x9e, 0x1e, 0x31, 0xb3, 0x55, 0x87, 0x5e, 0x95, - 0x60, 0x9f, 0x80, 0x7d, 0xa0, 0x30, 0x72, 0x5e, 0x66, 0xa5, 0xc4, 0x5c, 0x0f, 0x2a, 0xef, 0xce, - 0xce, 0x6f, 0x9b, 0xd0, 0xfa, 0x5a, 0x66, 0x09, 0xfb, 0x19, 0x74, 0xcc, 0x00, 0x89, 0xd5, 0x06, - 0x45, 0x1b, 0xf4, 0x32, 0xaf, 0x4c, 0x96, 0x68, 0x97, 0xbe, 0xce, 0xed, 0x55, 0xdf, 0xc8, 0xaa, - 0xf9, 0xd6, 0x4b, 0x87, 0xfa, 0x02, 0xfa, 0xa3, 0x3c, 0x93, 0x62, 0x56, 0x63, 0x5f, 0x56, 0xd4, - 0x6d, 0x4d, 0x28, 0xe9, 0xeb, 0x63, 0xb0, 0x75, 0x7a, 0x5a, 0x11, 0x58, 0xed, 0x27, 0x89, 0xf9, - 0x21, 0x74, 0x47, 0x97, 0xc9, 0x3c, 0x0a, 0x46, 0x32, 0xbb, 0x96, 0xac, 0x36, 0xc4, 0xdd, 0xa8, - 0x7d, 0x7b, 0x77, 0xd8, 0x16, 0x80, 0x8e, 0xcf, 0xb3, 0x30, 0x50, 0xac, 0x83, 0xb4, 0xe3, 0xf9, - 0x4c, 0x2f, 0x5a, 0x0b, 0x5c, 0xcd, 0x59, 0xcb, 0x52, 0xaf, 0xe3, 0xfc, 0x0c, 0xd6, 0xf6, 0x28, - 0x8b, 0x9f, 0x64, 0xbb, 0xe7, 0x49, 0x96, 0xb3, 0xd5, 0x41, 0xee, 0xc6, 0x2a, 0xc2, 0xbb, 0xc3, - 0x9e, 0x80, 0x33, 0xce, 0x6e, 0x34, 0xff, 0x1b, 0x26, 0xb9, 0x57, 0xfb, 0xdd, 0x72, 0xcb, 0x9d, - 0xdf, 0x34, 0xc1, 0xfe, 0x65, 0x92, 0x5d, 0xc9, 0x8c, 0x3d, 0x02, 0x9b, 0x1a, 0x7f, 0xe3, 0x46, - 0xe5, 0x10, 0xe0, 0xb6, 0x8d, 0xde, 0x07, 0x97, 0x94, 0x32, 0x16, 0xea, 0x4a, 0x9b, 0x8a, 0x7e, - 0xed, 0xd5, 0x7a, 0xd1, 0x65, 0x1f, 0xd9, 0x75, 0x5d, 0x1b, 0xaa, 0x1c, 0x76, 0x2c, 0x75, 0xe3, - 0x1b, 0x1d, 0xdd, 0x5a, 0x8f, 0xd0, 0x35, 0x9f, 0x58, 0xec, 0x23, 0x68, 0x8d, 0xf4, 0x4d, 0x91, - 0xa9, 0xfa, 0xed, 0x6b, 0x63, 0xbd, 0x40, 0x94, 0x2b, 0x3f, 0x06, 0x5b, 0xd7, 0x04, 0xfa, 0x9a, - 0x4b, 0x85, 0xee, 0x46, 0xbf, 0x8e, 0x32, 0x02, 0x1f, 0x82, 0xad, 0xb3, 0x8d, 0x16, 0x58, 0xca, - 0x3c, 0x1b, 0x85, 0x1d, 0xbc, 0x3b, 0xec, 0x23, 0xb0, 0x75, 0x90, 0x6b, 0xbe, 0xa5, 0x80, 0xd7, - 0xb7, 0xd3, 0x59, 0x4e, 0x7b, 0x2d, 0x97, 0xbe, 0x0c, 0x6b, 0xa5, 0x02, 0x2b, 0x6e, 0x74, 0x4b, - 0xe8, 0x7d, 0x01, 0x6b, 0x4b, 0x65, 0x05, 0x1b, 0x90, 0x96, 0x6f, 0xa9, 0x34, 0x56, 0x85, 0x9f, - 0xf6, 0xff, 0xed, 0xdb, 0xfb, 0xd6, 0xbf, 0x7f, 0x7b, 0xdf, 0xfa, 0xcf, 0x6f, 0xef, 0x5b, 0xbf, - 0xfe, 0xaf, 0xfb, 0x77, 0xce, 0x6d, 0xfa, 0x17, 0x81, 0xcf, 0xfe, 0x2f, 0x00, 0x00, 0xff, 0xff, - 0x2a, 0xd0, 0x4e, 0x82, 0x66, 0x20, 0x00, 0x00, -} diff --git a/worker/draft.go b/worker/draft.go index 7a601dd6a87..69d140eed18 100644 --- a/worker/draft.go +++ b/worker/draft.go @@ -660,7 +660,6 @@ func (n *node) Run() { close(done) }() - traceOpt := otrace.WithSampler(otrace.ProbabilitySampler(0.01)) var snapshotLoops uint64 for { select { @@ -700,13 +699,9 @@ func (n *node) Run() { n.Raft().Tick() case rd := <-n.Raft().Ready(): - var start time.Time - var span *otrace.Span - if len(rd.Entries) > 0 || !raft.IsEmptySnap(rd.Snapshot) { - // Optionally, trace this run. - _, span = otrace.StartSpan(n.ctx, "Alpha.RunLoop", traceOpt) - start = time.Now() - } + start := time.Now() + _, span := otrace.StartSpan(n.ctx, "Alpha.RunLoop", + otrace.WithSampler(otrace.ProbabilitySampler(0.001))) if rd.SoftState != nil { groups().triggerMembershipSync() @@ -771,6 +766,7 @@ func (n *node) Run() { // Store the hardstate and entries. Note that these are not CommittedEntries. n.SaveToStorage(rd.HardState, rd.Entries, rd.Snapshot) + diskDur := time.Since(start) if span != nil { span.Annotatef(nil, "Saved %d entries. Snapshot, HardState empty? (%v, %v)", len(rd.Entries), @@ -842,12 +838,17 @@ func (n *node) Run() { if span != nil { span.Annotate(nil, "Advanced Raft. Done.") span.End() - } - if !start.IsZero() { ostats.RecordWithTags(context.Background(), []tag.Mutator{tag.Upsert(x.KeyMethod, "alpha.RunLoop")}, x.LatencyMs.M(x.SinceMs(start))) } + if time.Since(start) > 100*time.Millisecond { + glog.Warningf( + "Raft.Ready took too long to process: %v. Most likely due to slow disk: %v."+ + " Num entries: %d. MustSync: %v", + time.Since(start).Round(time.Millisecond), diskDur.Round(time.Millisecond), + len(rd.Entries), rd.MustSync) + } } } }