blob: ae746fa73eb35f19633fee8643882bbbfcfe474b [file] [log] [blame]
divyadesai81bb7ba2020-03-11 11:45:23 +00001// Copyright 2016 The etcd Authors
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package raft
16
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +000017import pb "github.com/coreos/etcd/raft/raftpb"
divyadesai81bb7ba2020-03-11 11:45:23 +000018
19// ReadState provides state for read only query.
20// It's caller's responsibility to call ReadIndex first before getting
21// this state from ready, it's also caller's duty to differentiate if this
22// state is what it requests through RequestCtx, eg. given a unique id as
23// RequestCtx
24type ReadState struct {
25 Index uint64
26 RequestCtx []byte
27}
28
29type readIndexStatus struct {
30 req pb.Message
31 index uint64
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +000032 acks map[uint64]struct{}
divyadesai81bb7ba2020-03-11 11:45:23 +000033}
34
35type readOnly struct {
36 option ReadOnlyOption
37 pendingReadIndex map[string]*readIndexStatus
38 readIndexQueue []string
39}
40
41func newReadOnly(option ReadOnlyOption) *readOnly {
42 return &readOnly{
43 option: option,
44 pendingReadIndex: make(map[string]*readIndexStatus),
45 }
46}
47
48// addRequest adds a read only reuqest into readonly struct.
49// `index` is the commit index of the raft state machine when it received
50// the read only request.
51// `m` is the original read only request message from the local or remote node.
52func (ro *readOnly) addRequest(index uint64, m pb.Message) {
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +000053 ctx := string(m.Entries[0].Data)
54 if _, ok := ro.pendingReadIndex[ctx]; ok {
divyadesai81bb7ba2020-03-11 11:45:23 +000055 return
56 }
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +000057 ro.pendingReadIndex[ctx] = &readIndexStatus{index: index, req: m, acks: make(map[uint64]struct{})}
58 ro.readIndexQueue = append(ro.readIndexQueue, ctx)
divyadesai81bb7ba2020-03-11 11:45:23 +000059}
60
61// recvAck notifies the readonly struct that the raft state machine received
62// an acknowledgment of the heartbeat that attached with the read only request
63// context.
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +000064func (ro *readOnly) recvAck(m pb.Message) int {
65 rs, ok := ro.pendingReadIndex[string(m.Context)]
divyadesai81bb7ba2020-03-11 11:45:23 +000066 if !ok {
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +000067 return 0
divyadesai81bb7ba2020-03-11 11:45:23 +000068 }
69
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +000070 rs.acks[m.From] = struct{}{}
71 // add one to include an ack from local node
72 return len(rs.acks) + 1
divyadesai81bb7ba2020-03-11 11:45:23 +000073}
74
75// advance advances the read only request queue kept by the readonly struct.
76// It dequeues the requests until it finds the read only request that has
77// the same context as the given `m`.
78func (ro *readOnly) advance(m pb.Message) []*readIndexStatus {
79 var (
80 i int
81 found bool
82 )
83
84 ctx := string(m.Context)
85 rss := []*readIndexStatus{}
86
87 for _, okctx := range ro.readIndexQueue {
88 i++
89 rs, ok := ro.pendingReadIndex[okctx]
90 if !ok {
91 panic("cannot find corresponding read state from pending map")
92 }
93 rss = append(rss, rs)
94 if okctx == ctx {
95 found = true
96 break
97 }
98 }
99
100 if found {
101 ro.readIndexQueue = ro.readIndexQueue[i:]
102 for _, rs := range rss {
103 delete(ro.pendingReadIndex, string(rs.req.Entries[0].Data))
104 }
105 return rss
106 }
107
108 return nil
109}
110
111// lastPendingRequestCtx returns the context of the last pending read only
112// request in readonly struct.
113func (ro *readOnly) lastPendingRequestCtx() string {
114 if len(ro.readIndexQueue) == 0 {
115 return ""
116 }
117 return ro.readIndexQueue[len(ro.readIndexQueue)-1]
118}